/* ==========================================================================
   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;

  --error: #B3401F;

  --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%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
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, select { font: inherit; }

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

section { position: relative; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
}
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: 88px 0; }
@media (max-width: 780px) { .section-pad { padding: 52px 0; } }

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

.fine-print {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ==========================================================================
   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); }
.on-dark .btn-outline { background: transparent; color: var(--white); border-color: #4C6675; }
.on-dark .btn-outline:hover { background: var(--navy-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;
  gap: 16px;
}
.brand { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.main-nav a { font-size: 14.5px; color: var(--ink); white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.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: 1040px) {
  .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;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    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: 64px 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: 32px; }
}

/* Hero image-placement A/B variant (?heroImage=above). See content.js ->
   heroImagePlacement and README.md for how to preview this. */
.hero-grid.hero-image-above { grid-template-columns: 0.85fr 1.15fr; }
.hero-grid.hero-image-above > :first-child { order: 2; }
.hero-grid.hero-image-above .hero-visual { order: 1; }
@media (max-width: 900px) {
  .hero-grid.hero-image-above { grid-template-columns: 1fr; }
}

.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(38px, 5.6vw, 62px);
  line-height: 1.08;
  color: var(--ink);
  margin: 14px 0 20px;
}
.hero h1 .accent { color: var(--blue); display: block; }

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 560px;
}
.hero-lede + .hero-lede { margin-top: 14px; }

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

/* Abstract hero visual — no photography stands in for a real site */
.hero-visual { display: flex; align-items: stretch; }
.hero-abstract {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--tan-line);
  background:
    repeating-linear-gradient(115deg, rgba(18,94,138,0.08) 0px, rgba(18,94,138,0.08) 1px, transparent 1px, transparent 34px),
    linear-gradient(155deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}
.hero-abstract-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-abstract-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.hero-photo-frame { margin: 0; width: 100%; }
.hero-photo-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--tan-line);
}
.hero-photo-frame figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--text-faint);
  font-style: italic;
}

/* Proof strip */
.proof-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--tan-line);
  background: var(--cream-2);
}
.proof-card { padding: 22px 22px 24px; border-left: 1px solid var(--tan-line); }
.proof-card:first-child { border-left: none; }
.proof-label { font-family: var(--font-serif); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.proof-desc { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.45; }
@media (max-width: 860px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(3) { border-left: none; }
  .proof-card:nth-child(3), .proof-card:nth-child(4) { border-top: 1px solid var(--tan-line); }
}
@media (max-width: 520px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-card { border-left: none !important; border-top: 1px solid var(--tan-line); }
  .proof-card:first-child { border-top: none; }
}

/* ==========================================================================
   Placeholder / concept blocks
   ========================================================================== */
.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-headshot { aspect-ratio: 4 / 5; overflow: hidden; }
.placeholder-clinic { aspect-ratio: 4 / 3; }

.market-placeholder { position: relative; padding: 16px; }
.market-status-pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(251, 249, 244, 0.92);
  border: 1px solid var(--tan-line);
  padding: 8px 12px;
  text-align: center;
}

.market-photo-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.market-photo { width: 100%; height: 100%; object-fit: cover; }
.market-status-pill-overlay {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  width: auto;
}
.market-photo-caption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 8px !important;
}

/* ==========================================================================
   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: 24px; }
}
.intro-grid .lede-copy p { font-size: 16.5px; color: var(--text-body); }
.intro-grid .lede-copy p + p { margin-top: 16px; }
.on-dark .intro-grid .lede-copy p { color: #C9D4DA; }

.safety-note {
  margin-top: 20px !important;
  padding: 14px 18px;
  background: var(--cream-2);
  border-left: 3px solid var(--blue);
  font-size: 14px !important;
  color: var(--text-body) !important;
}

/* ==========================================================================
   Engine / capability card grids
   ========================================================================== */
.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-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: 18px; 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; } }

/* ==========================================================================
   Conversion callout (model section)
   ========================================================================== */
.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: center; gap: 18px; }
.callout-band .conversion-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.callout-band .conversion .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
  line-height: 1;
}
.callout-band .conversion .num.to { color: var(--blue-light); }
.callout-band .conversion .stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9FB0B8;
  text-align: center;
  white-space: nowrap;
}
.callout-band .conversion .arrow { color: var(--text-faint); font-size: 20px; }
.callout-band p { font-size: 14px; color: #C9D4DA; margin: 0; }
@media (max-width: 640px) {
  .callout-band { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Growth thesis
   ========================================================================== */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border: 1px solid var(--tan-line);
}
.growth-card { padding: 24px 24px 26px; border-left: 1px solid var(--tan-line); border-top: 3px solid var(--blue); background: var(--white); }
.growth-card:first-child { border-left: none; }
.growth-card h3 { font-family: var(--font-serif); font-size: 18px; color: var(--ink); font-weight: 700; }
.growth-card p { font-size: 14px; color: var(--text-muted); margin-top: 10px; }
.immediate-plan-card {
  margin-top: 24px;
  padding: 22px 28px;
  background: var(--white);
  border: 1px dashed var(--tan-line);
}
.immediate-plan-body { font-size: 14.5px; color: var(--text-muted); margin-top: 8px; }
.growth-disclaimer { margin-top: 20px; font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }
.growth-cta { margin-top: 32px; }
@media (max-width: 860px) {
  .growth-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-card:nth-child(3) { border-left: none; }
}
@media (max-width: 520px) {
  .growth-grid { grid-template-columns: 1fr; }
  .growth-card { border-left: none !important; }
}

/* ==========================================================================
   Operator outreach band
   ========================================================================== */
.outreach-band { background: var(--navy-2); }
.outreach-inner { max-width: 720px; text-align: left; }
.outreach-inner p { font-size: 16px; color: #C9D4DA; margin-top: 16px; }
.outreach-inner .btn { margin-top: 26px; }

/* ==========================================================================
   Markets / sites
   ========================================================================== */
.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-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: 13.5px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
@media (max-width: 900px) { .clinic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .clinic-grid { grid-template-columns: 1fr; } }

/* Clinic concept block */
.concept-block { margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--tan-line); }
.concept-heading { font-family: var(--font-serif); font-weight: 700; font-size: clamp(24px, 3vw, 30px); color: var(--ink); margin-top: 10px; }
.concept-intro { font-size: 16px; color: var(--text-body); line-height: 1.6; max-width: 760px; margin-top: 16px; }
.concept-principles {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  max-width: 760px;
}
.concept-principles li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--text-body);
}
.concept-principles li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--blue);
}
@media (max-width: 600px) { .concept-principles { grid-template-columns: 1fr; } }

.concept-layout-cta { margin-top: 28px; }

.concept-refs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.concept-ref { border: 1px solid var(--tan-line); background: var(--white); }
.concept-ref img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.concept-ref figcaption {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
@media (max-width: 640px) { .concept-refs { grid-template-columns: 1fr; } }

/* ==========================================================================
   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;
  align-items: start;
}
.lead-photo-col { width: 100%; }
.lead-photo-wrap { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; }
.lead-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-stat-list { margin: 18px 0 0; border-top: 1px solid var(--tan-line); }
.lead-stat-list dt {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
  padding-top: 14px;
}
.lead-stat-list dd {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tan-line);
}
.lead-stat-list dt:not(:first-child) { padding-top: 14px; }
.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-text { margin-top: 18px; max-width: 640px; }
.lead-bio-text p { font-size: 15px; color: var(--text-body); line-height: 1.6; }
.lead-bio-text p + p { margin-top: 12px; }
.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-photo-col { max-width: 220px; }
}

.team-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; align-items: start; }
.exec-card { background: var(--white); border: 1px solid var(--tan-line); }
.photo-wrap { overflow: hidden; width: 100%; aspect-ratio: 16 / 10; }
.exec-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.exec-body { padding: 22px 24px 26px; }
.exec-body h4 { font-family: var(--font-serif); font-size: 19px; color: var(--ink); font-weight: 700; }
.exec-body .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-body p.bio { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; line-height: 1.55; }
@media (max-width: 780px) {
  .team-pair { grid-template-columns: 1fr; }
}

.future-roles {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px dashed var(--tan-line);
}
.future-roles-body { font-size: 14.5px; color: var(--text-muted); margin-top: 8px; }
.future-roles-list { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.future-roles-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--tan-line);
  padding: 8px 14px;
}

/* ==========================================================================
   Culture
   ========================================================================== */
.culture-grid { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 44px; background: var(--navy-3); border: 1px solid var(--navy-3); }
.culture-card { background: var(--navy); padding: 26px 26px 30px; flex: 1 1 260px; }
.culture-card h3 { font-family: var(--font-serif); font-size: 18px; color: var(--white); font-weight: 700; }
.culture-card p { font-size: 14px; color: #AEBBC2; margin-top: 10px; }
@media (max-width: 560px) { .culture-card { flex-basis: 100%; } }

/* ==========================================================================
   Founder
   ========================================================================== */
.founder-note {
  margin-top: 40px;
  max-width: 720px;
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 32px;
}
.founder-note-kicker { display: block; }
.founder-note-body { margin-top: 16px; }
.founder-note-body p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}
.founder-note-body p:first-of-type { font-weight: 600; }
.founder-note-body p + p { margin-top: 20px; }
.founder-signature { margin-top: 28px; display: flex; flex-direction: column; gap: 2px; }
.founder-signature-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.founder-signature-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .founder-note { padding-left: 20px; }
  .founder-note-body p { font-size: 16.5px; }
}

.founder-media { margin-top: 56px; }
.founder-poster {
  max-width: 720px;
  aspect-ratio: 16 / 9;
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.founder-poster-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.founder-poster-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
}
.founder-video-embed { max-width: 720px; aspect-ratio: 16 / 9; }
.founder-video-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Investor access form
   ========================================================================== */
.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-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.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 .optional { text-transform: none; letter-spacing: normal; }
.field input, .field textarea, .field select {
  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, .field select:focus { outline: 2px solid var(--blue); outline-offset: -1px; background: var(--white); }
.field textarea { resize: vertical; min-height: 90px; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--error); }
.field-error { font-size: 12.5px; color: var(--error); margin-top: 6px; min-height: 1em; }
.field-checkbox { display: flex; flex-direction: column; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; text-transform: none; font-family: var(--font-sans); font-size: 14px; color: var(--text-body); letter-spacing: normal; }
.checkbox-label input { width: auto; margin-top: 3px; flex-shrink: 0; }
.dataroom-form .btn { margin-top: 24px; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.5;
  border-left: 3px solid var(--blue);
  background: var(--cream-2);
  color: var(--text-body);
}
@media (max-width: 780px) { .dataroom-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Modal / lightbox (floor plan)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 36, 50, 0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
body.modal-open { overflow: hidden; }

.modal-dialog {
  background: var(--white);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--tan-line);
  flex-shrink: 0;
}
.modal-head h2 { font-family: var(--font-serif); font-size: 19px; color: var(--ink); }
.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  padding: 4px 8px;
}
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 20px 22px 24px; overflow: auto; }
.modal-body img { width: 100%; height: auto; border: 1px solid var(--tan-line); }
.modal-caption { margin-top: 14px; font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #AEBBC2; padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 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; max-width: 380px; }
.footer-brand .footer-domain { font-family: var(--font-mono); font-size: 12.5px; color: var(--blue-light); margin-top: 12px; }
.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
   ========================================================================== */
.section-head { max-width: 640px; }

/* 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; }
}
