/* ═══════════════════════════════════════════
   F10 PSYCHIATRY — HYBRID (C) DESIGN SYSTEM
   Editorial restraint + system signals
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::selection { background: rgba(184,149,74,0.20); color: #0A0F1A; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px; font-weight: 400; line-height: 1.65;
  color: #334155; background: #fff;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --primary: #0A0F1A;
  --primary-95: rgba(10,15,26,0.95);
  --gold: #B8954A;
  --gold-dark-bg: #D4AC5E;
  --gold-soft: rgba(184,149,74,0.10);
  --body: #334155; --muted: #6B7280; --sub: #94A3B8;
  --light: #FAFAF7; --warm: #F4F1EA; --white: #FFFFFF;
  --border: #E6E2D8;
  --line-dark: rgba(255,255,255,0.10);
  --emerald: #4A9D5F;
  --nav-h: 66px;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ═══════════ TYPE ═══════════ */
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.015em;
  line-height: 1.12;
}
h1 { font-size: clamp(44px, 6vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; color: var(--primary);
  line-height: 1.25; letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px; font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .num { color: var(--gold); font-weight: 500; }
.eyebrow .sep { color: #C7BFAB; }

/* ═══════════ STATUS PILL ═══════════ */
.status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 10px;
  background: rgba(74,157,95,0.06);
  border: 1px solid rgba(74,157,95,0.22);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.04em;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,157,95,0.14);
}
.status--dark {
  background: rgba(74,222,128,0.06);
  border-color: rgba(74,222,128,0.22);
  color: rgba(255,255,255,0.85);
}
.status--dark::before {
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.16);
}
.status .sep { color: rgba(255,255,255,0.25); }

/* ═══════════ CTA ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 14px;
  padding: 13px 24px;
  border-radius: 4px;
  border: none; cursor: pointer;
  letter-spacing: -0.005em;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn:hover { background: #9D7D3C; transform: translateY(-1px); }
.btn--lg { font-size: 15px; padding: 15px 28px; }
.btn .arrow { font-family: var(--mono); font-size: 13px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border: 1px solid var(--line-dark);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn--ghost-light {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn--ghost-light:hover { background: var(--warm); transform: translateY(-1px); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,15,26,0.96);
  border-bottom: 1px solid rgba(184,149,74,0.12);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 40px);
}
.nav-logo svg { height: 24px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-links .btn { padding: 9px 18px; font-size: 13px; color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }

.skip-nav {
  position: absolute; top: -100%; left: 16px; z-index: 200;
  background: var(--gold); color: #fff; padding: 12px 24px;
  font-weight: 600; font-size: 14px; border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }
#main { scroll-margin-top: var(--nav-h); }

/* ═══════════ SECTION SCAFFOLD ═══════════ */
.s {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 4vw, 56px);
  position: relative;
}
.s-inner { max-width: 1140px; margin: 0 auto; }
.s--light { background: var(--light); }
.s--white { background: var(--white); }
.s--warm { background: var(--warm); }
.s--dark { background: var(--primary); color: #F5EFE0; }

.s-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
}
.s-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: #A39A82;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.s-head--dark .meta { color: rgba(255,255,255,0.40); }

/* ═══════════ HERO ═══════════ */
.hero {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 100px)) clamp(24px, 4vw, 56px) clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(184,149,74,0.06) 0%, transparent 60%),
    var(--primary);
  border-bottom: 1px solid rgba(184,149,74,0.12);
}

/* Staggered entrance — direct children of .hero-inner fade in sequence */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(12px); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: none; }
}
.hero-inner > * {
  opacity: 0;
  animation: heroFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 60ms; }
.hero-inner > *:nth-child(2) { animation-delay: 180ms; }
.hero-inner > *:nth-child(3) { animation-delay: 300ms; }
.hero-inner > *:nth-child(4) { animation-delay: 420ms; }
.hero-inner > *:nth-child(5) { animation-delay: 540ms; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { opacity: 1; animation: none; filter: none; transform: none; }
}
.hero--tall {
  padding-top: calc(var(--nav-h) + clamp(80px, 9vw, 120px));
  padding-bottom: clamp(80px, 10vw, 120px);
}
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 2; }

.hero-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-wrap: wrap;
}
.hero-meta-row .right { display: inline-flex; align-items: center; gap: 12px; }
.hero-meta-row .right .sep { color: rgba(255,255,255,0.18); }

.hero h1 {
  color: #F5EFE0;
  margin-bottom: 28px;
  max-width: 880px;
  font-weight: 400;
  line-height: 1.18;
  padding-bottom: 0.1em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dark-bg);
  font-weight: 400;
}
.hero-sub {
  max-width: 580px;
  color: rgba(245,239,224,0.62);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta-row .reassure {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
  margin-left: 6px;
  white-space: nowrap;
}

/* ═══════════ SPEC STRIP (4-col data row) ═══════════ */
.spec-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184,149,74,0.18);
  padding-top: 24px;
}
.spec {
  padding: 4px 24px 4px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 8px;
}
.spec:last-child { border-right: 0; }
.spec-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spec-value {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: #F5EFE0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
/* Light-bg variant */
.spec-strip--light {
  border-top: 1px solid var(--border);
}
.spec-strip--light .spec { border-right-color: var(--border); }
.spec-strip--light .spec-label { color: #A39A82; }
.spec-strip--light .spec-value { color: var(--primary); }

/* ═══════════ CALLOUT (the big sentence) ═══════════ */
.callout-section {
  background: var(--warm);
  padding: clamp(80px, 11vw, 140px) clamp(24px, 4vw, 56px);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.callout-rule {
  width: 32px; height: 1px; background: var(--gold);
  margin: 0 auto 40px; opacity: 0.8;
}
.callout {
  max-width: 880px; margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--primary);
}
.callout em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════ READING BLOCKS ═══════════ */
.prose { max-width: 720px; }
.prose p {
  font-size: 18px; line-height: 1.75;
  color: #475569;
}
.prose p + p { margin-top: 22px; }
.prose p strong, .prose p b { color: var(--primary); font-weight: 600; }
.prose em { font-style: italic; color: var(--primary); }

/* ═══════════ DATA TABLES (conditions / FAQ list etc.) ═══════════ */
.data-table {
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.data-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 60px;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.data-row:hover { background: rgba(184,149,74,0.04); }
.data-row:hover .row-arrow { color: var(--gold); transform: translateX(4px); }

/* Tier subhead row inside a data-table */
.data-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 28px 4px 12px;
  border-bottom: 1px solid var(--border);
  background: none;
}
.data-tier:first-child { padding-top: 16px; }
.data-tier-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.data-tier-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.row-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.015em;
}
.row-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.row-arrow {
  font-family: var(--mono);
  font-size: 13px;
  color: #C7BFAB;
  text-align: right;
  transition: color 0.2s, transform 0.2s;
}
.data-row.is-primary .row-name::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.data-row.is-primary .row-arrow { color: var(--gold); }

/* ═══════════ STEP GRID (How It Works) ═══════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
}
.step-card:last-child { border-right: 0; }
.step-id {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.step-id::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.step-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.step-desc {
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
}
.step-duration {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: #A39A82;
  letter-spacing: 0.06em;
}

/* ═══════════ KEY-VALUE RAIL (4-col, for credentials/contact) ═══════════ */
.rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rail-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.rail-cell:last-child { border-right: 0; }
.rail-key {
  font-family: var(--mono);
  font-size: 10px;
  color: #A39A82;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rail-val {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.rail-val a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.rail-val a:hover { border-bottom-color: var(--gold); }
.rail-val .sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: 0;
}
.rail--two { grid-template-columns: repeat(2, 1fr); }
.rail--three { grid-template-columns: repeat(3, 1fr); }

/* ═══════════ FAQ ═══════════ */
.faq {
  max-width: 880px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none; border: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
  padding: 24px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  letter-spacing: -0.012em;
  transition: color 0.2s;
  line-height: 1.35;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 11px; height: 1px; }
.faq-icon::after { width: 1px; height: 11px; transition: transform 0.3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16,1,0.3,1);
}
.faq-a-inner {
  overflow: hidden;
  font-size: 16px; line-height: 1.75;
  color: #475569;
  padding-right: 40px;
}
.faq-a-inner-pad { padding: 4px 40px 28px 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ═══════════ PULL QUOTE ═══════════ */
.pull {
  margin: 48px 0;
  padding: 36px 0 36px 32px;
  position: relative;
  max-width: 720px;
}
.pull::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--gold);
}
.pull p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--primary);
  line-height: 1.35;
  letter-spacing: -0.012em;
}
.pull-attr {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════ FORCE 10 / BEAUFORT MOMENT ═══════════ */
.force10 {
  background: var(--primary);
  color: #F5EFE0;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,149,74,0.12);
  border-bottom: 1px solid rgba(184,149,74,0.12);
}
.force10::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 100%;
  background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(184,149,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.force10-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.force10-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-dark-bg);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 14px;
}
.force10-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-dark-bg);
  opacity: 0.6;
}
.force10-display {
  font-family: var(--serif);
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold-dark-bg);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.force10-display .label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,239,224,0.65);
  letter-spacing: 0.18em;
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
}
.force10-body {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: rgba(245,239,224,0.82);
  letter-spacing: -0.012em;
  font-weight: 400;
}
.force10-body em {
  font-style: italic;
  color: var(--gold-dark-bg);
  font-weight: 500;
}
.force10-body p + p { margin-top: 18px; }

/* Beaufort scale visual (vertical) */
.beaufort-scale {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.beaufort-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.beaufort-label {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(245,239,224,0.55);
  letter-spacing: 0.04em;
  text-align: right;
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 110px;
}
.beaufort-bar {
  height: 1px;
  background: rgba(245,239,224,0.20);
  justify-self: end;
}
.beaufort-row.is-force10 .beaufort-bar {
  height: 3px;
  background: var(--gold-dark-bg);
  box-shadow: 0 0 16px rgba(212,172,94,0.35);
}
.beaufort-row.is-force10 .beaufort-label {
  color: var(--gold-dark-bg);
  font-weight: 500;
}
.beaufort-row.is-force10 .beaufort-name {
  color: var(--gold-dark-bg);
}
.beaufort-name {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  color: rgba(245,239,224,0.30);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.2;
}

@media (max-width: 880px) {
  .force10-inner { grid-template-columns: 1fr; gap: 40px; }
  .beaufort-scale { max-width: 480px; margin: 0 auto; width: 100%; }
}
.cta-banner {
  background: var(--primary);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 4vw, 56px);
  text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(184,149,74,0.12);
}
.cta-banner h2 {
  color: #F5EFE0;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-dark-bg); font-weight: 400; }
.cta-banner p {
  color: rgba(245,239,224,0.55);
  max-width: 520px; margin: 0 auto 36px;
  font-size: 16px; line-height: 1.7;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--primary);
  padding: 56px clamp(24px, 4vw, 56px) 32px;
  position: relative;
  border-top: 1px solid rgba(184,149,74,0.08);
}
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo { margin-bottom: 14px; height: 24px; width: auto; display: block; }
.footer-brand p {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.footer-col-head {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-dark-bg); }
.footer-bottom {
  max-width: 1140px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.footer-bottom .legal { max-width: 720px; }
.footer-bottom .crisis-line {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: rgba(245,239,224,0.72);
  text-transform: none;
  letter-spacing: 0.02em;
}
.footer-bottom .crisis-line strong { color: var(--gold-dark-bg); font-weight: 500; }

/* ═══════════ SCROLL PROGRESS HAIRLINE ═══════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 1.5px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
  will-change: transform;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .spec-strip, .steps-grid, .rail { grid-template-columns: 1fr 1fr; }
  .spec, .step-card, .rail-cell { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .spec-strip .spec, .hero .spec { border-right-color: rgba(255,255,255,0.06); border-bottom-color: rgba(255,255,255,0.06); }
  .data-row { grid-template-columns: 1fr 1fr 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--primary-95); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 0 28px; gap: 0;
    border-top: 1px solid rgba(184,149,74,0.10);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.35s, opacity 0.25s, padding 0.35s, gap 0.25s;
  }
  .nav-links.active { max-height: 360px; opacity: 1; padding: 24px 28px; gap: 18px; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-links .btn { margin-top: 6px; }
  .spec-strip, .steps-grid, .rail { grid-template-columns: 1fr; }
  .spec, .step-card, .rail-cell { border-right: 0; }
  .data-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 4px; }
  .row-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Mobile-specific hero adjustments */
  .status {
    font-size: 10px;
    padding: 5px 10px 5px 9px;
    letter-spacing: 0.02em;
  }
  .hero-meta-row { gap: 14px; margin-bottom: 32px; font-size: 10px; }
  .hero-meta-row .right { display: none; }
  .hero-cta-row { gap: 12px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-cta-row .reassure { display: none; }
  .spec-strip { margin-top: 36px; }
  .s-head { margin-bottom: 32px; }
  .s-head .meta { font-size: 10px; }
  .footer-bottom { font-size: 10px; gap: 20px; }
  .footer-bottom .crisis-line { font-size: 11px; }
}


/* ═══════════ VISIT TIMELINE ═══════════ */
.visit-timeline {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.visit-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.visit-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 500;
  display: flex; flex-direction: column; gap: 4px;
}
.visit-tag .duration {
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.visit-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--primary);
  letter-spacing: -0.005em;
  font-weight: 400;
}
.visit-body em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 760px) {
  .visit-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 4px; }
  .visit-tag { flex-direction: row; align-items: baseline; gap: 12px; }
  .visit-body { font-size: 16px; }
}

/* ═══════════ ELSEWHERE / FIT-CHECK ═══════════ */
.elsewhere {
  margin-top: 56px;
  padding: 32px 28px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  max-width: 720px;
}
.elsewhere-head {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.elsewhere-head::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.elsewhere-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.008em;
  line-height: 1.45;
}
.elsewhere-list {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.elsewhere-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.elsewhere-item:last-child { border-bottom: 0; }
.elsewhere-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--primary);
}
.elsewhere-where {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.elsewhere-where .arrow {
  color: var(--gold);
  margin-right: 8px;
}
.elsewhere-foot {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}
.elsewhere-foot a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.elsewhere-foot a:hover { border-bottom-color: var(--gold); }
@media (max-width: 640px) {
  .elsewhere-item { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .elsewhere-where { white-space: normal; }
}


/* ═══════════ TRUST SEAL ROW (footer) ═══════════ */
.trust-row {
  max-width: 1140px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-row-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sx-verified-seal {
  display: inline-block;
  min-height: 56px;
  min-width: 80px;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .trust-row { justify-content: center; }
}


/* ═══════════ WORKPLACES / PATIENT CONTEXTS ═══════════ */
.workplaces-section .prose { margin-bottom: 32px; }
.workplaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workplace {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.015em;
  transition: background 0.25s;
}
.workplace:last-child { border-right: 0; }
.workplace:hover { background: rgba(184,149,74,0.04); }
.workplaces-foot {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}
@media (max-width: 760px) {
  .workplaces-grid { grid-template-columns: 1fr 1fr; }
  .workplace { padding: 32px 20px; border-bottom: 1px solid var(--border); }
  .workplace:nth-child(odd) { border-right: 1px solid var(--border); }
  .workplace:nth-child(even) { border-right: 0; }
  .workplace:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .workplaces-grid { grid-template-columns: 1fr; }
  .workplace { border-right: 0 !important; padding: 24px 16px; }
  .workplace:not(:last-child) { border-bottom: 1px solid var(--border); }
}


/* ═══════════ CONTACT FORM ═══════════ */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 720px;
}
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label {
  display: flex; flex-direction: column;
  gap: 6px;
}
.contact-form .label-text {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-form .label-text .opt {
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.06em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,74,0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B8954A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form .form-actions {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.contact-form .form-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.contact-form button[type=submit] {
  cursor: pointer;
}
.form-status {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding: 12px 14px;
  background: rgba(184,149,74,0.06);
  border: 1px solid rgba(184,149,74,0.2);
  border-radius: 4px;
  display: none;
}
.form-status.success { display: block; color: #4A9D5F; background: rgba(74,157,95,0.06); border-color: rgba(74,157,95,0.22); }
.form-status.error { display: block; color: #B8954A; }

@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
}


/* ═══════════ COOKIE BANNER ═══════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 540px;
  background: var(--primary);
  color: #F5EFE0;
  border: 1px solid rgba(184,149,74,0.30);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
  z-index: 150;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: none; opacity: 1; pointer-events: auto;
}
.cookie-banner-head {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold-dark-bg);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cookie-banner p {
  color: rgba(245,239,224,0.78);
  margin-bottom: 18px;
}
.cookie-banner p a {
  color: var(--gold-dark-bg);
  border-bottom: 1px solid var(--gold-dark-bg);
}
.cookie-banner-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-banner-actions button {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(184,149,74,0.3);
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background 0.2s;
}
.cookie-accept { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.cookie-accept:hover { background: var(--gold-dark-bg); }
.cookie-decline { background: transparent; color: rgba(245,239,224,0.85); }
.cookie-decline:hover { background: rgba(255,255,255,0.06); }
@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px; }
}

/* ═══════════ PRINT ═══════════ */
@media print {
  /* Hide chrome and decoration */
  .nav, .scroll-progress, .hero-meta-row, .spec-strip, .beaufort-scale, .cookie-banner,
  .nav-toggle, .skip-nav, .horizon, .hero-cta-row .reassure,
  .footer-bottom .crisis-line { display: none !important; }

  /* Whites everywhere, save ink */
  html, body, .hero, .s, .s--dark, .s--light, .s--warm, .force10,
  .callout-section, .cta-banner, .footer {
    background: #fff !important;
    color: #1a1a1a !important;
    border-color: #ccc !important;
  }
  .hero, .force10 { padding: 24px 0 !important; border: 0 !important; }

  body { font-size: 11pt; line-height: 1.5; color: #1a1a1a; }
  h1 { font-size: 22pt !important; color: #000 !important; margin-bottom: 12pt !important; }
  h2 { font-size: 16pt !important; color: #000 !important; }
  h3 { font-size: 12pt !important; color: #000 !important; }
  .hero h1, .hero h1 em, .force10 *, .cta-banner h2 { color: #000 !important; }
  .hero h1 em, .cta-banner h2 em, .callout em { color: #555 !important; }
  .hero-sub, .cta-banner p, .force10-body { color: #1a1a1a !important; }

  /* Show URLs for tel/mailto/external */
  a[href^="http"]:not([href*="force10psychiatry.com"])::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
    font-size: 90%;
    color: #555;
  }

  .btn, .btn--ghost {
    background: none !important;
    color: #000 !important;
    border: 1px solid #555 !important;
    padding: 4pt 8pt !important;
  }
  .btn .arrow { display: none !important; }

  /* Structure visibility */
  .data-row, .data-tier, .step-card, .rail-cell, .creds-group {
    border-color: #ccc !important;
    page-break-inside: avoid;
  }
  .row-name, .step-title, .rail-val, .cond-name { color: #000 !important; }
  .row-meta, .step-desc, .rail-val .sub, .row-arrow,
  .eyebrow, .data-tier-label, .force10-eyebrow, .spec-label,
  .step-id, .rail-key, .pull-attr {
    color: #555 !important;
  }
  .pull p { color: #000 !important; }
  .pull::before { background: #555 !important; }
  .force10-display { color: #555 !important; font-size: 32pt !important; }
  .force10-display .label { font-size: 9pt !important; color: #555 !important; }
  .callout-rule { background: #555 !important; }
  .callout { color: #000 !important; }

  /* Allow headshot to print */
  .bio-photo-frame img { print-color-adjust: exact; -webkit-print-color-adjust: exact; }

  /* Page break and margins */
  section { page-break-inside: avoid; }
  @page { margin: 0.7in; }
}
