/* layout.css — Page layout and grid systems */

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.container--narrow { max-width: 800px; }

/* ── GRID UTILITIES ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
/* ── SECTION HEADING BLOCK ────────────────────────────────── */
.section-head { margin-bottom: var(--sp-12); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
/* Keep the left line, add matching right line → symmetric — TEXT — look */
.section-head--center .eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head p   { font-size: var(--text-lg); color: var(--clr-text-muted); max-width: 640px; line-height: var(--lh-loose); margin: 0; }
.section-head--center p { margin: 0 auto; }

/* ── HERO LAYOUT ──────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
  min-height: calc(100svh - 2 * var(--sp-20));
}
.hero-grid__content { display: flex; flex-direction: column; }
.hero-grid__visual   { display: flex; align-items: center; justify-content: center; }

.hero__headline { margin-bottom: var(--sp-5); }
.hero__sub {
  font-size: var(--text-xl);
  color: var(--clr-text-white-80);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
  max-width: 520px;
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-10); }
.hero__stats   { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); max-width: 520px; }

/* ── LOCK VISUAL ──────────────────────────────────────────── */
.lock-visual {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.lock-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--clr-gold-line);
  animation: ring-pulse 3s ease-in-out infinite;
}
.lock-visual__ring:nth-child(1) { width: 340px; height: 340px; animation-delay: 0s; }
.lock-visual__ring:nth-child(2) { width: 260px; height: 260px; animation-delay: 0.5s; }
.lock-visual__ring:nth-child(3) { width: 180px; height: 180px; border-color: var(--clr-gold-line); animation-delay: 1s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.02); }
}
.lock-visual__icon {
  position: relative; z-index: 1;
  width: 120px; height: 120px;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  animation: hero-icon-glow 3s ease-in-out infinite;
}

/* ── CONTACT SPLIT ────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.contact-split__dark {
  background: var(--clr-midnight);
  background-image: radial-gradient(ellipse at 30% 60%, var(--clr-gold-glow) 0%, transparent 60%);
  padding: var(--sp-16);
  color: white;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-split__dark h1, .contact-split__dark h2, .contact-split__dark h3 { color: white; }
.contact-split__dark p { color: var(--clr-text-white-80); }
.contact-split__light {
  background: var(--clr-white);
  padding: var(--sp-16);
  display: flex; flex-direction: column; justify-content: center;
}

/* Contact info items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-gold-line);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  flex-shrink: 0;
}
.contact-info-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--ls-wider); color: var(--clr-text-white-55); font-weight: var(--fw-bold); }
.contact-info-value { color: white; font-weight: var(--fw-semibold); font-size: var(--text-md); }
.contact-info-value a { color: var(--clr-gold-bright); text-decoration: none; }
.contact-info-value a:hover { color: white; }

/* ── ABOUT HERO SPLIT ─────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-split__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.about-split__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-split__badge {
  position: absolute;
  bottom: var(--sp-6); left: var(--sp-6);
  background: var(--clr-gold);
  color: var(--clr-midnight);
  font-weight: var(--fw-black);
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-lg);
}

/* ── CONTENT + SIDEBAR ────────────────────────────────────── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-12);
  align-items: start;
}
.sidebar-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}
.sidebar-card h3 { margin-bottom: var(--sp-5); }
.sidebar-emergency {
  background: var(--clr-red);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
  text-align: center;
}
.sidebar-emergency p { color: rgba(255,255,255,0.85); font-size: var(--text-sm); margin-bottom: var(--sp-3); }
.sidebar-emergency .phone-link {
  display: block;
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: white;
  text-decoration: none;
  letter-spacing: var(--ls-wide);
}
.sidebar-emergency .phone-link:hover { color: rgba(255,255,255,0.85); }
