/* ============================================================
   Benowitz Wealth Management — Site Stylesheet
   Converted from Claude Design prototype to production CSS
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand colors */
  --navy-900: #051f3a;
  --navy-800: #073763;
  --navy-700: #0a4378;
  --navy-600: #14528c;
  --navy-200: #b9c8db;

  --gold-700: #a98b3a;
  --gold-600: #c4a655;
  --gold-500: #ddc36c;
  --gold-400: #e8d68f;
  --gold-200: #f2e8c8;
  --gold-50:  #faf6e8;

  --ink-900: #0d1117;
  --ink-700: #2a323d;
  --ink-500: #5b6470;
  --ink-400: #7e8794;
  --ink-300: #a8afba;

  --paper:   #fbf8f2;
  --paper-2: #f5f0e4;
  --bone:    #efeadd;
  --hairline: #e1d9c5;
  --hairline-cool: #dde3eb;
  --white: #ffffff;

  /* Accent (gold intensity — tasteful default) */
  --accent: var(--gold-500);
  --accent-soft: var(--gold-200);
  --accent-glow: rgba(221,195,108,0.35);

  /* Typography */
  --font-serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-sans:  "Manrope", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --display-weight: 500;
  --display-tracking: -0.01em;

  /* Spacing */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Radii */
  --r-xs: 2px; --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(7,55,99,0.04), 0 12px 32px -16px rgba(7,55,99,0.18);
  --shadow-hover: 0 1px 2px rgba(7,55,99,0.06), 0 24px 48px -20px rgba(7,55,99,0.28);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.2, 0.85, 0.25, 1);

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --nav-h: 112px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
::selection { background: var(--navy-800); color: var(--gold-200); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: var(--display-weight, 500);
  letter-spacing: var(--display-tracking, -0.01em);
  line-height: 1.04;
  margin: 0;
  color: var(--navy-900);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.on-dark::before { background: var(--accent); }

.kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-700);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: var(--container-narrow); }
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1100px) { .container { padding: 0 56px; } }

.section { padding: var(--sp-9) 0; }
@media (max-width: 720px) { .section { padding: 72px 0; } }

.divider { height: 1px; background: var(--hairline); width: 100%; }

/* Surfaces */
.bg-paper   { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-bone    { background: var(--bone); }
.bg-white   { background: var(--white); }
.bg-navy    { background: var(--navy-800); color: var(--paper); }
.bg-navy-deep { background: var(--navy-900); color: var(--paper); }

/* Anchor offset under sticky nav */
:where(section[id]) { scroll-margin-top: 90px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--navy-800);
  color: var(--gold-200);
  border-color: var(--navy-800);
}
.btn-primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 12px 32px -16px rgba(7,55,99,0.5);
}
.btn-gold {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--ink-300);
}
.btn-ghost:hover { border-color: var(--navy-800); background: rgba(7,55,99,0.04); }
.btn-ghost.on-dark { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-ghost.on-dark:hover { border-color: var(--gold-400); color: var(--gold-200); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.25s var(--ease);
}
.link-underline:hover { gap: 14px; }
.link-underline.on-dark { color: var(--gold-200); }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-500);
}
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-sans);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-300);
  padding: 10px 0;
  color: var(--ink-900);
  transition: border-color 0.2s var(--ease);
  border-radius: 0;
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--navy-800);
}
.form-input.on-paper-2  { border-bottom-color: rgba(7,55,99,0.2); }
.form-input.on-light    { border-bottom-color: rgba(7,55,99,0.18); font-size: 15px; padding: 8px 0; }
.form-input.on-light:focus { border-bottom-color: var(--navy-800); }
.form-textarea { min-height: 96px; resize: vertical; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235b6470'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px; }

.form-checkbox {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
  align-items: flex-start;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--navy-800);
  width: 16px; height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-error {
  font-size: 12px;
  color: #b91c1c;
  margin-top: 4px;
  display: none;
}
.form-field.has-error .form-error { display: block; }
.form-field.has-error .form-input,
.form-field.has-error .form-textarea { border-bottom-color: #b91c1c; }

/* Chip selectors */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-sans);
  background: transparent;
  white-space: nowrap;
}
.chip:hover { border-color: var(--navy-800); color: var(--navy-900); }
.chip.selected {
  background: var(--navy-900);
  color: var(--gold-200);
  border-color: var(--navy-900);
}
/* Honeypot anti-spam */
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Form success banner */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 32px 16px;
}
.form-success.visible { display: flex; }
.form-success-check {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 24px;
}
.form-success h3 { font-size: 22px; }
.form-success p { font-size: 15px; color: var(--ink-500); max-width: 38ch; margin: 0; }

/* ── UTILITY BAR ────────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-900);
  color: var(--gold-200);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; /* guardrail: the two nowrap tracks must never cause page-level horizontal scroll */
}
.utility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility-bar a { display: inline-flex; gap: 8px; align-items: center; opacity: 0.85; transition: opacity 0.2s; }
.utility-bar a:hover { opacity: 1; color: var(--gold-400); }
.utility-marquee { display: flex; gap: 24px; align-items: center; white-space: nowrap; }
.utility-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 999px; }
@media (max-width: 899px) {
  .utility-bar { padding: 8px 0; font-size: 11px; }
  .utility-bar-inner { justify-content: center; }
  .utility-marquee:first-child { display: none; }
  .utility-marquee:last-child > span { display: none; }
}

/* ── STICKY HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,248,242,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(251,248,242,0.97);
  box-shadow: 0 1px 0 var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}
.brand { display: flex; align-items: center; cursor: pointer; height: 100%; flex-shrink: 0; }
.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 720px) { .brand-logo { height: 64px; } }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-gold { padding: 10px 18px; font-size: 12px; }
/* On phones the long "Talk With An Advisor" CTA crowds out the logo and
   overflows narrow screens; hide it (the Menu, utility bar, hero, and
   footer all surface the same action). Tablets/desktops keep it. */
@media (max-width: 600px) { .header-actions .btn { display: none; } }

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-sm);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  transition: all 0.2s var(--ease);
}
.menu-trigger:hover { border-color: var(--navy-800); background: rgba(7,55,99,0.04); }
.menu-trigger .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.menu-trigger .bars span { width: 16px; height: 1.5px; background: currentColor; transition: all 0.2s var(--ease); display: block; }

/* ── FULL-SCREEN MENU OVERLAY ───────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.menu-overlay.open { display: block; }

body.menu-open { overflow: hidden; }

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(221,195,108,0.10), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(10,67,120,0.45), transparent 60%),
    var(--navy-900);
}
.menu-overlay-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 900px) { .menu-overlay-head { padding: 22px 56px; } }

.menu-overlay-brand img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 1;
}
@media (max-width: 720px) { .menu-overlay-brand img { height: 56px; } }

.menu-overlay-close {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.menu-overlay-close:hover { border-color: var(--accent); color: var(--gold-200); }
.menu-overlay-close .x { font-size: 14px; opacity: 0.8; }

.menu-overlay-body {
  position: relative;
  z-index: 2;
  height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.menu-overlay-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .menu-overlay-inner {
    padding: 64px 56px 80px;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
  }
}
.menu-overlay-nav { display: flex; flex-direction: column; }
.menu-row { border-top: 1px solid rgba(255,255,255,0.08); }
.menu-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.menu-row-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--paper);
  transition: color 0.2s var(--ease), padding 0.3s var(--ease);
}
@media (min-width: 720px) { .menu-row-head { grid-template-columns: 56px 1fr auto; padding: 28px 0; } }
.menu-row-head:hover { color: var(--gold-200); padding-left: 12px; }
.menu-row-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  opacity: 0.7;
}
.menu-row-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.menu-row.open .menu-row-label { font-style: italic; color: var(--gold-200); }
.menu-row-caret {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--gold-400);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.menu-row:hover .menu-row-caret { border-color: var(--accent); }
.menu-row.open .menu-row-caret {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.menu-row-sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
  padding: 0 0 0 56px;
}
@media (min-width: 720px) { .menu-row-sub { grid-template-columns: 1fr 1fr; padding-left: 72px; } }
.menu-row.open .menu-row-sub { max-height: 600px; padding-bottom: 24px; }
.menu-row-subitem {
  display: flex;
  flex-direction: column;
  padding: 14px 20px 14px 16px;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: -1px;
  transition: all 0.2s var(--ease);
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  text-decoration: none;
}
.menu-row-subitem:hover {
  border-left-color: var(--accent);
  color: var(--gold-200);
  background: rgba(255,255,255,0.02);
  padding-left: 22px;
}
.menu-row-subitem span { font-family: var(--font-sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
.menu-row-subitem small { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0; font-weight: 400; }

/* Simple link rows (no children) */
.menu-row-head a {
  color: inherit;
  text-decoration: none;
  display: contents;
}

.menu-overlay-aside {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-self: start;
}
@media (min-width: 900px) {
  .menu-overlay-aside {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 48px;
    margin-top: 12px;
  }
}
.menu-aside-block { display: flex; flex-direction: column; gap: 16px; }
.menu-aside-block .kicker {
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu-aside-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 32ch;
}
.menu-aside-block .btn { align-self: flex-start; }
.menu-aside-email {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-200);
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.menu-aside-email:hover { color: var(--gold-400); }
.menu-aside-foot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.menu-aside-foot a:hover { color: var(--gold-200); }
.menu-aside-foot .dot { opacity: 0.3; }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  pointer-events: none;
  filter: brightness(0.55) saturate(0.85) contrast(1.05);
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,31,58,0.55) 0%, rgba(5,31,58,0.35) 35%, rgba(5,31,58,0.7) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(221,195,108,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(10,67,120,0.6), transparent 60%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: 120px 0 100px;
}
@media (min-width: 900px) {
  .hero-inner { padding: 160px 0 120px; min-height: 86vh; display: flex; flex-direction: column; justify-content: center; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow .line { width: 36px; height: 1px; background: var(--accent); }
.hero-eyebrow .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6.2vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--paper);
  max-width: 17ch;
  text-wrap: balance;
}
.hero-headline em { font-style: italic; color: var(--gold-200); font-weight: 400; }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
}
.hero-quietcta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.hero-quietcta-sep { color: rgba(255,255,255,0.3); }

/* Hero grid (cinematic with form) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 80px 0 60px;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; padding: 100px 0 80px; }
}
@media (min-width: 1100px) {
  .hero-grid { gap: 80px; padding: 120px 0 100px; }
}
.hero-text { max-width: 640px; }

/* ── HERO FORM ──────────────────────────────────────────────── */
.hero-form {
  background: var(--paper);
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  justify-self: end;
  position: relative;
  border-top: 2px solid var(--accent);
}
@media (max-width: 999px) { .hero-form { justify-self: stretch; max-width: 100%; } }
@media (max-width: 720px) { .hero-form { padding: 26px 22px; } }

.hero-form-head { padding-bottom: 22px; border-bottom: 1px solid var(--hairline); }
.hero-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-form-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero-form h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.hero-form-head p { font-size: 14px; color: var(--ink-500); line-height: 1.5; margin: 0; }
.hero-form-body { padding-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.hero-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.hero-form-grid .span-2 { grid-column: 1 / -1; }
.hero-form .form-label { font-size: 10px; letter-spacing: 0.16em; }
.hero-form .chip { padding: 6px 12px; font-size: 12px; }
.hero-form-consent {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-500);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}
.hero-form-consent input { width: 14px; height: 14px; }
.hero-form-submit { width: 100%; justify-content: center; padding: 14px 22px; }
.hero-form-meta { font-size: 11px; text-align: center; color: var(--ink-400); letter-spacing: 0.02em; margin-top: 8px; }
.hero-form-meta strong { color: var(--navy-800); font-weight: 600; }

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  align-items: center;
}
@media (min-width: 900px) { .trust-grid { grid-template-columns: 1.2fr repeat(4, 1fr); } }
.trust-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  grid-column: 1 / -1;
}
@media (min-width: 900px) { .trust-label { grid-column: auto; } }
.trust-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 2.4vw, 19px);
  color: var(--navy-800);
  font-weight: 500;
  border-left: 1px solid var(--hairline);
  padding-left: 14px;
  line-height: 1.2;
}
@media (max-width: 899px) {
  .trust-item:nth-child(2) { border-left: none; padding-left: 0; }
  .trust-item:nth-child(4) { border-left: none; padding-left: 0; }
}

/* ── SECTION HEAD PATTERN ───────────────────────────────────── */
.section-head { display: grid; gap: 32px; margin-bottom: 56px; align-items: end; }
@media (min-width: 900px) { .section-head { grid-template-columns: 1fr 1fr; gap: 64px; } }
.section-head .index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(34px, 5vw, 58px); }

/* ── WHO WE SERVE GRID ──────────────────────────────────────── */
.serve-grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (min-width: 720px)  { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
.serve-card {
  position: relative;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  cursor: pointer;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  transition: transform 0.3s var(--ease);
}
.serve-card-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,31,58,0.35) 0%, rgba(5,31,58,0.85) 75%, rgba(5,31,58,0.95) 100%),
    linear-gradient(120deg, rgba(7,55,99,0.45) 0%, rgba(5,31,58,0.15) 60%, transparent 100%);
  transition: opacity 0.35s var(--ease);
  z-index: 1;
}
.serve-card-body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; height: 100%; flex: 1; }
.serve-card:hover .serve-card-overlay { opacity: 0.8; }
.serve-card .num { font-family: var(--font-mono); font-size: 11px; color: var(--gold-400); letter-spacing: 0.18em; }
.serve-card h3 { font-size: 28px; color: var(--white); font-weight: 500; letter-spacing: -0.01em; }
.serve-card p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.55; margin: 0; max-width: 32ch; }
.serve-card .arrow {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 600;
}
.serve-card .arrow .a { color: var(--accent); transition: transform 0.25s var(--ease); }
.serve-card:hover .arrow .a { transform: translateX(6px); }

/* ── SERVICES LIST ──────────────────────────────────────────── */
.services { display: grid; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  cursor: pointer;
  transition: padding 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-row:last-child { border-bottom: 1px solid var(--hairline); }
.service-row:hover { padding-left: 16px; }
@media (min-width: 900px) {
  .service-row { grid-template-columns: 80px 1fr 2fr auto; align-items: baseline; gap: 32px; padding: 44px 0; }
}
.service-row .num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.16em; }
.service-row h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; color: var(--navy-900); }
.service-row p { font-size: 15px; color: var(--ink-500); line-height: 1.55; margin: 0; max-width: 60ch; }
.service-row .read { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--navy-800); display: inline-flex; gap: 8px; }
.service-row .read .a { color: var(--accent); transition: transform 0.2s var(--ease); }
.service-row:hover .read .a { transform: translateX(4px); }

/* ── WHAT WE DO SECTION (additional) ───────────────────────── */
.what-we-do {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 720px)  { .what-we-do-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .what-we-do-grid { grid-template-columns: repeat(3, 1fr); } }
.what-we-do-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.what-we-do-card:hover { border-color: var(--accent); box-shadow: var(--shadow-card); }
.what-we-do-card .num { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.18em; }
.what-we-do-card h3 { font-size: 22px; font-weight: 500; }
.what-we-do-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0; }

/* ── FOUNDATION SECTION ─────────────────────────────────────── */
.foundation {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.foundation::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(221,195,108,0.12), transparent 50%);
}
.foundation-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .foundation-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.foundation h2 { font-size: clamp(36px, 5.2vw, 64px); color: var(--white); margin-bottom: 28px; }
.foundation h2 em { color: var(--gold-200); font-style: italic; }
.foundation p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.6; max-width: 56ch; margin: 0 0 16px; }

.layers { position: relative; display: flex; flex-direction: column; gap: 12px; }
.layer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px;
  transition: all 0.3s var(--ease);
}
.layer:hover { border-color: var(--accent); background: rgba(221,195,108,0.06); transform: translateX(4px); }
.layer .num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.layer strong { display: block; margin-top: 4px; font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--white); }
.layer span { display: block; margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.layer.foundation-row { background: linear-gradient(90deg, rgba(221,195,108,0.18), rgba(221,195,108,0.04)); border-color: rgba(221,195,108,0.25); }
.layer.foundation-row strong { color: var(--gold-200); }
.layer.foundation-row .num { color: var(--gold-400); }

/* ── PHOTO BAND ─────────────────────────────────────────────── */
.photo-band {
  position: relative;
  min-height: clamp(320px, 56vh, 580px);
  overflow: hidden;
  background: var(--navy-900);
}
.photo-band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.05) saturate(0.92) brightness(0.7);
}
.photo-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,31,58,0.05) 0%, rgba(5,31,58,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 64px 0 72px;
}
.photo-band-overlay .eyebrow { color: var(--gold-400); margin-bottom: 24px; }
.photo-band-overlay blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.18;
  color: var(--paper);
  max-width: 24ch;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
@media (max-width: 720px) {
  .photo-band-overlay { padding: 48px 0; }
  .photo-band-overlay blockquote { font-size: clamp(22px, 5.5vw, 32px); }
}

/* ── FOUNDER SECTION ────────────────────────────────────────── */
.founder { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .founder { grid-template-columns: 5fr 6fr; gap: 80px; } }
.founder-image { position: relative; aspect-ratio: 4/5; background: var(--navy-900); overflow: hidden; }
.founder-image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(0.92); }
.founder-image::after {
  content: "";
  position: absolute;
  left: -12px; top: 12px; right: 12px; bottom: -12px;
  border: 1px solid var(--accent);
  z-index: -1;
}
.founder-image-wrap { position: relative; }
.founder-quote {
  position: absolute;
  bottom: -32px; right: -12px;
  background: var(--navy-900);
  color: var(--paper);
  padding: 24px 28px;
  max-width: 320px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  border-left: 2px solid var(--accent);
}
.founder-quote small {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 600;
}
@media (max-width: 720px) { .founder-quote { position: static; max-width: 100%; margin-top: 24px; } }
.founder-body h2 { font-size: clamp(34px, 4.5vw, 54px); margin-bottom: 24px; }
.founder-body p { font-size: 17px; color: var(--ink-700); line-height: 1.65; margin: 0 0 16px; }
.founder-body .sig { margin-top: 24px; font-family: var(--font-serif); font-style: italic; font-size: 28px; color: var(--gold-700); }
.founder-body .creds { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.founder-body .cred { border-top: 1px solid var(--hairline); padding-top: 14px; }
.founder-body .cred small { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.founder-body .cred strong { display: block; margin-top: 6px; font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--navy-900); }

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--navy-900);
  transition: color 0.2s var(--ease);
  cursor: pointer;
}
.faq-q:hover { color: var(--navy-700); }
.faq-q .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px; color: var(--accent);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  font-style: normal;
}
.faq-item.open .faq-q .plus {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 64px 0 0;
}
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 28px; }
.faq-a p { margin: 0; color: var(--ink-700); font-size: 16px; line-height: 1.65; max-width: 70ch; }

/* ── PROCESS ────────────────────────────────────────────────── */
.process {
  display: grid; gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (min-width: 900px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--paper);
  padding: 36px 28px 32px;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.process-step .step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 400;
}
.process-step h3 { font-size: 22px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--ink-500); line-height: 1.55; margin: 0; }
.process-step .time { margin-top: auto; padding-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-400); }

/* ── LEAD FORM ──────────────────────────────────────────────── */
.leadform {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 48px;
}
@media (max-width: 720px) { .leadform { padding: 32px 24px; } }
.leadform h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.leadform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 32px;
  margin-bottom: 24px;
  margin-top: 28px;
}
@media (min-width: 720px) { .leadform-grid { grid-template-columns: 1fr 1fr; } }
.leadform-grid .span-2 { grid-column: 1 / -1; }
.leadform-footer {
  display: flex; flex-direction: column; gap: 18px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
@media (min-width: 720px) { .leadform-footer { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 32px; } }
.leadform-meta { font-size: 12px; color: var(--ink-500); line-height: 1.6; max-width: 36ch; }
.leadform-meta strong { color: var(--navy-800); font-weight: 600; }

/* ── FINAL CTA ──────────────────────────────────────────────── */
.final-cta {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(221,195,108,0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(7,55,99,0.6), transparent 50%);
}
.final-cta-inner { position: relative; padding: 100px 0; }
.final-cta h2 {
  font-size: clamp(40px, 6.5vw, 88px);
  color: var(--white);
  max-width: 18ch;
  margin: 0 auto 24px;
  line-height: 1.02;
}
.final-cta h2 em { color: var(--gold-200); font-style: italic; }
.final-cta p { color: rgba(255,255,255,0.7); max-width: 52ch; margin: 0 auto 40px; font-size: 17px; line-height: 1.55; }
.final-cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (INTERIOR) ───────────────────────────────────── */
.page-hero {
  background: var(--navy-900);
  color: var(--paper);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(221,195,108,0.14), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(10,67,120,0.5), transparent 60%);
  z-index: 1;
}
.page-hero-inner { position: relative; display: block; z-index: 3; }
.page-hero--split { padding: 160px 0 120px; }
.page-hero--split .page-hero-photo { position: absolute; inset: 0; z-index: 0; }
.page-hero--split .page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.04) saturate(0.85) brightness(0.85);
}
.page-hero--split .page-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(5,31,58,0.92) 0%, rgba(7,55,99,0.82) 45%, rgba(5,31,58,0.7) 100%),
    linear-gradient(180deg, rgba(5,31,58,0.45) 0%, transparent 30%, rgba(5,31,58,0.5) 100%);
  pointer-events: none;
}
.page-hero--split::before {
  z-index: 2;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(221,195,108,0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(10,67,120,0.35), transparent 55%);
}
.page-hero--split .page-hero-text { max-width: 760px; }

.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs a { color: var(--gold-200); }
.breadcrumbs a:hover { color: var(--gold-400); }
.breadcrumbs span:not(.sep) { opacity: 0.7; }
.breadcrumbs .sep { opacity: 0.3; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  color: var(--white);
  max-width: 22ch;
  letter-spacing: -0.02em;
  padding-bottom: 8px;
  text-shadow: 0 2px 24px rgba(5,31,58,0.4);
}
.page-hero h1 em { color: var(--gold-200); font-style: italic; }
.page-hero .lede {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,0.85);
  max-width: 58ch;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(5,31,58,0.4);
}

/* ── DETAIL PAGE (FRS, etc.) ────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; } }
.detail-sticky {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.detail-sticky .kicker { margin-bottom: 8px; }
.detail-sticky .toc { display: flex; flex-direction: column; border-left: 1px solid var(--hairline); }
.detail-sticky .toc a {
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-500);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.2s;
  display: block;
}
.detail-sticky .toc a.active, .detail-sticky .toc a:hover { color: var(--navy-900); border-left-color: var(--accent); }

.detail-body h2 { font-size: clamp(28px, 3.6vw, 44px); margin-top: 56px; margin-bottom: 20px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body h3 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 36px; margin-bottom: 12px; }
.detail-body p { font-size: 17px; color: var(--ink-700); line-height: 1.7; margin: 0 0 16px; max-width: 64ch; }
.detail-body ul { padding: 0; list-style: none; margin: 16px 0 24px; max-width: 64ch; }
.detail-body ul li { padding: 14px 0 14px 32px; border-bottom: 1px solid var(--hairline); position: relative; font-size: 16px; color: var(--ink-700); }
.detail-body ul li::before { content: ""; position: absolute; left: 0; top: 22px; width: 16px; height: 1px; background: var(--accent); }
.detail-body blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy-900);
}

/* ── SERVICE PAGE (Generic) ─────────────────────────────────── */
.service-page-body { max-width: var(--container-narrow); margin: 0 auto; }
.service-section { margin-bottom: 48px; }
.service-section:last-child { margin-bottom: 0; }
.service-section h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 20px; }
.service-section p { font-size: 17px; color: var(--ink-700); line-height: 1.7; margin-bottom: 16px; }
.service-section p:last-child { margin-bottom: 0; }
.service-page-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 720px) { .service-page-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.service-page-cta p { font-size: 17px; color: var(--ink-700); margin: 0; max-width: 52ch; }

/* ── ABOUT / FOUNDER ────────────────────────────────────────── */
.founder-hero { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .founder-hero { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.founder-hero .photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.founder-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-hero .bio-body h2 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 0; margin-bottom: 16px; }
.founder-hero .bio-body p { font-size: 17px; color: var(--ink-700); line-height: 1.7; margin: 0 0 16px; }

.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (min-width: 720px)  { .expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .expect-grid { grid-template-columns: repeat(4, 1fr); } }
.expect-card {
  background: var(--paper);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
}
.expect-card .expect-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; }
.expect-card h3 { font-size: 18px; font-weight: 500; line-height: 1.2; margin: 0; }
.expect-card p { font-size: 13px; color: var(--ink-500); line-height: 1.55; margin: 0; }

/* ── MOMENTS GRID (Founder page) ────────────────────────────── */
.moments-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .moments-grid { grid-template-columns: 2fr 1fr 1fr; gap: 20px; } }
.moment { position: relative; margin: 0; background: var(--navy-900); overflow: hidden; aspect-ratio: 3/4; }
.moment-wide { aspect-ratio: 4/5; }
@media (min-width: 760px) { .moment-wide { grid-row: span 2; aspect-ratio: auto; height: 100%; min-height: 520px; } }
.moment img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(0.92); transition: transform 0.7s var(--ease); }
.moment:hover img { transform: scale(1.03); }
.moment figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(5,31,58,0.92));
  color: var(--paper);
  display: flex; flex-direction: column; gap: 6px;
}
.moment-kicker { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }
.moment figcaption span:last-child { font-family: var(--font-serif); font-style: italic; font-size: 16px; line-height: 1.35; color: rgba(255,255,255,0.88); max-width: 38ch; }

/* ── INTAKE PAGE ────────────────────────────────────────────── */
.intake-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1000px) { .intake-grid { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; } }
.intake-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.intake-aside .helpline {
  background: var(--navy-900); color: var(--paper);
  padding: 28px; border-left: 2px solid var(--accent);
}
.intake-aside .helpline strong {
  display: block; font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-200); margin-bottom: 12px;
}
.intake-aside .helpline p { font-family: var(--font-serif); font-style: italic; font-size: 18px; margin: 0 0 12px; line-height: 1.4; }
.intake-aside .helpline a { color: var(--gold-200); border-bottom: 1px solid var(--accent); }
.intake-aside .warn { border: 1px solid var(--hairline); padding: 24px; background: var(--paper); }
.intake-aside .warn strong { display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy-800); font-weight: 600; margin-bottom: 10px; }
.intake-aside .warn p { margin: 0; font-size: 13px; color: var(--ink-500); line-height: 1.55; }

.intake-form { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--hairline); padding: 40px; }
@media (max-width: 720px) { .intake-form { padding: 24px; } }
.intake-section { padding: 32px 0; border-bottom: 1px solid var(--hairline); }
.intake-section:first-child { padding-top: 0; }
.intake-section:last-of-type { border-bottom: none; }
.intake-section .step-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 8px; }
.intake-section h3 { font-size: 22px; margin-bottom: 24px; }
.intake-fields { display: grid; grid-template-columns: 1fr; gap: 24px 28px; }
@media (min-width: 720px) { .intake-fields { grid-template-columns: 1fr 1fr; } }
.intake-fields .span-2 { grid-column: 1 / -1; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } }
.contact-aside { display: flex; flex-direction: column; gap: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 6px; }
.contact-detail .label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }
.contact-detail a { font-family: var(--font-serif); font-size: 22px; color: var(--navy-900); border-bottom: 1px solid var(--accent); align-self: flex-start; padding-bottom: 2px; transition: color 0.2s; }
.contact-detail a:hover { color: var(--navy-700); }
.contact-detail p { font-size: 15px; color: var(--ink-500); margin: 0; }
.contact-bio { background: var(--navy-900); padding: 28px; }
.contact-bio img { width: 88px; height: 88px; border-radius: 4px; object-fit: cover; margin-bottom: 16px; filter: saturate(0.85); }
.contact-bio h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.contact-bio p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.55; }
.contact-bio .role { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-bottom: 12px; }

.contact-form-card { background: var(--white); border: 1px solid var(--hairline); padding: 40px; }
@media (max-width: 720px) { .contact-form-card { padding: 24px; } }
.contact-form-card h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 8px; }
.contact-form-card > p { font-size: 15px; color: var(--ink-500); margin-bottom: 32px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 24px 28px; margin-bottom: 24px; }
@media (min-width: 720px) { .contact-form-grid { grid-template-columns: 1fr 1fr; } }
.contact-form-grid .span-2 { grid-column: 1 / -1; }

/* ── RESOURCES ──────────────────────────────────────────────── */
.resource-grid {
  display: grid; gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (min-width: 720px)  { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .resource-grid { grid-template-columns: repeat(3, 1fr); } }
.resource {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.resource:hover { background: var(--paper-2); }
.resource .kind { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; }
.resource h3 { font-size: 22px; line-height: 1.15; }
.resource p { font-size: 14px; color: var(--ink-500); line-height: 1.55; margin: 0; flex: 1; }
.resource .read { display: inline-flex; gap: 8px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--navy-800); }

/* ── 404 ────────────────────────────────────────────────────── */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.notfound .big { font-family: var(--font-serif); font-style: italic; font-size: clamp(120px, 22vw, 280px); line-height: 0.9; color: var(--accent); margin-bottom: 24px; }
.notfound h1 { margin-bottom: 16px; font-size: clamp(28px, 4vw, 44px); }
.notfound p { color: var(--ink-500); margin-bottom: 32px; max-width: 50ch; font-size: 17px; }
.notfound-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-top {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; } }
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-mark { display: inline-flex; align-items: center; }
.footer-logo-pill { background: #fff; border-radius: 8px; padding: 10px 14px; display: inline-flex; align-items: center; }
.footer-logo { height: 64px; width: auto; display: block; object-fit: contain; object-position: left center; }
@media (max-width: 720px) { .footer-logo { height: 52px; } }
.footer-brand-stmt { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.4; color: rgba(255,255,255,0.78); max-width: 38ch; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-200); }
.footer-contact strong { display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-bottom: 4px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin: 0 0 24px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease); display: inline-flex; gap: 8px; align-items: center; }
.footer-col li a:hover { color: var(--gold-200); }
.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
  display: flex; flex-direction: column; gap: 20px;
}
.footer-disclosure p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 96ch; margin: 0; }
.footer-disclosure p strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 40px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-200); }

/* ── SKIP TO CONTENT ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--navy-800);
  color: var(--gold-200);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  border-radius: var(--r-sm);
}
.skip-link:focus { left: 8px; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-body { max-width: 72ch; }
.legal-body h2 { font-size: clamp(24px, 3vw, 36px); margin-top: 48px; margin-bottom: 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 16px; color: var(--ink-700); line-height: 1.7; margin-bottom: 16px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 16px; }
.legal-body li { font-size: 16px; color: var(--ink-700); line-height: 1.7; margin-bottom: 8px; }
.legal-body a { color: var(--navy-700); border-bottom: 1px solid var(--hairline); transition: color 0.2s; }
.legal-body a:hover { color: var(--navy-900); }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 380px; gap: 80px; align-items: start; } }
.about-main h2 { font-size: clamp(30px, 4vw, 48px); margin-top: 12px; margin-bottom: 20px; }
.about-aside-card { background: var(--paper-2); border: 1px solid var(--hairline); padding: 32px; position: sticky; top: 100px; }
.about-aside-card .kicker { display: block; margin-bottom: 16px; }
.about-reasons { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.about-reasons li { font-size: 15px; color: var(--ink-700); padding: 12px 0; border-bottom: 1px solid var(--hairline); display: flex; gap: 10px; align-items: flex-start; }
.about-reasons li::before { content: "—"; color: var(--accent); font-family: var(--font-serif); flex-shrink: 0; }
.expect-item { display: flex; gap: 16px; padding: 24px 0; border-top: 1px solid var(--hairline); align-items: flex-start; }
.expect-item strong { display: block; font-size: 16px; color: var(--navy-900); margin-bottom: 6px; }
.expect-item p { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.55; }
.expect-check { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--navy-900); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── FOUNDER BIO PAGE ───────────────────────────────────────── */
.founder-section .founder-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .founder-section .founder-grid { grid-template-columns: 420px 1fr; gap: 80px; align-items: start; } }
.founder-section .founder-image-wrap { position: relative; }
.founder-section .founder-image-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.founder-image-accent { position: absolute; bottom: -16px; right: -16px; width: 80%; height: 80%; border: 3px solid var(--accent); z-index: -1; pointer-events: none; }
.founder-section .founder-text h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 8px 0 20px; }
.founder-section .founder-text blockquote { padding: 24px 28px; background: var(--paper-2); border-left: 3px solid var(--accent); font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.45; color: var(--navy-900); margin: 24px 0; }
.founder-section .founder-text blockquote p { margin: 0; font-size: inherit; color: inherit; }
.founder-section .founder-text p { font-size: 17px; color: var(--ink-700); line-height: 1.7; margin-bottom: 16px; }
.founder-creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.founder-cred { padding: 16px 0; border-top: 1px solid var(--hairline); }
.founder-cred-label { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; margin-bottom: 6px; }
.moments-grid .moment-item { overflow: hidden; }
.moments-grid .moment-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center; }
.moment-item--wide img { aspect-ratio: 16/9; }
.moments-grid figcaption { font-size: 13px; color: var(--ink-500); line-height: 1.5; padding: 12px 0; }

/* ── DETAIL TOC (FRS PLANNING PAGE) ────────────────────────── */
.detail-toc { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.toc-nav { display: flex; flex-direction: column; border-left: 1px solid var(--hairline); }
.toc-link {
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-500);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.2s;
  display: block;
  line-height: 1.4;
}
.toc-link.active, .toc-link:hover { color: var(--navy-900); border-left-color: var(--accent); }
.toc-cta { padding: 20px; background: var(--paper-2); border: 1px solid var(--hairline); }
.toc-cta .kicker { display: block; margin-bottom: 8px; }
.toc-related { display: flex; flex-direction: column; gap: 8px; }
.toc-related a { font-size: 13px; color: var(--navy-800); font-weight: 600; transition: color 0.2s; }
.toc-related a:hover { color: var(--navy-900); }
.detail-quote { margin: 32px 0; padding: 28px 32px; background: var(--paper-2); border-left: 3px solid var(--accent); font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--navy-900); }
.detail-quote p { margin: 0; font-size: inherit; color: inherit; max-width: none; }
.detail-cta-block { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--hairline); }

/* ── RESOURCES PAGE ─────────────────────────────────────────── */
.resource-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.resource-card:hover { border-color: var(--accent); box-shadow: var(--shadow-card); }
.resource-kind { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; display: inline-block; }
.resource-card h3 { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.25; margin: 0; }
.resource-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0; flex: 1; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-bio-card { background: var(--navy-900); overflow: hidden; }
.contact-bio-photo { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center 30%; filter: saturate(0.82) contrast(1.06); }
.contact-bio-text { padding: 24px 28px; }
.contact-bio-text strong { display: block; font-family: var(--font-serif); font-size: 22px; color: var(--white); margin-bottom: 4px; }
.contact-bio-text span { display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-bottom: 12px; }
.contact-bio-text p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0; }
.contact-info-block { display: flex; flex-direction: column; gap: 20px; padding: 24px 0; border-top: 1px solid var(--hairline); margin-top: 24px; }
.contact-info-row { display: grid; grid-template-columns: 96px 1fr; gap: 12px; font-size: 15px; align-items: start; }
.contact-info-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ink-500); padding-top: 2px; }
.contact-info-row span { color: var(--ink-700); line-height: 1.55; }
.contact-info-row a { color: var(--navy-800); border-bottom: 1px solid var(--hairline); transition: color 0.2s; }
.contact-info-row a:hover { color: var(--navy-900); }
.contact-intake-prompt { padding: 20px; background: var(--paper-2); border: 1px solid var(--hairline); }
.contact-intake-prompt .kicker { display: block; margin-bottom: 8px; }
.contact-form-wrap { display: flex; flex-direction: column; }

/* ── INTAKE PAGE ────────────────────────────────────────────── */
.intake-layout { display: grid; grid-template-columns: 1fr; min-height: calc(100vh - 80px); }
@media (min-width: 960px) { .intake-layout { grid-template-columns: 380px 1fr; } }
@media (min-width: 1200px) { .intake-layout { grid-template-columns: 440px 1fr; } }
.intake-aside { background: var(--navy-900); color: var(--paper); position: relative; }
.intake-aside-inner { position: sticky; top: 80px; padding: 64px 40px; display: flex; flex-direction: column; gap: 32px; max-height: calc(100vh - 80px); overflow-y: auto; }
@media (max-width: 959px) { .intake-aside { display: none; } }
.intake-aside-brand { background: #fff; border-radius: 8px; padding: 10px 14px; display: inline-flex; align-self: flex-start; }
.intake-aside-brand img { height: 56px; width: auto; display: block; }
.intake-aside-quote { font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.5; color: rgba(255,255,255,0.88); border-left: 3px solid var(--accent); padding-left: 20px; }
.intake-aside-quote p { margin: 0 0 12px; }
.intake-aside-quote footer { font-family: var(--font-sans); font-style: normal; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }
.intake-aside-points { display: flex; flex-direction: column; gap: 20px; }
.intake-aside-point { display: flex; gap: 14px; }
.intake-aside-point strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.intake-aside-point p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 0; }
.intake-aside-check { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--navy-900); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.intake-aside-footer { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.intake-aside-footer a { color: var(--gold-200); }
.intake-form-wrap { padding: 56px 40px; background: var(--paper); }
@media (max-width: 720px) { .intake-form-wrap { padding: 40px 20px; } }
.intake-form-head { margin-bottom: 48px; }
.intake-form-head h1 { font-size: clamp(32px, 5vw, 56px); margin-top: 16px; }
.intake-section { padding: 40px 0; border-top: 1px solid var(--hairline); }
.intake-section:first-of-type { border-top: none; padding-top: 0; }
.intake-section-title { font-size: clamp(18px, 2.2vw, 24px); margin-bottom: 28px; display: flex; align-items: center; gap: 16px; }
.intake-section-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); font-weight: 500; flex-shrink: 0; }
.intake-submit { margin-top: 16px; font-size: 15px; padding: 18px 32px; width: 100%; justify-content: center; }
.form-chip-group { display: flex; flex-direction: column; gap: 12px; }
.form-chip-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--ink-500); }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--ink-300);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.chip:hover { border-color: var(--navy-800); color: var(--navy-800); }
.chip.selected, .chip[aria-pressed="true"] {
  background: var(--navy-800);
  color: var(--gold-200);
  border-color: var(--navy-800);
}

/* ── CITY LANDING PAGES ─────────────────────────────────────── */
.city-intro-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .city-intro-grid { grid-template-columns: 1.2fr 0.8fr; gap: 64px; }
}
.city-intro-body h2 { margin-bottom: 20px; }
.city-intro-body p { margin-bottom: 16px; color: var(--ink-700); }
.city-quick-facts {
  background: var(--navy-900);
  border-radius: 12px;
  padding: 32px 28px;
  color: var(--paper);
  align-self: start;
}
.city-quick-facts .kicker { color: var(--gold-400); margin-bottom: 20px; display: block; }
.city-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.city-facts-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-200);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.city-facts-list li strong {
  display: block;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.city-employer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .city-employer-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .city-employer-grid { grid-template-columns: 1fr; }
}
.city-employer-card {
  background: var(--paper-2);
  border-radius: 8px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
}
.city-employer-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
  line-height: 1.3;
}
.city-employer-card span {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}

.city-services-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .city-services-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.city-service-item { display: flex; gap: 20px; align-items: flex-start; }
.city-service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 28px;
  padding-top: 6px;
}
.city-service-body h3 { font-size: clamp(18px, 2vw, 22px); margin-bottom: 10px; }
.city-service-body p { font-size: 15px; color: var(--ink-500); line-height: 1.6; margin-bottom: 12px; }

.city-stat-bar { background: var(--navy-900); padding: 64px 0; }
.city-stat-bar-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.city-stat { text-align: center; flex: 1; min-width: 140px; }
.city-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1.2;
}
.city-stat-label {
  font-size: 12px;
  color: var(--navy-200);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: var(--font-sans);
  line-height: 1.4;
}

.city-form-wrap { max-width: 680px; margin: 0 auto; }
.city-form-head { text-align: center; margin-bottom: 36px; }
.city-form-head .eyebrow { display: block; margin-bottom: 8px; }
.city-form-head h2 { color: var(--paper); margin-bottom: 12px; }
.city-form-head p { color: var(--navy-200); font-size: 15px; max-width: 480px; margin: 0 auto; }
.city-form-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 600px) { .city-form-card { padding: 28px 20px; } }

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  .site-header, .utility-bar, .menu-overlay, .hero-canvas, .hero-video, footer { display: none; }
  body { background: white; color: black; }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── SCROLL REVEAL (JS-driven; only applied to below-the-fold
   elements, so above-the-fold content never flashes. The hidden
   state is gated on no-preference so reduced-motion users always
   see content immediately.) ─────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal-init {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--reveal-i, 0) * 90ms);
  }
  .reveal-init.reveal-in {
    opacity: 1;
    transform: none;
  }
}

/* ── TOUCH TARGETS ──────────────────────────────────────────────
   On touch devices (phones/tablets) or narrow viewports, bump small
   interactive controls to a comfortable ~44px minimum and center
   their label. The width clause is a fallback for when touch/pointer
   detection is unavailable; desktop mouse users at wide widths keep
   the compact size. */
@media (pointer: coarse), (max-width: 899px) {
  .chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
