/* ==========================================================================
   WayFind Urgent Care — design tokens
   ========================================================================== */
:root {
  --cream: #FBF9F4;
  --cream-2: #F3EFE6;
  --cream-3: #F0EAD9;
  --tan-line: #E2DCCF;

  --navy: #0E2432;
  --navy-2: #17323F;
  --navy-3: #25404D;

  --blue: #125E8A;
  --blue-light: #92B3C4;

  --white: #FFFFFF;

  --ink: #0E2432;
  --text-body: #3C4C56;
  --text-muted: #52646F;
  --text-faint: #8C9298;

  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: Archivo, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --max: 1200px;
  --gutter: 32px;
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
section.on-dark .eyebrow { color: var(--blue-light); }

h2.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  color: var(--ink);
  margin-top: 10px;
}
section.on-dark h2.section-title { color: var(--white); }

.section-pad { padding: 96px 0; }
@media (max-width: 780px) { .section-pad { padding: 56px 0; } }

.on-dark { background: var(--navy); color: #C9D4DA; }
.bg-cream-2 { background: var(--cream-2); }

.hairline { border-top: 1px solid var(--tan-line); }
.on-dark .hairline { border-top: 1px solid var(--navy-3); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: opacity .15s ease, background-color .15s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { opacity: 0.9; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { opacity: 0.9; }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--cream-2); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--tan-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand img { height: 30px; width: auto; }
.brand .brand-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 15px;
  color: var(--ink);
}
.main-nav a.nav-patients {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 3px;
}
.header-actions { display: flex; align-items: center; gap: 28px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--tan-line);
    padding: 8px var(--gutter) 20px;
  }
  body.nav-open .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--tan-line);
  }
  body.nav-open .header-actions .btn {
    display: inline-flex;
    margin: 14px var(--gutter) 0;
  }
  body.nav-open .header-actions { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 72px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  color: var(--ink);
  margin: 14px 0 22px;
}
.hero h1 .accent { color: var(--blue); display: block; }

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.stat-panel {
  background: var(--white);
  border-top: 4px solid var(--blue);
  padding: 28px 30px 22px;
}
.stat-panel .eyebrow { display: block; margin-bottom: 20px; }
.stat-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--tan-line);
}
.stat-row:first-of-type { border-top: none; padding-top: 0; }
.stat-row .big-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  color: var(--ink);
  white-space: nowrap;
}
.stat-row .stat-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.45; }
.stat-panel .fine-print {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 18px;
  line-height: 1.5;
}

.hero-photo-band { margin-top: 64px; }

/* ==========================================================================
   Placeholder blocks (stand-ins for real photography/media)
   ========================================================================== */
.placeholder {
  background-image: repeating-linear-gradient(45deg, var(--cream-3) 0, var(--cream-3) 10px, var(--cream-2) 10px, var(--cream-2) 20px);
  border: 1px solid var(--tan-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-faint);
}
.placeholder .placeholder-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(251, 249, 244, 0.88);
  padding: 6px 12px;
}
.placeholder .placeholder-sub {
  display: block;
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.placeholder-hero { height: 340px; }

.hero-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border: 1px solid var(--tan-line);
}
@media (max-width: 640px) { .hero-photo { height: 220px; } }
.placeholder-square { aspect-ratio: 1 / 1; }
.placeholder-headshot { aspect-ratio: 4 / 5; }
.placeholder-clinic { aspect-ratio: 4 / 3; }
.placeholder-video { aspect-ratio: 16 / 9; background-color: var(--navy-2); border-color: var(--navy-3); }
.on-dark .placeholder-video .placeholder-label { background: rgba(23, 50, 63, 0.9); color: #C9D4DA; }

/* ==========================================================================
   Two-column intro (label + heading | body copy) pattern
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
}
.intro-grid .lede-copy p + p { margin-top: 16px; }
.intro-grid .lede-copy p { font-size: 16.5px; color: var(--text-body); }
.on-dark .intro-grid .lede-copy p { color: #C9D4DA; }

/* ==========================================================================
   Stat card row (e.g. ~$155 / 8a-8p / CT+MRI)
   ========================================================================== */
.stat-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  background: var(--cream-2);
  border: 1px solid var(--tan-line);
}
.stat-card-row .stat-card { padding: 26px 24px; border-left: 1px solid var(--tan-line); }
.stat-card-row .stat-card:first-child { border-left: none; }
.stat-card .stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--blue);
}
.stat-card .stat-label { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }
@media (max-width: 700px) {
  .stat-card-row { grid-template-columns: 1fr; }
  .stat-card-row .stat-card { border-left: none; border-top: 1px solid var(--tan-line); }
  .stat-card-row .stat-card:first-child { border-top: none; }
}

/* ==========================================================================
   Conversion / callout band (11% -> 40%)
   ========================================================================== */
.callout-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 28px;
  background: var(--navy-2);
  border-left: 3px solid var(--blue);
}
.callout-band .conversion { display: flex; align-items: baseline; gap: 14px; }
.callout-band .conversion .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
}
.callout-band .conversion .num.to { color: var(--blue-light); }
.callout-band .conversion .arrow { color: var(--text-faint); font-size: 20px; }
.callout-band p { font-size: 14px; color: #C9D4DA; }
@media (max-width: 640px) {
  .callout-band { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Three-engine columns
   ========================================================================== */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
.engine-card {
  padding: 28px 28px 0;
  border-top: 1px solid var(--navy-3);
  border-left: 1px solid var(--navy-3);
}
.engine-card:first-child { border-left: none; }
.engine-card .engine-num { font-family: var(--font-mono); font-size: 13px; color: var(--text-faint); }
.engine-card .engine-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin: 14px 0 10px;
}
.engine-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
}
.engine-card p { font-size: 14.5px; color: #AEBBC2; margin-top: 12px; padding-bottom: 28px; }
@media (max-width: 780px) {
  .engine-grid { grid-template-columns: 1fr; }
  .engine-card { border-left: none; }
}

/* ==========================================================================
   AI layer grid (6 cards)
   ========================================================================== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--tan-line);
  border: 1px solid var(--tan-line);
}
.ai-card { background: var(--white); padding: 26px 26px 30px; }
.ai-card .ai-num { font-family: var(--font-mono); font-size: 12px; color: var(--blue); }
.ai-card h3 { font-family: var(--font-serif); font-size: 19px; color: var(--ink); margin-top: 12px; font-weight: 700; }
.ai-card p { font-size: 14px; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 900px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ai-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Financial table
   ========================================================================== */
.table-wrap { margin-top: 40px; overflow-x: auto; border: 1px solid var(--tan-line); }
table.fin-table { width: 100%; border-collapse: collapse; min-width: 720px; font-family: var(--font-mono); }
table.fin-table thead tr { background: var(--navy); color: var(--white); }
table.fin-table th, table.fin-table td {
  padding: 14px 18px;
  text-align: right;
  font-size: 13.5px;
  white-space: nowrap;
}
table.fin-table th:first-child, table.fin-table td:first-child {
  text-align: left;
  font-family: var(--font-sans);
}
table.fin-table thead th:first-child { font-family: var(--font-mono); }
table.fin-table tbody th {
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
}
table.fin-table tbody tr { background: var(--cream); border-top: 1px solid var(--tan-line); }
table.fin-table td { color: var(--text-body); }
table.fin-table td.neg { color: var(--text-faint); font-style: italic; }
table.fin-table th.last, table.fin-table td.last { font-weight: 700; color: var(--ink); }

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border: 1px solid var(--tan-line);
}
.metric-card { padding: 24px 24px 26px; border-left: 1px solid var(--tan-line); border-top: 3px solid var(--blue); }
.metric-card:first-child { border-left: none; }
.metric-card .metric-big {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin-top: 10px;
}
.metric-card p { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 860px) {
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-card:nth-child(3) { border-left: none; }
  .metric-card:nth-child(3), .metric-card:nth-child(4) { border-top: 3px solid var(--blue); }
}
@media (max-width: 520px) {
  .metric-row { grid-template-columns: 1fr; }
  .metric-card { border-left: none !important; }
}

/* ==========================================================================
   The Ask
   ========================================================================== */
.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  margin-top: 40px;
  border: 1px solid var(--tan-line);
}
.ask-left { background: var(--cream-2); padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.ask-left .ask-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 52px;
  color: var(--ink);
  margin: 12px 0 18px;
}
.ask-left p { font-size: 15px; color: var(--text-body); max-width: 380px; }
.ask-right { background: var(--white); padding: 40px 40px 44px; }
.fund-row { margin-top: 22px; }
.fund-row:first-child { margin-top: 0; }
.fund-row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fund-row-head .fund-label { font-weight: 700; color: var(--ink); font-size: 15px; }
.fund-row-head .fund-amt { font-family: var(--font-serif); font-weight: 700; color: var(--blue); font-size: 17px; }
.fund-bar { height: 6px; background: var(--cream-3); margin-top: 10px; }
.fund-bar-fill { height: 100%; background: var(--blue); }
.fund-row p.fund-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
@media (max-width: 780px) { .ask-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Market cards (2x2)
   ========================================================================== */
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 4px; }
.market-card { padding: 26px 0; border-top: 1px solid var(--tan-line); }
.market-card:nth-child(odd) { padding-right: 32px; }
.market-card:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--tan-line); }
.market-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.market-card p { font-size: 14.5px; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 700px) {
  .market-grid { grid-template-columns: 1fr; }
  .market-card:nth-child(even) { padding-left: 0; border-left: none; }
  .market-card:nth-child(odd) { padding-right: 0; }
}

/* ==========================================================================
   Team
   ========================================================================== */
.lead-bio {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  margin-top: 44px;
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 32px;
}
.lead-bio .placeholder-headshot { width: 100%; }
.lead-bio .eyebrow { display: block; }
.lead-bio h3 { font-family: var(--font-serif); font-size: 26px; color: var(--ink); margin-top: 10px; }
.lead-bio .cred { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.lead-bio .lead-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin: 22px 0 20px;
}
.lead-bio .lead-stats .num { font-family: var(--font-serif); font-weight: 700; font-size: 24px; color: var(--blue); }
.lead-bio .lead-stats .lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 4px; }
.lead-bio ul.achievements { margin-top: 4px; }
.lead-bio ul.achievements li {
  font-size: 14.5px;
  color: var(--text-body);
  padding: 10px 0;
  border-top: 1px solid var(--tan-line);
}
.lead-bio ul.achievements li:first-child { border-top: none; }
.lead-bio .source-line {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 18px;
}
@media (max-width: 700px) {
  .lead-bio { grid-template-columns: 1fr; padding-left: 20px; }
  .lead-bio .placeholder-headshot { max-width: 200px; }
  .lead-bio .lead-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.exec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.exec-card { background: var(--white); border: 1px solid var(--tan-line); }
.exec-card .placeholder-square { width: 100%; }
.exec-card .exec-body { padding: 20px 22px 24px; }
.exec-card h4 { font-family: var(--font-serif); font-size: 18px; color: var(--ink); font-weight: 700; }
.exec-card .exec-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--blue); margin-top: 4px; text-transform: uppercase; }
.exec-card p.bio { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 900px) { .exec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .exec-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Staffing banner
   ========================================================================== */
.staffing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.staffing-grid h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: var(--white); margin-top: 10px; line-height: 1.2; }
.staffing-grid > div:first-child p { font-size: 15.5px; color: #C9D4DA; margin-top: 16px; }
.staff-stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--navy-3); }
.staff-stat { padding: 26px; border-left: 1px solid var(--navy-3); border-top: 1px solid var(--navy-3); }
.staff-stat:nth-child(1), .staff-stat:nth-child(2) { border-top: none; }
.staff-stat:nth-child(odd) { border-left: none; }
.staff-stat .num { font-family: var(--font-serif); font-weight: 700; font-size: 26px; color: var(--blue-light); }
.staff-stat p { font-size: 13.5px; color: #AEBBC2; margin-top: 8px; }
@media (max-width: 780px) { .staffing-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   Locations
   ========================================================================== */
.section-subhead { font-size: 14px; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.clinic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.clinic-card { background: var(--white); border: 1px solid var(--tan-line); }
.clinic-card .placeholder-clinic { width: 100%; }
.clinic-body { padding: 18px 20px 22px; }
.clinic-body h3 { font-family: var(--font-serif); font-size: 17px; color: var(--ink); font-weight: 700; }
.clinic-body .addr { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.clinic-body .hours { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; color: var(--blue); margin-top: 10px; text-transform: uppercase; }
.clinic-body .services { font-size: 12.5px; color: var(--text-faint); margin-top: 8px; }
@media (max-width: 900px) { .clinic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .clinic-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Media section
   ========================================================================== */
.media-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; margin-top: 44px; }
.video-feature .video-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-faint); text-transform: uppercase; margin-bottom: 10px; }
.video-feature .placeholder-video { position: relative; }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.video-feature h3 { font-family: var(--font-serif); font-size: 20px; color: var(--white); margin-top: 18px; font-weight: 700; }
.video-feature p { font-size: 14px; color: #AEBBC2; margin-top: 8px; }

.radio-block .radio-slot {
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  padding: 22px;
  text-align: center;
}
.radio-block .radio-slot .placeholder-label { color: #C9D4DA; }
.episode-list { margin-top: 18px; }
.episode-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-top: 1px solid var(--navy-3);
  font-size: 14px; color: #C9D4DA;
}
.episode-row:first-child { border-top: none; }
.episode-row .ep-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); white-space: nowrap; padding-left: 14px; }
.subscribe-line { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--blue-light); margin-top: 18px; text-transform: uppercase; }

.archive-heading { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--blue-light); text-transform: uppercase; margin-top: 56px; }
.archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 18px; }
.archive-card .placeholder-clinic { background-color: var(--navy-2); border-color: var(--navy-3); }
.archive-card .archive-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); margin-top: 10px; }

.press-heading { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--blue-light); text-transform: uppercase; margin-top: 56px; }
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 18px; }
.press-card { border-top: 1px solid var(--navy-3); padding-top: 16px; }
.press-card .press-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--blue-light); text-transform: uppercase; }
.press-card p { font-size: 13.5px; color: #C9D4DA; margin-top: 8px; }
@media (max-width: 900px) { .media-top { grid-template-columns: 1fr; } .archive-grid, .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .archive-grid, .press-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Data room / request access
   ========================================================================== */
.dataroom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 40px; }
.dataroom-left ul { margin-top: 20px; }
.dataroom-left li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 15px;
  color: var(--text-body);
}
.dataroom-left li::before {
  content: "";
  position: absolute;
  left: 0; top: 17px;
  width: 8px; height: 8px;
  background: var(--blue);
}
.dataroom-form { background: var(--white); border: 1px solid var(--tan-line); padding: 36px 36px 40px; }
.field { margin-top: 18px; }
.field:first-child { margin-top: 0; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--tan-line);
  background: var(--cream-2);
  padding: 13px 14px;
  font-size: 15px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--blue); outline-offset: -1px; background: var(--white); }
.field textarea { resize: vertical; min-height: 90px; }
.dataroom-form .btn { margin-top: 24px; }
.form-note { font-size: 13px; color: var(--blue); margin-top: 14px; display: none; }
.form-note.visible { display: block; }
@media (max-width: 780px) { .dataroom-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #AEBBC2; padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-brand .tagline { font-size: 14px; color: #AEBBC2; margin-top: 16px; }
.footer-col .footer-heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--blue-light); text-transform: uppercase; }
.footer-col ul { margin-top: 14px; }
.footer-col li { padding: 7px 0; font-size: 14.5px; }
.footer-col a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid var(--navy-3);
  padding: 26px 0 34px;
  font-size: 12px;
  line-height: 1.6;
  color: #6F818A;
}
@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Section header helper (eyebrow + title, standalone)
   ========================================================================== */
.section-head { max-width: 640px; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head-row .table-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
