/* ──────────────────────────────────────────────────────────────────
   YOSHIZUMI INSURANCE AGENCY · Design System
   Editorial luxury · Dark-first · Cormorant + Montserrat
   v0.1 — Built on brand package (Lo, May 2026)
   ────────────────────────────────────────────────────────────────── */

:root {
  /* — Brand color tokens (locked from Lo's package) — */
  --midnight:       #1E2A38;
  --midnight-deep:  #141D28;
  --midnight-fog:   #243345;
  --gold:           #C9A84C;
  --gold-light:     #E2C47A;
  --gold-faint:     rgba(201, 168, 76, 0.10);
  --gold-line:      rgba(201, 168, 76, 0.18);
  --gold-soft:      rgba(201, 168, 76, 0.06);
  --blue:           #2C4A7C;
  --mist:           #8A9BAE;
  --mist-fog:       #6B7B8E;
  --ivory:          #F5F0E8;
  --ivory-deep:     #ECE5D6;
  --white:          #FFFFFF;

  /* — Semantic — */
  --bg:             var(--midnight-deep);
  --bg-card:        var(--midnight);
  --bg-card-warm:   #1A2532;
  --text:           var(--ivory);
  --text-muted:     var(--mist);
  --text-faint:     var(--mist-fog);
  --accent:         var(--gold);

  /* — Type families — */
  --font-display:   'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:      'Montserrat', system-ui, -apple-system, sans-serif;

  /* — Fluid type scale (editorial, NOT major-third uniform) — */
  --step-eyebrow:   clamp(11px, 0.65rem + 0.1vw, 12px);
  --step-small:     clamp(13px, 0.78rem + 0.1vw, 14px);
  --step-body:      clamp(15px, 0.9rem + 0.15vw, 17px);
  --step-lead:      clamp(18px, 1.05rem + 0.3vw, 21px);
  --step-h4:        clamp(22px, 1.2rem + 0.5vw, 28px);
  --step-h3:        clamp(28px, 1.5rem + 0.8vw, 38px);
  --step-h2:        clamp(38px, 2rem + 1.4vw, 56px);
  --step-h1:        clamp(54px, 2.5rem + 4vw, 112px);
  --step-display:   clamp(72px, 3rem + 6vw, 168px);

  /* — Spacing rhythm (varies, not uniform 80) — */
  --pad-section-y:  clamp(80px, 8vw, 140px);
  --pad-section-y-tight: clamp(56px, 5vw, 96px);
  --pad-x:          clamp(24px, 5vw, 96px);
  --gap-1: 4px; --gap-2: 8px; --gap-3: 12px;
  --gap-4: 16px; --gap-5: 24px; --gap-6: 32px;
  --gap-7: 48px; --gap-8: 64px; --gap-9: 96px;

  /* — Motion — */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap:      cubic-bezier(0.2, 0, 0, 1);
  --dur-fast:       180ms;
  --dur-base:       320ms;
  --dur-slow:       620ms;

  /* — Shadows — */
  --shadow-card:    0 1px 0 rgba(255,255,255,0.04) inset,
                    0 8px 28px rgba(0,0,0,0.32),
                    0 1px 3px rgba(0,0,0,0.18);
  --shadow-lifted:  0 1px 0 rgba(255,255,255,0.05) inset,
                    0 24px 60px rgba(0,0,0,0.40),
                    0 8px 16px rgba(0,0,0,0.20);

  /* — Hairline rule — */
  --rule-gold:      linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  --rule-mist:      linear-gradient(to right, transparent, rgba(138,155,174,0.25) 50%, transparent);
}

/* ── Reset (deliberate, not normalize) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The subtle 60px dot pattern carried from Lo's brand package */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
ul, ol { list-style: none; }

/* Skip-to-content for accessibility */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--gold); color: var(--midnight-deep);
  padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; }

/* ─────────────────────────── TYPOGRAPHY ─────────────────────────── */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.display, .display * {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.96;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--step-h1);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ivory);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: var(--step-h4);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  font-family: var(--font-display);
  font-size: var(--step-lead);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
  max-width: 56ch;
}

.body-large {
  font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 64ch;
}

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }

/* ─────────────────────────── LAYOUT ─────────────────────────── */

.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container-narrow {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--pad-section-y); position: relative; }
.section--tight { padding-block: var(--pad-section-y-tight); }
.section--dark { background: var(--midnight-deep); }
.section--midnight { background: var(--midnight); }
.section--warm { background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-deep) 100%); }

.rule-gold {
  height: 1px;
  background: var(--rule-gold);
  border: 0;
  margin: 0;
}
.rule-gold--short {
  height: 1px;
  width: 64px;
  background: var(--gold);
  border: 0;
}

/* Editorial section number — huge faded gold "01" "02" */
.section-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 300;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.07;
  letter-spacing: -0.04em;
  position: absolute;
  top: clamp(40px, 6vw, 80px);
  right: var(--pad-x);
  pointer-events: none;
  user-select: none;
}

/* ─────────────────────────── HEADER + NAV ─────────────────────────── */

.topbar {
  background: var(--midnight-deep);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--mist);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px var(--pad-x);
  gap: 24px; flex-wrap: wrap;
}
.topbar__phone { color: var(--ivory); font-weight: 500; letter-spacing: 0.04em; }
.topbar__phone strong { color: var(--gold); margin-right: 6px; letter-spacing: 0.18em; font-size: 10px; font-weight: 700; }
.topbar__as-seen {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.topbar__as-seen::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.20);
}

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 29, 40, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.brand__mark { width: 52px; height: 52px; flex-shrink: 0; }
.brand-lockup {
  display: block;
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .brand-lockup { height: 44px; }
}
.brand__word {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  line-height: 1.1; color: var(--ivory);
}
.brand__word span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.nav__link {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ivory);
  position: relative;
  padding: 8px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--midnight-deep);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav__toggle { display: none; }
.nav__toggle-icon--close { display: none; }

/* Mobile: nav becomes a slide-in drawer from the right; toggle button appears */
@media (max-width: 900px) {
  .nav {
    display: flex;          /* defensive — don't rely on desktop rule cascading */
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 380px);
    height: 100vh;
    height: 100svh;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-deep) 100%);
    border-left: 1px solid var(--gold-line);
    box-shadow: -20px 0 60px rgba(0,0,0,0.45);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: clamp(88px, 16vw, 120px) clamp(24px, 6vw, 36px) 32px;
    transform: translateX(100%);
    transition: transform 360ms var(--ease-out);
    z-index: 100;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav--open { transform: translateX(0); }
  .nav__link {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--gold-faint);
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--gold-light); }
  .nav__cta {
    margin-top: 24px;
    justify-content: center;
    width: 100%;
    padding: 16px 22px;
  }

  /* Toggle button: visible on mobile, fixed to header */
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    color: var(--ivory);
    background: transparent;
    border: 1px solid var(--gold-faint);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 101;
    transition: border-color var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out);
  }
  .nav__toggle:hover { border-color: var(--gold-line); color: var(--gold-light); }
  .nav__toggle:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-icon--open { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-icon--close { display: inline-flex; }

  /* Backdrop behind the drawer */
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(20,29,40,0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms var(--ease-out);
    z-index: 99;
  }
  .nav-backdrop--show { opacity: 1; pointer-events: auto; }
}

/* Larger desktops: ensure the backdrop never bleeds in */
@media (min-width: 901px) {
  .nav-backdrop { display: none; }
}

/* Reduced-motion: snap the drawer instead of sliding */
@media (prefers-reduced-motion: reduce) {
  .nav, .nav-backdrop { transition: none !important; }
}

/* ─────────────────────────── CINEMATIC HERO ─────────────────────────── */

.hero-cine {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  padding: clamp(120px, 14vh, 200px) var(--pad-x) clamp(48px, 6vw, 80px);
}

/* Layer 0: video / image background, ken-burns slow zoom */
.hero-cine__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--midnight-deep);
}
.hero-cine__bg video,
.hero-cine__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ken-burns 28s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-cine__bg video { z-index: 1; }
.hero-cine__bg img  { z-index: 0; }
@keyframes ken-burns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -2%); }
}

/* Layer 1: gradient overlay for legibility */
.hero-cine__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,29,40,0.45) 0%, rgba(20,29,40,0.15) 35%, rgba(20,29,40,0.85) 80%, var(--midnight-deep) 100%),
    linear-gradient(90deg, rgba(20,29,40,0.78) 0%, rgba(20,29,40,0.40) 45%, rgba(20,29,40,0.15) 100%);
  pointer-events: none;
}

/* Layer 2: subtle film grain */
.hero-cine__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.66  0 0 0 0 0.30  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Layer 3: cursor-following gold glow */
.hero-cine__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle 480px at var(--mx, 30%) var(--my, 40%), rgba(201,168,76,0.18) 0%, transparent 60%);
  transition: opacity 600ms ease;
}

/* Layer 4: faded diamond emblem watermark */
.hero-cine__emblem {
  position: absolute;
  right: clamp(-80px, -4vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 50vw, 720px);
  height: auto;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

/* Hero content — the editorial moment */
.hero-cine__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.hero-cine__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vw, 32px);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-cine__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-cine__headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.030em;
  color: var(--white);
  max-width: 14ch;
  text-shadow: 0 2px 60px rgba(0,0,0,0.55);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.hero-cine__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-cine__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 1.1rem + 0.6vw, 26px);
  line-height: 1.45;
  color: var(--ivory);
  max-width: 48ch;
  margin-bottom: clamp(36px, 4vw, 56px);
  text-shadow: 0 1px 20px rgba(0,0,0,0.6);
}

.hero-cine__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.hero-cine__proof {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,232,0.18);
  flex-wrap: wrap;
}
.hero-cine__proof-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-cine__proof-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.015em;
}
.hero-cine__proof-num--stars { color: var(--gold); letter-spacing: 4px; font-family: var(--font-body); }
.hero-cine__proof-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--mist);
}
.hero-cine__proof-sep {
  width: 1px;
  height: 38px;
  background: rgba(245,240,232,0.18);
}

/* Scroll indicator */
.hero-cine__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: scroll-bob 2.4s ease-in-out infinite;
}
.hero-cine__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── AGENT STRIP — replaces the in-hero card ─── */
.agent-strip {
  background: var(--midnight);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: clamp(40px, 5vw, 64px) var(--pad-x);
  position: relative;
}
.agent-strip::before {
  content: '';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px; background: var(--gold);
}
.agent-strip__inner {
  max-width: 1320px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .agent-strip__inner { grid-template-columns: 1fr; text-align: left; }
}
.agent-strip__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 3px;
  background: var(--midnight-deep);
  overflow: hidden;
  flex-shrink: 0;
}
.agent-strip__avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
}
.agent-strip__copy {
  display: flex; flex-direction: column; gap: 6px;
}
.agent-strip__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.5vw, 28px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.agent-strip__role {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.agent-strip__pitch {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1vw, 17px);
  color: var(--mist);
  line-height: 1.5;
  max-width: 56ch;
  margin-top: 4px;
}
.agent-strip__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.agent-strip__cta:hover {
  background: var(--gold); color: var(--midnight-deep);
}

/* Legacy .hero keep as fallback */
.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 920px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(72px, 9vw, 140px) var(--pad-x) clamp(60px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 35%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 92% 90%, rgba(44, 74, 124, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight-deep) 100%);
}
.hero::after {
  content: '';
  position: absolute; left: var(--pad-x); right: var(--pad-x); bottom: 0;
  height: 1px;
  background: var(--rule-gold);
}

.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero__eyebrow { margin-bottom: clamp(20px, 3vw, 32px); }

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--step-h1);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--ivory);
  max-width: 14ch;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.05rem + 0.5vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
  max-width: 46ch;
  margin-bottom: clamp(32px, 4vw, 48px);
  opacity: 0.86;
}

.hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--midnight-deep);
  box-shadow: 0 8px 24px rgba(201,168,76,0.20);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.30);
}
.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.30);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn__arrow { font-family: var(--font-body); transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__proof {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,232,0.10);
  max-width: 540px;
}
.hero__proof-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.hero__proof-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero__proof-text strong {
  display: block;
  color: var(--ivory);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.hero__side {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-end;
}
.hero__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--bg-card-warm);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 36px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-lifted);
}
.hero__card::before {
  content: '';
  position: absolute; top: -1px; left: 24px; right: 24px;
  height: 2px; background: var(--gold);
}
.hero__card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__card-headshot-wrap {
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 2px solid var(--gold);
  padding: 3px;
}
.hero__card-headshot {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--midnight);
}
.hero__card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero__card-role {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__card-meta {
  display: grid; gap: 14px;
  font-size: 13px; line-height: 1.4;
  color: var(--text-muted);
}
.hero__card-meta-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}
.hero__card-meta-row::before {
  content: '';
  margin-top: 6px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 0;
  transform: rotate(45deg);
}
.hero__card-meta strong { color: var(--ivory); font-weight: 600; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .hero__side { align-items: flex-start; }
  .hero__card { max-width: 100%; }
}

/* ─────────────────────────── PRESS STRIP ─────────────────────────── */

.press-strip {
  padding: 32px var(--pad-x);
  background: var(--midnight-deep);
  border-top: 1px solid rgba(201,168,76,0.10);
  border-bottom: 1px solid rgba(201,168,76,0.10);
}
.press-strip__inner {
  max-width: 1320px;
  margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
}
.press-strip__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--mist);
}
.press-strip__outlet {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.4vw, 26px);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.press-strip__div {
  width: 1px; height: 18px;
  background: rgba(201,168,76,0.30);
}

/* ─────────────────────────── NEWS DOSSIER (world-class) ─────────────────────────── */

.dossier {
  background: var(--midnight);
  position: relative;
}
.dossier::before {
  /* Subtle vertical column rule on the right — magazine layout cue */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: clamp(12px, 4vw, 56px);
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.12) 22%, rgba(201,168,76,0.12) 78%, transparent 100%);
  pointer-events: none;
}
.dossier__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.dossier__head-right {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}
.dossier__head-right em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.dossier__head-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.dossier__head-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.dossier__title {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-top: 24px;
  max-width: 14ch;
}
.dossier__title em { font-style: italic; color: var(--gold-light); font-weight: 400; }

/* ─── Stat strip (on the /news/ page) ─── */
.dossier__stat-strip {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 32px 0;
  margin-bottom: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-wrap: wrap;
}
.dossier__stat { text-align: center; }
.dossier__stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.dossier__stat-label {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
}
.dossier__stat-sep {
  width: 1px; height: 36px;
  background: var(--gold-line);
}

/* ─── Feature row (1-up hero card) + series head ─── */
.dossier__feature-row {
  margin-bottom: clamp(56px, 7vw, 96px);
}
.dossier__series-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-line);
  flex-wrap: wrap;
}
.dossier__series-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -0.01em;
  max-width: 32ch;
  margin: 0;
}
.dossier__series-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }

/* ─── Supporting grid ─── */
.dossier__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
}
@media (max-width: 1024px) {
  .dossier__grid { grid-template-columns: 1fr; }
  .dossier__head { grid-template-columns: 1fr; }
  .dossier__series-head { flex-direction: column; align-items: flex-start; }
}

/* ─── Card base ─── */
.news-card {
  background: var(--midnight-deep);
  border: 1px solid var(--gold-faint);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.news-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 2px 0 var(--gold-faint) inset;
}

/* ─── Feature variant: side-by-side on desktop ─── */
.news-card--feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
.news-card--feature .news-card__media { aspect-ratio: 4 / 3; }
.news-card--feature .news-card__body {
  padding: clamp(32px, 3.5vw, 56px);
  gap: 20px;
  justify-content: center;
}
.news-card--feature .news-card__title {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1;
}
.news-card--feature .news-card__quote {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .news-card--feature { grid-template-columns: 1fr; }
  .news-card--feature .news-card__media { aspect-ratio: 16 / 9; }
}

/* ─── Media (thumbnail + overlays) ─── */
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--midnight-deep);
  display: block;
}
.news-card__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 1200ms var(--ease-out), filter 600ms var(--ease-out);
  filter: saturate(0.92) contrast(1.02);
}
.news-card:hover .news-card__thumb {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.04);
}
.news-card__media-grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,29,40,0.55) 0%, transparent 30%, transparent 55%, rgba(20,29,40,0.85) 100%),
    linear-gradient(90deg, rgba(20,29,40,0.25) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
}
.news-card__media::after {
  /* Tiny gold rule along the bottom of the media — premium magazine cue */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  z-index: 2;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.news-card:hover .news-card__media::after { transform: scaleX(1); }

.news-card__media-top {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 3;
}
.news-card__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(20,29,40,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.30);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.news-card__kicker-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.22);
}
.news-card__date-pill {
  padding: 6px 10px;
  background: rgba(20,29,40,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,240,232,0.18);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory);
}
.news-card__media-bottom {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 3;
}
.news-card__outlet-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.01em;
  color: var(--ivory);
  opacity: 0.82;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* ─── Play button (center, hover-amplified) ─── */
.news-card__play {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--gold);
  color: var(--midnight-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45),
              0 0 0 0 rgba(201,168,76,0);
  transition: transform 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out),
              background-color 320ms var(--ease-out);
  z-index: 4;
  opacity: 0.94;
}
.news-card:hover .news-card__play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55),
              0 0 0 12px var(--gold-faint);
  background-color: var(--gold-light);
  opacity: 1;
}
.news-card__play svg { width: 22px; height: 22px; margin-left: 3px; }
.news-card--feature .news-card__play { width: 76px; height: 76px; }
.news-card--feature .news-card__play svg { width: 26px; height: 26px; }

/* ─── Body ─── */
.news-card__body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  flex-grow: 1;
}
.news-card__meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.news-card__meta-sep {
  width: 1px; height: 10px;
  background: rgba(201,168,76,0.32);
}
.news-card__meta-reporter {
  color: var(--mist);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.news-card__meta-date {
  color: var(--mist);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 0;
}

.news-card__quote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 20px;
  margin: 4px 0 0;
  border-left: 1px solid var(--gold);
}
.news-card__quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05em;
  color: var(--gold);
  opacity: 0.9;
  margin-right: 1px;
}
.news-card__quote-mark--end { margin-left: 1px; margin-right: 0; }
.news-card__quote-attr {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}

/* ─── Actions row ─── */
.news-card__actions {
  display: flex; flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.news-card__action {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  transition: color var(--dur-base) var(--ease-out);
}
.news-card__action--primary {
  color: var(--gold);
}
.news-card__action--primary:hover { color: var(--gold-light); }
.news-card__action--secondary {
  color: var(--mist);
}
.news-card__action--secondary:hover { color: var(--ivory); }

/* Focus rings for keyboard nav */
.news-card__media:focus-visible,
.news-card__action:focus-visible,
.dossier__head-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card__thumb,
  .news-card__play,
  .news-card__media::after { transition: none !important; }
  .news-card:hover { transform: none; }
  .news-card:hover .news-card__thumb { transform: none; }
}

/* ─────────────────────────── TRUST BAR ─────────────────────────── */

.trustbar {
  background: var(--ivory);
  color: var(--midnight-deep);
  padding: clamp(48px, 5vw, 72px) var(--pad-x);
  position: relative;
}
.trustbar::before, .trustbar::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(30,42,56,0.18) 50%, transparent);
}
.trustbar::before { top: 0; }
.trustbar::after { bottom: 0; }
.trustbar__inner {
  max-width: 1320px;
  margin-inline: auto;
}
.trustbar__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--midnight);
  text-align: center;
  margin-bottom: 28px;
}
.trustbar__label::before, .trustbar__label::after {
  content: '— ';
  color: var(--gold);
}
.trustbar__label::after { content: ' —'; }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(30,42,56,0.10);
}
@media (max-width: 900px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trustbar__grid { grid-template-columns: 1fr; } }

.trustbar__cell {
  padding: 22px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.35;
  color: var(--midnight);
  border-bottom: 1px solid rgba(30,42,56,0.10);
  border-right: 1px solid rgba(30,42,56,0.10);
  display: flex; align-items: center; gap: 14px;
}
.trustbar__cell:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) {
  .trustbar__cell { border-right: 0; }
  .trustbar__cell:nth-child(2n-1) { border-right: 1px solid rgba(30,42,56,0.10); }
}
@media (max-width: 600px) {
  .trustbar__cell:nth-child(2n-1) { border-right: 0; }
}
.trustbar__cell::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─────────────────────────── SERVICES GRID ─────────────────────────── */

.services {
  background: var(--midnight-deep);
  position: relative;
}
.services__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(56px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 900px) { .services__intro { grid-template-columns: 1fr; } }

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--midnight);
  border: 1px solid rgba(201,168,76,0.10);
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px) clamp(32px, 3vw, 44px);
  position: relative;
  display: flex; flex-direction: column;
  gap: 20px;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  min-height: 320px;
}
.svc-card:hover {
  border-color: rgba(201,168,76,0.40);
  transform: translateY(-3px);
  background: var(--bg-card-warm);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: clamp(28px, 3vw, 40px); right: clamp(28px, 3vw, 40px);
  height: 1px;
  background: rgba(201,168,76,0.30);
  transition: background var(--dur-base) var(--ease-out);
}
.svc-card:hover::before { background: var(--gold); }
.svc-card--feature {
  grid-column: span 8;
  background: linear-gradient(135deg, var(--midnight) 0%, #1A2735 100%);
  min-height: 380px;
}
.svc-card--standard { grid-column: span 4; }
@media (max-width: 1200px) {
  .svc-card--feature { grid-column: span 12; }
  .svc-card--standard { grid-column: span 6; }
}
@media (max-width: 900px) {
  .svc-card--feature, .svc-card--standard { grid-column: span 1; }
}

.svc-card__num {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; color: var(--gold);
}
.svc-card__eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--mist);
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.svc-card--feature .svc-card__title { font-size: clamp(32px, 2.6vw, 44px); max-width: 18ch; }
.svc-card__desc {
  font-size: 14px; line-height: 1.6;
  color: var(--text-muted);
  flex-grow: 1;
}
.svc-card__link {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.svc-card__link::after {
  content: '→';
  transition: transform var(--dur-base) var(--ease-out);
}
.svc-card:hover .svc-card__link::after { transform: translateX(6px); }

/* ─────────────────────────── ABOUT ─────────────────────────── */

.about {
  background: var(--ivory);
  color: var(--midnight-deep);
  padding-block: var(--pad-section-y);
}
.about__inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .about__inner { grid-template-columns: 1fr; } }

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--midnight);
  overflow: hidden;
}
.about__visual::before {
  content: '';
  position: absolute; inset: -1px;
  border: 1px solid var(--gold);
  pointer-events: none;
  transform: translate(20px, 20px);
}
.about__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.about__visual-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(20,29,40,0.92), transparent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
}

.about__content { padding-top: clamp(20px, 4vw, 48px); }
.about__eyebrow {
  color: var(--gold);
}
.about__title {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--midnight-deep);
  margin: 24px 0 28px;
  max-width: 16ch;
}
.about__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.about__body p {
  font-size: 16px; line-height: 1.7;
  color: var(--midnight);
  margin-bottom: 18px;
  max-width: 56ch;
}
.about__body p:first-child {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--midnight-deep);
}
.about__credentials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(30,42,56,0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .about__credentials { grid-template-columns: 1fr 1fr; } }
.about__cred-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--midnight-deep);
  letter-spacing: -0.02em;
}
.about__cred-num span { color: var(--gold); font-size: 0.6em; vertical-align: super; }
.about__cred-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mist-fog);
  margin-top: 8px;
}

/* ─────────────────────────── REVIEW WALL ─────────────────────────── */

.reviews-section {
  background: var(--midnight);
  position: relative;
}
.reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 72px);
  gap: 32px;
}
@media (max-width: 700px) { .reviews__head { grid-template-columns: 1fr; } }

.reviews__rating-block {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display);
  color: var(--gold);
}
.reviews__rating-num {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews__rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; }
.reviews__rating-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mist);
  text-transform: uppercase;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

.review {
  background: var(--midnight-deep);
  border: 1px solid rgba(201,168,76,0.10);
  padding: clamp(28px, 2.5vw, 36px);
  position: relative;
}
.review--feature {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--midnight) 0%, var(--midnight-deep) 100%);
  border-color: rgba(201,168,76,0.25);
}
.review--feature .review__quote { font-size: clamp(20px, 1.4vw, 24px); }

.review__quote-mark {
  position: absolute; top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.18;
  font-style: italic;
}
.review__stars {
  font-size: 13px; letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ivory);
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.review__attr {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.10);
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.review__name { color: var(--ivory); font-weight: 600; }
.review__source { color: var(--gold); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }

/* ─────────────────────────── AREAS / MAP ─────────────────────────── */

.areas {
  background: var(--midnight-deep);
  position: relative;
}
.areas__head {
  margin-bottom: clamp(48px, 5vw, 72px);
  max-width: 720px;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
@media (max-width: 900px) { .areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .areas__grid { grid-template-columns: 1fr; } }

.area {
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px) clamp(24px, 2vw, 32px);
  border-bottom: 1px solid rgba(201,168,76,0.10);
  border-right: 1px solid rgba(201,168,76,0.10);
  transition: background var(--dur-base) var(--ease-out);
}
.areas__grid > .area:nth-child(4n) { border-right: 0; }
@media (max-width: 900px) {
  .areas__grid > .area { border-right: 0; }
  .areas__grid > .area:nth-child(2n-1) { border-right: 1px solid rgba(201,168,76,0.10); }
}
@media (max-width: 500px) {
  .areas__grid > .area:nth-child(2n-1) { border-right: 0; }
}

.area:hover { background: rgba(201,168,76,0.04); }
.area__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.3vw, 24px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 6px;
}
.area__zip {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.area__desc {
  font-size: 13px; line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.area__link {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.area__link::after { content: ' →'; }

/* ─────────────────────────── CONTACT FORM ─────────────────────────── */

.contact-section {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(201,168,76,0.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--midnight-deep) 0%, var(--midnight) 100%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 1024px) { .contact__inner { grid-template-columns: 1fr; } }

.contact__lhs h2 {
  margin: 24px 0 24px;
  max-width: 14ch;
}
.contact__lhs h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.contact__lhs p {
  font-size: 16px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 32px;
}
.contact__office {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.contact__office-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.contact__office-addr {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 12px;
}
.contact__office-meta {
  font-size: 13px; line-height: 1.7;
  color: var(--text-muted);
}
.contact__office-meta strong { color: var(--ivory); }

.form {
  background: rgba(20, 29, 40, 0.5);
  border: 1px solid rgba(201,168,76,0.20);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
}
.form::before {
  content: '';
  position: absolute; top: -1px; left: 32px; right: 32px;
  height: 2px;
  background: var(--gold);
}
.form__row {
  display: grid; gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__row--single { grid-template-columns: 1fr; }

.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.form__input, .form__select, .form__textarea {
  font-family: var(--font-body);
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,240,232,0.18);
  padding: 12px 0;
  color: var(--ivory);
  transition: border-color var(--dur-base) var(--ease-out);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form__select { appearance: none; cursor: pointer; background: transparent; }
.form__textarea { resize: vertical; min-height: 96px; padding-top: 12px; line-height: 1.5; }
.form__radio-group {
  display: flex; gap: 24px; flex-wrap: wrap; padding-top: 6px;
}
.form__radio {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ivory); cursor: pointer;
}
.form__radio input { accent-color: var(--gold); }
.form__submit {
  margin-top: 16px;
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--midnight-deep);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-out);
}
.form__submit:hover { background: var(--gold-light); }

.form__legal {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ─────────────────────────── FAQ ─────────────────────────── */

.faq {
  background: var(--ivory);
  color: var(--midnight-deep);
}
.faq__inner {
  max-width: 920px;
  margin-inline: auto;
  padding: var(--pad-section-y) var(--pad-x);
}
.faq__head { text-align: center; margin-bottom: clamp(48px, 5vw, 72px); }
.faq__head h2 {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 400;
  color: var(--midnight-deep);
  margin: 20px 0 16px;
  letter-spacing: -0.015em;
}
.faq__head h2 em { font-style: italic; color: var(--gold); }
.faq__head p { font-size: 16px; line-height: 1.6; color: var(--mist-fog); max-width: 52ch; margin: 0 auto; }

.faq__list { border-top: 1px solid rgba(30,42,56,0.12); }
.faq__item {
  border-bottom: 1px solid rgba(30,42,56,0.12);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.2vw, 22px);
  font-weight: 500;
  color: var(--midnight-deep);
  letter-spacing: -0.005em;
}
.faq__q-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  color: var(--gold);
}
.faq__q-icon::before, .faq__q-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__q-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist-fog);
  max-width: 72ch;
}

/* ─────────────────────────── CITY/NEIGHBORHOOD HERO ─────────────────────────── */

.geo-hero {
  background: var(--midnight);
  padding: clamp(60px, 7vw, 96px) var(--pad-x) clamp(56px, 6vw, 80px);
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.geo-hero__breadcrumb {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}
.geo-hero__breadcrumb a { color: var(--gold); transition: color var(--dur-fast); }
.geo-hero__breadcrumb a:hover { color: var(--gold-light); }
.geo-hero__breadcrumb-sep { margin: 0 12px; color: var(--mist-fog); }
.geo-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 18ch;
  margin-bottom: 28px;
}
.geo-hero__title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.geo-hero__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.1rem + 0.5vw, 24px);
  line-height: 1.55;
  color: var(--ivory);
  max-width: 58ch;
  opacity: 0.9;
}
.geo-hero__meta {
  display: flex; gap: clamp(24px, 3vw, 48px);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.10);
  max-width: 720px;
  flex-wrap: wrap;
}
.geo-hero__meta-cell { font-size: 13px; }
.geo-hero__meta-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.geo-hero__meta-value { color: var(--ivory); font-weight: 500; font-size: 15px; }

/* ─────────────────────────── PROSE (city body content) ─────────────────────────── */

.prose {
  font-size: 16px; line-height: 1.75;
  color: var(--text);
  max-width: 68ch;
}
.prose p { margin-bottom: 22px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 400;
  color: var(--ivory);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 36px 0 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 13px;
}
.prose ul { padding-left: 24px; margin-bottom: 22px; }
.prose li { position: relative; padding-left: 20px; margin-bottom: 10px; color: var(--text); }
.prose li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--gold); transform: rotate(45deg);
}
.prose a { color: var(--gold-light); border-bottom: 1px solid rgba(201,168,76,0.40); transition: border-color var(--dur-fast); }
.prose a:hover { border-bottom-color: var(--gold-light); }
.prose strong { color: var(--ivory); font-weight: 600; }

.city-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: clamp(60px, 7vw, 96px);
}
@media (max-width: 1024px) { .city-grid { grid-template-columns: 1fr; } }

.local-context-card {
  background: var(--bg-card-warm);
  border: 1px solid rgba(201,168,76,0.18);
  padding: clamp(28px, 3vw, 40px);
  position: sticky; top: 100px;
}
.local-context-card h3 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.20);
}
.local-context-card dl { display: grid; gap: 18px; }
.local-context-card dt {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 4px;
}
.local-context-card dd {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.4;
  color: var(--ivory);
}
.local-context-card ul { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.local-context-card li { margin-bottom: 4px; }
.local-context-card li::before { content: '— '; color: var(--gold); }

/* ─────────────────────────── FOOTER ─────────────────────────── */

.footer {
  background: #1E2A38;  /* matches logo PNG bg — no seam */
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: clamp(64px, 7vw, 96px) var(--pad-x) clamp(32px, 4vw, 48px);
  color: var(--text-muted);
}
.footer__inner {
  max-width: 1320px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 56px;
}
@media (max-width: 1024px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand-block { padding-right: 32px; }
.footer__brand-block .brand { margin-bottom: 24px; }
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  margin-bottom: 24px;
  line-height: 1.5;
}
.footer__nap { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.footer__nap strong { color: var(--ivory); font-weight: 600; }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__list { display: grid; gap: 12px; }
.footer__list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__list a:hover { color: var(--ivory); }
.footer__ext {
  display: inline-block;
  font-size: 0.85em;
  color: var(--gold);
  opacity: 0.7;
  transform: translateY(-1px);
  transition: opacity var(--dur-fast);
}
.footer__list a:hover .footer__ext { opacity: 1; }

/* ─── Byline (Site built with ♥ by Ketchup) ─── */
.footer__byline {
  margin-top: 16px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--gold-faint);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--mist);
  letter-spacing: 0.02em;
}
.footer__byline a {
  color: var(--gold-light);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  margin-left: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.footer__byline a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.footer__heart {
  display: inline-block;
  color: var(--gold);
  font-size: 1.05em;
  vertical-align: -0.05em;
  margin: 0 2px;
  transform: scale(1);
  transition: transform var(--dur-base) var(--ease-out);
}
.footer__byline:hover .footer__heart {
  transform: scale(1.18);
}

.footer__social {
  display: flex; gap: 16px;
  margin-top: 24px;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all var(--dur-fast) var(--ease-out);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--midnight-deep);
  border-color: var(--gold);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  max-width: 1320px;
  margin-inline: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-faint);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--ivory); }
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ─────────────────────────── REVEAL ANIMATION ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 450ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 540ms; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 630ms; }
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* Print niceties */
@media print {
  body::before { display: none; }
  .header, .footer__social, .form, .nav__cta { display: none; }
}
