
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #20242B;
  --paper: #FFFFFF;
  --paper-warm: #FAF8F5;
  --clay: #A8553D;
  --clay-deep: #8B4631;
  --stone: #6B6F76;
  --stone-light: #9498A0;
  --line: #E4E2DD;
  --sage: #5C6E5A;
  --sage-soft: #E8EDE5;
  --rose: #B86B82;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── LAYOUT UTILITIES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.wrap-text { max-width: 620px; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: none;
  margin: 0;
  padding: 22px 32px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--stone);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clay); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { color: var(--clay); border-color: var(--clay); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  align-items: stretch;
  min-height: 72vh;
  max-height: 720px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 72px 48px;
}
.hero-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 30px;
}
h1.hero-headline {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 13.5ch;
}
h1.hero-headline em {
  font-style: normal;
  color: var(--clay);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.68;
  color: var(--stone);
  max-width: 45ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--ink);
  color: var(--paper);
  padding: 15px 28px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--clay-deep); }
.btn-secondary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--clay); color: var(--clay); }

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-text { padding: 42px 24px 38px; order: 2; }
  .hero-image { height: 54vw; min-height: 320px; order: 1; }
  h1.hero-headline { max-width: none; }
}

/* ── SECTION SPACING (varied rhythm) ── */
section { padding: 96px 0; }
.journey-paths { padding: 84px 0 96px; }
.why-vias { padding: 128px 0 108px; }
.resources { padding: 72px 0; }
.final-cta { padding: 132px 0; }
@media (max-width: 700px) {
  section { padding: 64px 0; }
  .why-vias { padding: 72px 0; }
  .final-cta { padding: 88px 0; }
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 20px;
}

.section-head { margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  color: var(--clay);
}


.section-head-with-copy { max-width: 780px; }
.section-head-with-copy p {
  margin-top: 20px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
}

/* ── CHOOSE YOUR JOURNEY ── */
.journey-paths { background: var(--paper-warm); }
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.path-card {
  background: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  position: relative;
}
.path-card.active:hover { background: var(--paper-warm); }
.path-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 28px;
  background: var(--line);
}
.path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.path-card.active:hover .path-photo img { transform: scale(1.035); }
.path-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.path-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.path-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 22px;
  flex: 1;
}
.path-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-card.active:hover .path-link { gap: 10px; }
.path-link svg { transition: transform 0.25s; width: 14px; height: 14px; }

.path-card.pending {
  background: var(--paper-warm);
  justify-content: center;
}
.path-card.pending .path-tag { color: var(--stone-light); }
.path-card.pending .path-title { color: var(--stone); }
.path-card.pending .path-desc { color: var(--stone-light); margin-bottom: 0; }
.path-card.pending .path-photo { display: none; }

@media (max-width: 760px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* ── WHY VIAS ── */
.why-vias { background: var(--paper); }
.why-vias .section-head h2 em { color: var(--rose); }
.why-vias-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.why-vias-image {
  position: sticky;
  top: 110px;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
}
.why-vias-image img { width: 100%; height: 100%; object-fit: cover; }
.proof-list {
  display: flex;
  flex-direction: column;
}
.proof-item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 52px 0 52px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: var(--rose);
  opacity: 0.55;
}
.proof-item:first-of-type { border-top: none; padding-top: 4px; }
.proof-item:first-of-type::before { top: 4px; }
.proof-item:last-of-type { padding-bottom: 4px; }
.proof-item:last-of-type::before { bottom: 4px; }
.proof-fact {
  font-size: clamp(21px, 2.3vw, 27px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.006em;
  color: var(--ink);
}
.proof-fact em {
  font-style: normal;
  color: var(--rose);
}

@media (max-width: 900px) {
  .why-vias-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-vias-image { position: static; aspect-ratio: 16/10; max-width: 420px; }
}

/* ── FEATURED IMAGE BREAK ── */
.image-break {
  position: relative;
  height: 64vh;
  min-height: 420px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.image-break-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  max-width: 480px;
}

/* ── MEET KAREN ── */
.karen-section { background: var(--paper-warm); }
.karen-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.karen-photo-wrap {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.karen-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.karen-quote {
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 450;
  margin-bottom: 28px;
}
.karen-attr {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.karen-attr span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .karen-grid { grid-template-columns: 1fr; gap: 32px; }
  .karen-photo-wrap { max-width: 280px; }
}

/* ── RESOURCES ── */
.resources { background: var(--paper); }
.resources-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 2px solid var(--clay);
  padding: 40px 0 4px;
}
.resources-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-block;
  margin-bottom: 18px;
}
.resources-thumb img { width: 100%; height: 100%; object-fit: cover; }
.resources-row h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.resources-row p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stone);
  max-width: 46ch;
}

@media (max-width: 700px) {
  .resources-row { grid-template-columns: 1fr; text-align: left; }
}

/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}
.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,36,43,0.55) 0%, rgba(32,36,43,0.92) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.final-cta-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.final-cta-content h2 em {
  font-style: normal;
  color: #D49A86;
}
.final-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}
.final-cta .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.final-cta .btn-primary:hover { background: var(--clay); color: var(--paper); }

/* ── FOOTER ── */
footer { background: var(--paper); border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-brand { font-size: 18px; font-weight: 700; }
.footer-tagline { font-size: 13px; color: var(--stone); margin-top: 4px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-light); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; color: var(--stone); margin-bottom: 9px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--stone-light); }
.footer-bottom a { margin-left: 18px; }
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 700px) {
  .footer-top { flex-direction: column; }
}


/* ── EDITORIAL REFINEMENTS + NEW SECTIONS ── */
:root { --serif: 'Cormorant Garamond', Georgia, serif; }
body { background: var(--paper-warm); }
h1.hero-headline, .section-head h2, .chapter-kicker, .who-photo-copy h2, .fit-card h3, .card-section h2, .detail-card h3, .final-cta-content h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
h1.hero-headline { max-width: 12.5ch; font-size: clamp(44px, 5.6vw, 72px); }
.hero-sub { font-size: 17px; }
.nav-inner { background: rgba(255,255,255,0.72); }

.chapter-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.chapter-band.alt { background: #F4ECE7; }
.chapter-inner { max-width: 940px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 190px 1fr; gap: 48px; align-items: center; }
.chapter-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.chapter-kicker { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.14; color: var(--ink); }
.chapter-kicker em { color: var(--rose); font-style: italic; }



/* ── PATH DIVIDER ── */
.path-divider {
  background: var(--paper-warm);
  padding: 72px 0 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.path-divider-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 54px;
  align-items: center;
}
.path-divider-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.path-divider-copy {
  position: relative;
  padding-left: 34px;
}
.path-divider-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--rose);
  opacity: 0.58;
}
.path-divider-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}
.path-divider-copy h2 em {
  color: var(--rose);
  font-style: italic;
}
.path-divider-copy p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--stone);
}
@media (max-width: 760px) {
  .path-divider { padding: 54px 0 58px; }
  .path-divider-inner { grid-template-columns: 1fr; gap: 18px; }
  .path-divider-copy { padding-left: 22px; }
}

.who-fit { padding: 0; background: var(--ink); position: relative; overflow: hidden; }
.who-photo { min-height: 720px; position: relative; display: flex; align-items: flex-end; }
.who-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.72; }
.who-photo::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(32,36,43,0.86), rgba(32,36,43,0.46) 48%, rgba(32,36,43,0.68)); }
.who-photo-content { position: relative; z-index: 1; width: 100%; padding: 88px 0; }
.who-photo-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 58px; align-items: end; }
.who-photo-copy h2 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.08; color: var(--paper); margin-bottom: 20px; }
.who-photo-copy h2 em { color: var(--rose); font-style: italic; }
.who-photo-copy p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.76); max-width: 39ch; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card {
  min-height: 196px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0,0,0,0.18);
}
.fit-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); color: #F0C7B9; margin-bottom: 18px; }
.fit-icon svg { width: 16px; height: 16px; stroke-width: 1.7; }
.fit-card h3 { font-size: 23px; line-height: 1.2; color: var(--paper); margin-bottom: 10px; }
.fit-card p { font-size: 14px; line-height: 1.62; color: rgba(255,255,255,0.72); }

.detail-cards { background: var(--paper-warm); padding: 112px 0; }
.detail-card-head { max-width: 620px; margin-bottom: 54px; }
.detail-card-head h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.1; margin-bottom: 16px; color: var(--ink); }
.detail-card-head h2 em { color: var(--rose); font-style: italic; }
.detail-card-head p { color: var(--stone); font-size: 16px; line-height: 1.75; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.detail-card { background: var(--paper); padding: 38px 34px 42px; min-height: 310px; display: flex; flex-direction: column; }
.detail-number { font-family: var(--serif); font-size: 54px; line-height: 1; color: rgba(184,107,130,0.22); margin-bottom: 26px; }
.detail-card h3 { font-size: 27px; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.detail-card p { font-size: 15px; color: var(--stone); line-height: 1.7; }
.detail-card strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .chapter-inner { grid-template-columns: 1fr; gap: 16px; }
  .who-photo { min-height: auto; }
  .who-photo-content { padding: 70px 0; }
  .who-photo-grid { grid-template-columns: 1fr; gap: 36px; }
  .fit-grid, .detail-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; }
}
@media (max-width: 560px) {
  .chapter-band { padding: 34px 0; }
  .who-photo-content { padding: 56px 0; }
  .fit-grid { gap: 12px; }
  .fit-card { padding: 24px 20px; }
  .detail-cards { padding: 72px 0; }
  .detail-card { padding: 30px 24px; min-height: auto; }
}


/* ── REFINEMENTS FROM APPROVED DIRECTION ── */
.hero-text { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%); }
h1.hero-headline { font-family: var(--serif); font-weight: 300; font-size: clamp(46px, 5.5vw, 74px); letter-spacing: -0.018em; max-width: 11ch; }
h1.hero-headline em { font-style: italic; color: var(--rose); }
.hero-location { color: var(--clay); }
.hero-location::before { background: var(--sage); }
.hero-sub { font-family: var(--serif); font-size: clamp(25px, 2.6vw, 34px); line-height: 1.3; color: var(--ink); max-width: 20ch; }
.hero-image img { object-position: center; }
.nav-inner { border-bottom-color: rgba(92,110,90,0.22); }
.nav-cta { background: var(--ink); color: var(--paper); border: 0; padding: 12px 20px; }
.nav-cta:hover { background: var(--sage); color: var(--paper); }
.chapter-band.first-break { background: var(--paper-warm); border-top: 1px solid rgba(92,110,90,0.22); border-bottom: 1px solid rgba(92,110,90,0.22); padding: 72px 0; }
.chapter-band.first-break .chapter-inner { max-width: 1180px; grid-template-columns: 180px 1fr; align-items: start; }
.chapter-band.first-break .chapter-label { color: var(--sage); }
.chapter-band.first-break .chapter-kicker { font-family: var(--serif); font-weight: 300; font-size: clamp(31px, 3.4vw, 50px); line-height: 1.16; max-width: 900px; }
.chapter-band.first-break .chapter-kicker strong { font-family: var(--sans); display: block; font-size: clamp(16px, 1.55vw, 20px); line-height: 1.75; font-weight: 450; color: var(--stone); margin-top: 24px; max-width: 760px; }
.path-tag, .eyebrow { color: var(--sage); }
.proof-item::before { background: linear-gradient(180deg, var(--sage), var(--rose)); opacity: 0.72; }
.detail-card:nth-child(2) .detail-number, .detail-card:nth-child(2) h3 { color: var(--sage); }
.detail-card:nth-child(2) { background: linear-gradient(180deg, #FFFFFF 0%, var(--sage-soft) 100%); }
.who-photo-copy .eyebrow, .fit-icon { color: #DCE7D6; }
.fit-icon { border-color: rgba(220,231,214,0.5); }



/* ── SECTION 1 DIRECTION: CINEMATIC VIDEO HERO PROTOTYPE ── */
.hero-video-concept {
  min-height: calc(100vh - 79px);
  background: var(--paper-warm);
}
.hero-video-concept .hero-text {
  padding: clamp(56px, 7vw, 92px) clamp(32px, 6vw, 88px);
  background:
    radial-gradient(circle at 0% 5%, rgba(92,110,90,0.14), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper-warm) 100%);
}
.hero-video-concept .hero-location {
  color: var(--sage);
  letter-spacing: 0.18em;
  max-width: 460px;
}
.hero-video-concept h1.hero-headline {
  max-width: 9.7ch;
  font-size: clamp(49px, 6vw, 82px);
}
.hero-video-concept .hero-sub {
  font-family: var(--serif);
  font-size: clamp(23px, 2.2vw, 33px);
  line-height: 1.33;
  max-width: 22ch;
  color: var(--ink);
}
.hero-video-frame {
  min-height: calc(100vh - 79px);
  background: #111820;
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: heroCinematic 18s infinite;
  z-index: 0;
}
.slide-one { animation-delay: 0s; background-position: 48% center; }
.slide-two { animation-delay: 6s; background-position: 58% center; }
.slide-three { animation-delay: 12s; background-position: 50% center; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(32,36,43,0.24), rgba(32,36,43,0.02) 45%, rgba(32,36,43,0.16)),
    linear-gradient(180deg, rgba(92,110,90,0.18), rgba(184,107,130,0.10));
  pointer-events: none;
}
.hero-video-frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(32,36,43,0.45));
}
.hero-video-note {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 34px;
  padding: 18px 22px;
  border-left: 2px solid var(--sage);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 310px;
  box-shadow: 0 18px 46px rgba(32,36,43,0.18);
}
.hero-video-note span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.hero-video-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}
@keyframes heroCinematic {
  0% { opacity: 0; transform: scale(1.045) translateX(0); }
  7% { opacity: 1; }
  30% { opacity: 1; }
  39% { opacity: 0; transform: scale(1.10) translateX(-1.6%); }
  100% { opacity: 0; transform: scale(1.045) translateX(0); }
}
.chapter-band.first-break .chapter-kicker {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
}
.chapter-band.first-break .chapter-kicker strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1.22;
  font-weight: 300;
  color: var(--ink);
}
.chapter-band.first-break .chapter-kicker strong em {
  font-style: italic;
  color: var(--rose);
}
@media (max-width: 900px) {
  .hero-video-frame { min-height: 64vw; }
  .hero-video-note { left: 22px; right: 22px; bottom: 22px; }
}
@media (max-width: 560px) {
  .hero-video-concept h1.hero-headline { font-size: clamp(42px, 12vw, 58px); }
  .hero-video-note strong { font-size: 22px; }
}



/* ── SECTION 1 LOCK: SINGLE REAL VIDEO HERO (NO MONTAGE) ── */
.hero-single-video {
  min-height: calc(100vh - 76px);
  background: var(--paper-warm);
}
.hero-single-video .hero-text {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  padding-left: clamp(42px, 6vw, 96px);
  padding-right: clamp(32px, 5vw, 72px);
}
.hero-single-video .hero-location {
  color: var(--sage);
}
.hero-single-video .hero-location::before {
  background: var(--sage);
}
.hero-single-video h1.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 11ch;
}
.hero-single-video h1.hero-headline em {
  font-style: italic;
  color: var(--rose);
}
.hero-single-video .hero-sub {
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.32;
  color: var(--ink);
  max-width: 21ch;
}
.hero-video-frame {
  position: relative;
  min-height: calc(100vh - 76px);
  background: #1f2b25;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) contrast(0.98);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32,36,43,0.48) 0%, rgba(32,36,43,0.16) 45%, rgba(32,36,43,0.35) 100%),
    linear-gradient(180deg, rgba(92,110,90,0.18), rgba(168,85,61,0.12));
  pointer-events: none;
}
.hero-video-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  max-width: 470px;
  padding: 28px 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.5);
  border-left: 3px solid var(--sage);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(32,36,43,0.18);
}
.hero-video-note span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.hero-video-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-video-note p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--stone);
}
@media (max-width: 900px) {
  .hero-single-video { min-height: auto; }
  .hero-single-video .hero-text { padding: 48px 24px 42px; }
  .hero-video-frame { min-height: 72vw; }
  .hero-video-note { left: 22px; right: 22px; bottom: 22px; padding: 22px; }
  .hero-video-note strong { font-size: 24px; }
}



/* ── SECTION 1 LOCKED: STATIC IP HERO + TRUST BREAK ── */
.hero-static-ips {
  min-height: 620px;
  max-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--paper-warm);
}
.hero-static-ips .hero-text {
  padding: clamp(52px, 6.5vw, 86px) clamp(34px, 5vw, 76px);
  background:
    radial-gradient(circle at 0% 8%, rgba(92,110,90,0.12), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper-warm) 100%);
}
.hero-static-ips .hero-location {
  color: var(--stone-light);
  letter-spacing: 0.17em;
  margin-bottom: 14px;
}
.hero-static-ips .hero-location::before { background: var(--sage); }
.hero-static-ips .hero-kicker {
  font-size: 13px;
  line-height: 1.4;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-static-ips h1.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.35vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 12.2ch;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-static-ips h1.hero-headline span { display: block; }
.hero-static-ips h1.hero-headline em {
  font-style: italic;
  color: var(--rose);
}
.hero-static-ips .hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
  max-width: 42ch;
  color: var(--stone);
  margin-bottom: 40px;
}
.hero-static-frame {
  position: relative;
  min-height: 620px;
  max-height: 680px;
  overflow: hidden;
  background: #111820;
}
.hero-static-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32,36,43,0.18), rgba(32,36,43,0.00) 38%, rgba(32,36,43,0.12)),
    linear-gradient(180deg, rgba(92,110,90,0.10), rgba(184,107,130,0.08));
  pointer-events: none;
}
.trust-strip.first-page-break {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 27px clamp(24px, 5vw, 70px);
  border: 0;
}
.trust-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-strip-item .trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(184,107,130,0.08);
}
.trust-strip-item:nth-child(2) .trust-dot,
.trust-strip-item:nth-child(5) .trust-dot {
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(92,110,90,0.14);
}
@media (max-width: 980px) {
  .hero-static-ips { grid-template-columns: 1fr; }
  .hero-static-ips .hero-text { order: 2; padding: 44px 24px 42px; }
  .hero-static-frame { order: 1; min-height: 56vw; max-height: none; }
  .hero-static-ips h1.hero-headline { max-width: 12ch; font-size: clamp(36px, 10vw, 54px); }
  .trust-strip-inner { justify-content: flex-start; gap: 16px 26px; }
}
@media (max-width: 560px) {
  .trust-strip.first-page-break { padding: 24px 22px; }
  .trust-strip-item { white-space: normal; width: 100%; font-size: 10.5px; }
}

/* ── SECTION 1 REFINEMENT V3 ── */
.hero-static-ips .hero-text {
  padding: 70px clamp(34px, 6vw, 92px) 62px;
}
.hero-static-ips .hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 28px;
}
.hero-static-ips .hero-location::before {
  content: '';
  display: block;
  width: 34px;
  height: 1px;
  background: var(--rose);
}
.hero-static-ips .hero-kicker {
  color: var(--sage);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.hero-static-ips h1.hero-headline {
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  max-width: 11.5ch;
  margin-bottom: 30px;
}
.hero-static-ips h1.hero-headline em {
  color: var(--rose);
  font-style: italic;
}
.hero-static-ips .hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 300;
  line-height: 1.85;
  color: #6f6863;
  max-width: 48ch;
  margin-bottom: 34px;
}
.hero-static-frame {
  min-height: 560px;
  max-height: 600px;
}
.hero-static-frame img {
  object-position: center center;
}
.trust-strip.first-page-break {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--ink) !important;
  color: rgba(255,255,255,0.78);
  padding: 26px clamp(28px, 5vw, 82px);
}
.trust-strip-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}
.image-break {
  width: min(1180px, calc(100% - 48px));
  height: clamp(420px, 54vw, 680px);
  margin: 0 auto;
  min-height: 0;
  border-radius: 2px;
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.image-break-caption { display: none !important; }
@media (max-width: 980px) {
  .hero-static-ips .hero-text { padding: 44px 24px 42px; }
  .hero-static-frame { min-height: 56vw; max-height: none; }
  .hero-static-ips h1.hero-headline { font-size: clamp(38px, 10vw, 54px); }
}


/* ── SECTION 1 REFINEMENT V4: user-requested fixes ── */
.hero-static-ips .hero-sub {
  font-family: 'Jost', var(--sans);
  font-size: clamp(15.5px, 1.18vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.01em;
  color: #6f6863;
  max-width: 48ch;
}
.trust-strip.first-page-break {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: var(--ink) !important;
  box-shadow: 0 0 0 100vmax var(--ink) !important;
  clip-path: inset(0 -100vmax) !important;
  z-index: 4 !important;
  overflow: visible !important;
}
.trust-strip.first-page-break .trust-strip-inner {
  width: min(1480px, calc(100% - 80px));
  max-width: 1480px;
  margin: 0 auto;
}
.image-break {
  width: min(1180px, calc(100% - 48px)) !important;
  height: clamp(360px, 44vw, 560px) !important;
  margin: 0 auto !important;
  background: var(--paper-warm);
  border-radius: 2px;
  overflow: hidden;
}
.image-break img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}
.image-break-caption { display: none !important; }
@media (max-width: 980px) {
  .trust-strip.first-page-break .trust-strip-inner { width: calc(100% - 44px); }
}



/* ── SECTION 1 LOCKED OVERRIDES v5 ── */
.hero-static-ips h1.hero-headline {
  max-width: 13.5ch !important;
  font-size: clamp(42px, 4.8vw, 66px) !important;
  line-height: 1.08 !important;
  margin-bottom: 24px !important;
}
.hero-static-ips h1.hero-headline span { display: block !important; }
.hero-static-ips .hero-copy {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(20px, 1.55vw, 26px) !important;
  line-height: 1.55 !important;
  color: #706760 !important;
  max-width: 520px !important;
}
.hero-static-ips .hero-location {
  color: #6E7B5E !important;
}
.hero-static-ips .hero-text {
  padding-top: 64px !important;
  padding-bottom: 58px !important;
}
.hero-static-ips .hero-image img {
  object-position: center center !important;
}
.trust-strip.first-page-break {
  display: block !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #202A3A !important;
  padding: 25px 0 !important;
  overflow: hidden !important;
  border: 0 !important;
}
.trust-strip.first-page-break .trust-strip-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 5.6vw !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 22px !important;
  flex-wrap: nowrap !important;
}
.trust-strip.first-page-break .trust-strip-item {
  color: rgba(247,243,239,.86) !important;
  font-size: 11px !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.trust-strip.first-page-break .trust-dot {
  background: #B86B82 !important;
  box-shadow: 0 0 0 4px rgba(184,107,130,.11) !important;
}
.trust-strip.first-page-break .trust-strip-item:nth-child(2) .trust-dot,
.trust-strip.first-page-break .trust-strip-item:nth-child(5) .trust-dot {
  background: #6E7B5E !important;
  box-shadow: 0 0 0 4px rgba(110,123,94,.14) !important;
}
.image-break {
  max-width: 1180px !important;
  width: calc(100% - 56px) !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 56px auto 0 !important;
  background: transparent !important;
}
.image-break img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}
.image-break-caption { display: none !important; }
@media (max-width: 980px) {
  .trust-strip.first-page-break .trust-strip-inner { flex-wrap: wrap !important; justify-content: flex-start !important; }
  .trust-strip.first-page-break .trust-strip-item { width: auto !important; }
}
@media (max-width: 700px) {
  .hero-static-ips h1.hero-headline { font-size: clamp(38px, 11vw, 54px) !important; }
  .image-break { width: calc(100% - 32px) !important; margin-top: 40px !important; }
}



/* ── SECTION 1 LOCKED OVERRIDES v6: hero rose accent + full-width trust break ── */
.hero-static-ips h1.hero-headline {
  max-width: 15ch !important;
}
.hero-static-ips h1.hero-headline em {
  font-style: italic !important;
  color: #B86B82 !important;
}
.hero-static-ips > .trust-strip.first-page-break,
.trust-strip.first-page-break {
  grid-column: 1 / -1 !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #202A3A !important;
  box-shadow: 0 0 0 100vmax #202A3A !important;
  clip-path: inset(0 -100vmax) !important;
  padding: 25px 0 !important;
  overflow: visible !important;
  border: 0 !important;
}
.trust-strip.first-page-break .trust-strip-inner {
  width: min(1480px, calc(100% - 96px)) !important;
  max-width: 1480px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 26px !important;
  flex-wrap: nowrap !important;
}
.trust-strip.first-page-break .trust-strip-item {
  color: rgba(247,243,239,.88) !important;
  font-size: 10.5px !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
@media (max-width: 980px) {
  .trust-strip.first-page-break .trust-strip-inner {
    width: calc(100% - 44px) !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 14px 24px !important;
  }
}



/* ── SECTION 1 LOCKED OVERRIDES v7: align hero + anchor trust break to bottom of first screen ── */
:root { --nav-real-height: 92px; --trust-real-height: 68px; }
.hero-static-ips {
  height: calc(100svh - var(--nav-real-height) - var(--trust-real-height)) !important;
  min-height: 520px !important;
  max-height: 680px !important;
  grid-template-columns: minmax(460px, 0.96fr) minmax(520px, 1.04fr) !important;
  align-items: stretch !important;
  overflow: hidden !important;
}
.hero-static-ips .hero-text {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(44px, 5.2vw, 68px) clamp(46px, 6.2vw, 96px) !important;
}
.hero-static-ips .hero-location {
  margin-bottom: 22px !important;
}
.hero-static-ips h1.hero-headline {
  font-size: clamp(48px, 5.15vw, 72px) !important;
  line-height: 1.03 !important;
  max-width: 12.5ch !important;
  margin-bottom: 24px !important;
}
.hero-static-ips .hero-sub {
  font-size: clamp(16px, 1.16vw, 18px) !important;
  line-height: 1.78 !important;
  max-width: 46ch !important;
  margin-bottom: 30px !important;
}
.hero-static-frame {
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
}
.hero-static-frame img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: 52% center !important;
}
.trust-strip.first-page-break {
  min-height: var(--trust-real-height) !important;
  height: var(--trust-real-height) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  background: #202A3A !important;
}
.trust-strip.first-page-break .trust-strip-inner {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}
@media (min-width: 981px) {
  body > nav + .hero-static-ips + .trust-strip.first-page-break {
    margin-top: 0 !important;
  }
}
@media (max-width: 980px) {
  .hero-static-ips {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }
  .hero-static-frame { height: 58vw !important; min-height: 320px !important; order: 1 !important; }
  .hero-static-ips .hero-text { order: 2 !important; padding: 42px 24px 40px !important; }
  .trust-strip.first-page-break { height: auto !important; min-height: 68px !important; padding: 22px 0 !important; }
}



/* ── SECTION 1 LOCKED OVERRIDES v8: new hero image + trust strip lower ── */
:root { --hero-extra-drop: 80px; }
.hero-static-ips {
  height: calc(100svh - var(--nav-real-height) - var(--trust-real-height) + var(--hero-extra-drop)) !important;
  min-height: 670px !important;
  max-height: 760px !important;
}
.hero-static-frame {
  height: 100% !important;
  min-height: 670px !important;
  max-height: 760px !important;
}
.hero-static-frame img {
  object-fit: cover !important;
  object-position: center center !important;
}
.hero-static-ips .hero-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: clamp(56px, 6vw, 88px) !important;
  padding-bottom: clamp(56px, 6vw, 88px) !important;
}
.trust-strip.first-page-break {
  margin-top: 0 !important;
}
@media (max-width: 980px) {
  .hero-static-ips { height: auto !important; min-height: auto !important; max-height: none !important; }
  .hero-static-frame { height: 72vw !important; min-height: 420px !important; max-height: none !important; }
}


/* ── SECTION 1 LOCKED OVERRIDES v9: refined surrogate image crop ── */
.hero-static-frame img {
  object-position: center 34% !important;
}
@media (max-width: 980px) {
  .hero-static-frame img {
    object-position: center 32% !important;
  }
}


/* ── SECTION 1 LOCKED OVERRIDES v10: show full head in surrogate hero image ── */
.hero-static-frame img {
  object-fit: cover !important;
  object-position: center top !important;
}
.hero-static-frame {
  background: #f7f3ef !important;
}
@media (max-width: 980px) {
  .hero-static-frame img {
    object-position: center top !important;
  }
}



/* ── SECTION 1 LOCKED OVERRIDES v11: use uploaded surrogate image without head crop ── */
.hero-static-frame {
  background: linear-gradient(180deg, #F7F3EF 0%, #FAF8F5 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-static-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (min-width: 981px) {
  .hero-static-ips {
    grid-template-columns: minmax(460px, 0.98fr) minmax(500px, 1.02fr) !important;
  }
}



/* ── SECTION 1 LOCKED OVERRIDES v12: remove side letterboxing while keeping full-head crop ── */
.hero-static-frame {
  background: #F7F3EF !important;
  display: block !important;
  overflow: hidden !important;
}
.hero-static-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
@media (min-width: 981px) {
  .hero-static-frame img {
    object-position: center top !important;
  }
}
@media (max-width: 980px) {
  .hero-static-frame img {
    object-fit: cover !important;
    object-position: center top !important;
  }
}


/* ── SECTION 1 LOCKED OVERRIDES v13: eliminate right-side gray seam ── */
.hero-static-frame {
  position: relative !important;
  background: transparent !important;
  overflow: hidden !important;
  display: block !important;
}
.hero-static-frame img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: calc(100% + 4px) !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: translateX(-2px) !important;
}
.hero-image-overlay {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
}


/* ── V14 HERO IMAGE FIX: no side seam, keep full head ── */
@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr) !important;
    align-items: stretch !important;
  }
  .hero-image.hero-static-frame {
    background: var(--paper-warm) !important;
    min-height: 620px !important;
    height: calc(100vh - 150px) !important;
    max-height: 700px !important;
    overflow: hidden !important;
  }
  .hero-image.hero-static-frame img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: 50% 0% !important;
    transform: none !important;
  }
}
@media (max-width: 900px) {
  .hero-image.hero-static-frame img {
    object-fit: cover !important;
    object-position: center top !important;
  }
}


/* ── SECTION 2 REFINEMENTS v16: rose accent + readable card copy ── */
.journey-paths .section-head h2 em {
  color: var(--rose) !important;
  font-style: italic;
}
.journey-paths .path-desc {
  text-align: left;
  max-width: 34rem;
  text-wrap: pretty;
}
.journey-paths .path-card {
  align-items: flex-start;
}


/* ── SECTION 2 COLOR CORRECTION v17 ── */
.path-link,
.path-link:visited {
  color: var(--rose) !important;
}
.path-link svg {
  color: var(--rose) !important;
  stroke: var(--rose) !important;
}



/* ── SECTION 2B: who we serve cards v19 ── */
.who-audience-version {
  min-height: 720px !important;
  align-items: center !important;
}
.who-audience-version > img {
  opacity: 0.78 !important;
  object-position: center 42% !important;
}
.who-audience-version::after {
  background:
    linear-gradient(180deg, rgba(32,36,43,0.28) 0%, rgba(32,36,43,0.55) 48%, rgba(32,36,43,0.82) 100%),
    linear-gradient(90deg, rgba(32,36,43,0.32), rgba(32,36,43,0.44));
}
.who-audience-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.who-audience-wrap .who-photo-copy {
  text-align: center;
  max-width: 780px;
}
.who-audience-wrap .who-photo-copy .eyebrow {
  color: rgba(255,255,255,0.82);
}
.who-audience-wrap .who-photo-copy h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--paper);
}
.who-audience-wrap .who-photo-copy h2 em {
  color: var(--rose);
}
.who-audience-wrap .who-photo-copy p {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
}
.audience-card-grid {
  width: min(100%, 1100px);
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.audience-card-grid .fit-card {
  min-height: 268px;
  padding: 28px 26px 26px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.27);
}
.audience-card-grid .fit-icon {
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 1;
  color: var(--paper);
}
.audience-card-grid .fit-card h3 {
  font-size: 22px;
}
.audience-card-grid .fit-card p {
  font-size: 13.5px;
}
@media (max-width: 1050px) {
  .audience-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 620px) {
  .who-audience-version { min-height: auto !important; }
  .who-audience-wrap { gap: 34px; }
  .audience-card-grid { grid-template-columns: 1fr !important; }
}



/* ── WHY VIAS EDITORIAL CONSULTATION SECTION ── */
.why-vias {
  background: var(--paper);
  padding: 118px 0 112px;
}
.why-vias-editorial {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.why-vias-copy .eyebrow {
  color: var(--sage);
}
.why-vias-copy h2 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 11.5ch;
}
.why-vias-copy h2 em {
  font-style: italic;
  color: var(--rose) !important;
  font-family: var(--serif, Georgia, serif);
  font-weight: 300;
}
.why-vias-intro {
  font-size: 16px;
  line-height: 1.78;
  color: var(--stone);
  max-width: 520px;
  margin-bottom: 38px;
}
.why-principles {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.why-principle {
  padding: 24px 0 24px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.why-principle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--rose);
  opacity: 0.72;
}
.why-principle:nth-child(even)::before {
  background: var(--sage);
}
.why-principle h3 {
  font-family: var(--serif, Georgia, serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-principle p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--stone);
  max-width: 520px;
}
.why-vias-visual {
  position: relative;
}
.why-vias-visual::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 28px;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(184,107,130,0.22);
  z-index: 0;
}
.why-vias-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 24px 70px rgba(32,36,43,0.12);
  background: var(--paper-warm);
}
.why-vias-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.05) contrast(0.96) saturate(0.96);
}
.why-vias-note {
  position: absolute;
  left: -34px;
  bottom: -34px;
  z-index: 2;
  max-width: 300px;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(228,226,221,0.85);
  padding: 26px 28px;
  box-shadow: 0 18px 45px rgba(32,36,43,0.10);
}
.why-vias-note .note-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.why-vias-note p {
  font-family: var(--serif, Georgia, serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.why-vias-note em {
  color: var(--rose);
  font-style: italic;
}
@media (max-width: 980px) {
  .why-vias-editorial { grid-template-columns: 1fr; gap: 44px; }
  .why-vias-visual { max-width: 620px; }
  .why-vias-note { left: 18px; bottom: 18px; }
}
@media (max-width: 700px) {
  .why-vias { padding: 78px 0 84px; }
  .why-vias-copy h2 { font-size: clamp(31px, 10vw, 42px); }
  .why-vias-visual-frame { aspect-ratio: 4 / 5; }
  .why-vias-note { position: relative; left: auto; bottom: auto; margin: -28px 18px 0; max-width: none; }
}


/* ── VIAS DIFFERENCE ── */
.vias-difference {
  background: var(--paper-warm);
  padding: 118px 0 124px;
  border-top: 1px solid var(--line);
}
.difference-editorial {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}
.difference-left {
  position: sticky;
  top: 112px;
  padding-top: 6px;
}
.difference-left .eyebrow {
  color: var(--sage);
  margin-bottom: 26px;
}
.difference-left h2 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  max-width: 9.5ch;
  margin-bottom: 30px;
}
.difference-left h2 em {
  color: var(--rose);
  font-style: italic;
  font-weight: 300;
}
.difference-left p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--stone);
  max-width: 410px;
}
.difference-list {
  border-top: 1px solid var(--line);
}
.difference-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 30px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}
.difference-num {
  font-family: var(--serif, Georgia, serif);
  font-size: 34px;
  line-height: 1;
  color: rgba(184,107,130,0.34);
  font-weight: 300;
}
.difference-item:nth-child(2) .difference-num {
  color: rgba(92,110,90,0.52);
}
.difference-item h3 {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 400;
  line-height: 1.16;
  color: var(--ink);
  margin-bottom: 12px;
}
.difference-item p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--stone);
  max-width: 620px;
}
.difference-close {
  margin-top: 44px;
  padding: 26px 0 0 102px;
  position: relative;
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 660px;
}
.difference-close::before {
  content: '';
  position: absolute;
  left: 0;
  top: 44px;
  width: 72px;
  height: 1px;
  background: var(--rose);
}
.difference-close em {
  color: var(--rose);
  font-style: italic;
}
@media (max-width: 900px) {
  .difference-editorial { grid-template-columns: 1fr; gap: 44px; }
  .difference-left { position: static; }
  .difference-left h2 { max-width: none; }
}
@media (max-width: 700px) {
  .vias-difference { padding: 78px 0 86px; }
  .difference-item { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .difference-close { padding-left: 0; }
  .difference-close::before { position: static; display: block; margin-bottom: 22px; }
}


/* ── DIFFERENCE BRIDGE ── */
.difference-bridge {
  background: var(--paper-warm);
  padding: 68px 0 70px;
}
.difference-bridge .path-divider-copy h2 {
  max-width: 760px;
}
.difference-bridge .path-divider-copy p {
  max-width: 640px;
}



/* ── FINAL HOMEPAGE PASS v31: copy consistency, mobile spacing, CTA polish ── */
.hero-static-ips .hero-sub { max-width: 32ch; }
.hero-actions .btn-primary, .final-cta .btn-primary, .nav-cta { white-space: nowrap; }
.difference-bridge .path-divider-label { color: var(--stone-light); }
.difference-bridge .path-divider-copy h2 em { color: var(--rose); font-style: italic; }
.path-card .path-desc, .fit-card p, .why-point p, .difference-item p { text-align: left; }
@media (max-width: 980px) {
  nav .nav-inner { padding: 18px 22px; }
  .nav-cta { font-size: 12px; padding-bottom: 2px; }
  .hero-static-ips { min-height: auto !important; }
  .hero-static-ips .hero-text { padding: 40px 24px 38px !important; }
  .hero-static-ips .hero-location { margin-bottom: 18px !important; }
  .hero-static-ips h1.hero-headline { font-size: clamp(42px, 11vw, 58px) !important; line-height: 1.04 !important; max-width: 10ch !important; margin-bottom: 22px !important; }
  .hero-static-ips .hero-sub { font-size: 16px !important; line-height: 1.75 !important; max-width: 36ch !important; }
  .hero-static-frame { min-height: 390px !important; height: 58vw !important; }
  .hero-static-frame img { object-position: top center !important; }
}
@media (max-width: 700px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .trust-strip.first-page-break { padding: 22px 0 !important; }
  .trust-strip.first-page-break .trust-strip-inner { gap: 14px 20px !important; }
  .journey-paths, .who-fit, .why-vias, .vias-difference { scroll-margin-top: 78px; }
  .path-divider { padding: 52px 0 56px !important; }
  .path-divider-copy h2, .difference-left h2, .final-cta-content h2 { line-height: 1.12; }
  .difference-left h2 { font-size: clamp(32px, 10vw, 46px); }
  .final-cta-content p { font-size: 16px; line-height: 1.7; }
}
@media (max-width: 480px) {
  .hero-actions { gap: 16px; }
  .hero-actions .btn-primary, .final-cta .btn-primary { width: 100%; text-align: center; }
  .hero-static-frame { min-height: 430px !important; }
}


/* ── MOBILE WHO WE SERVE BACKGROUND FIX v36 ── */
@media (max-width: 620px) {
  .who-audience-version {
    min-height: auto !important;
  }
  .who-audience-version > img {
    object-position: 68% center !important;
    opacity: 0.52 !important;
  }
  .who-audience-version::after {
    background:
      linear-gradient(180deg, rgba(32,36,43,0.90) 0%, rgba(32,36,43,0.74) 34%, rgba(32,36,43,0.82) 100%),
      linear-gradient(90deg, rgba(32,36,43,0.68), rgba(32,36,43,0.54)) !important;
  }
  .who-audience-wrap .who-photo-copy {
    text-align: left !important;
    max-width: 100% !important;
  }
  .who-audience-wrap .who-photo-copy h2,
  .who-audience-wrap .who-photo-copy p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}



/* ── HOMEPAGE FINAL QC OVERRIDES v37 ── */
:root {
  --vias-navy: #1F2B46;
  --vias-cream: #F7F3EF;
  --vias-rose: #B86B82;
}

/* Header CTA: navy, not black */
.nav-cta {
  background: var(--vias-navy) !important;
  color: var(--vias-cream) !important;
  border: 1px solid var(--vias-navy) !important;
  padding: 12px 20px !important;
}
.nav-cta:hover {
  background: var(--vias-rose) !important;
  border-color: var(--vias-rose) !important;
  color: #fff !important;
}

/* Hero buttons: equal, cream/outline treatment */
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  background: var(--vias-cream) !important;
  color: var(--vias-navy) !important;
  border: 1px solid var(--vias-navy) !important;
  padding: 15px 28px !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
  display: inline-block !important;
  text-decoration: none !important;
}
.hero-actions .btn-secondary {
  border-bottom: 1px solid var(--vias-navy) !important;
}
.hero-actions .btn-primary:hover,
.hero-actions .btn-secondary:hover {
  background: rgba(184,107,130,0.08) !important;
  color: var(--vias-rose) !important;
  border-color: var(--vias-rose) !important;
}

/* Final CTA: navy background, rose word/accent, cream button */
.final-cta {
  background: var(--vias-navy) !important;
  color: var(--vias-cream) !important;
}
.final-cta-bg::after {
  background: linear-gradient(180deg, rgba(31,43,70,0.68) 0%, rgba(31,43,70,0.96) 100%) !important;
}
.final-cta-content h2,
.final-cta-content p {
  color: var(--vias-cream) !important;
}
.final-cta-content h2 em {
  color: var(--vias-rose) !important;
  font-style: italic !important;
}
.final-cta .btn-primary {
  background: var(--vias-cream) !important;
  color: var(--vias-navy) !important;
  border: 1px solid var(--vias-cream) !important;
}
.final-cta .btn-primary:hover {
  background: var(--vias-rose) !important;
  border-color: var(--vias-rose) !important;
  color: #fff !important;
}



/* ── FINAL MOBILE NAV QC v38 ── */
:root { --navy: #1F2B46; --cream: #F7F3EF; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  border: 1px solid var(--navy) !important;
}

@media (max-width: 860px) {
  .nav-inner {
    padding: 12px 14px 12px 10px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px 12px !important;
  }
  .logo {
    order: 1 !important;
    flex: 0 0 auto !important;
  }
  .logo img {
    height: 30px !important;
  }
  .nav-cta {
    order: 2 !important;
    margin-left: auto !important;
    padding: 9px 12px !important;
    font-size: 11.5px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
  .nav-links {
    order: 3 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
    padding-top: 4px !important;
  }
  .nav-links a {
    display: none !important;
    font-size: 12.5px !important;
    color: #5f5b57 !important;
    white-space: nowrap !important;
  }
  .nav-links a[href="#paths"]:first-child,
  .nav-links a[href="intended-parents.html"] {
    display: inline-flex !important;
  }
}

@media (max-width: 390px) {
  .nav-cta {
    padding: 8px 10px !important;
    font-size: 10.8px !important;
  }
  .nav-links {
    gap: 16px !important;
  }
  .nav-links a {
    font-size: 12px !important;
  }
}


/* ══════════════════════════════════════════════════
   LAUNCH ADDITIONS — Contact selector, forms, utility pages
   ══════════════════════════════════════════════════ */

/* Honeypot field must stay invisible to humans but present for bots/crawlers */
.hp-field { position: absolute; left: -9999px; }

.consult-section { padding-bottom: 96px; }
.consult-wrap { position: relative; z-index: 1; max-width: 860px; }
.consult-intro { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.consult-intro .eyebrow-light { color: var(--vias-rose, var(--rose)); }
.consult-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--vias-cream, var(--paper));
}
.consult-intro h2 em { font-style: italic; color: var(--vias-rose, var(--rose)); }
.consult-intro p { font-size: 17px; color: rgba(247,243,239,0.78); }

.consult-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(247,243,239,0.16);
  margin-bottom: 20px;
}
.consult-tab {
  background: rgba(247,243,239,0.06);
  border: none;
  color: var(--vias-cream, var(--paper));
  text-align: left;
  padding: 24px 22px;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consult-tab:hover { background: rgba(247,243,239,0.12); }
.consult-tab[aria-selected="true"] {
  background: var(--vias-cream, var(--paper));
  box-shadow: inset 0 -3px 0 var(--vias-rose, var(--rose));
}
.consult-tab[aria-selected="true"] .consult-tab-title,
.consult-tab[aria-selected="true"] .consult-tab-desc { color: var(--vias-navy, var(--ink)); }
.consult-tab-title { font-weight: 700; font-size: 15px; letter-spacing: -0.005em; }
.consult-tab-desc { font-size: 13px; line-height: 1.5; color: rgba(247,243,239,0.68); }
.consult-tab:focus-visible { outline: 2px solid var(--vias-rose, var(--rose)); outline-offset: -2px; }

@media (max-width: 760px) {
  .consult-tabs { grid-template-columns: 1fr; }
}

.consult-sensitive-note {
  font-size: 12.5px;
  color: rgba(247,243,239,0.62);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.consult-panels { position: relative; }
.consult-panel {
  background: var(--vias-cream, var(--paper));
  border: 1px solid rgba(247,243,239,0.14);
  padding: 40px;
  color: var(--ink);
}
.consult-panel[hidden] { display: none; }

.form-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-note {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--paper-warm);
  border-left: 3px solid var(--vias-rose, var(--rose));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin: 24px 0 28px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.req { color: var(--vias-rose, var(--rose)); }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--clay);
  outline-offset: 1px;
  border-color: var(--clay);
}

/* Error styling never relies on color alone: border + icon + text */
.field.field-invalid label { color: var(--clay-deep); }
.field.field-invalid label::after { content: " — please check this field"; font-weight: 500; font-size: 12px; color: var(--clay-deep); }
.field.field-invalid input,
.field.field-invalid select,
.field.field-invalid textarea {
  border-color: var(--clay-deep);
  border-width: 2px;
}
.field-error {
  font-size: 12.5px;
  color: var(--clay-deep);
  margin-top: 2px;
}
.field-error::before { content: "⚠ "; }
.field-error[hidden] { display: none; }

.field-consent { flex-direction: row; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.consent-label a { text-decoration: underline; color: var(--ink); }

.form-submit { border: none; cursor: pointer; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  padding: 10px 14px;
  border-left: 3px solid var(--clay-deep);
  background: var(--paper-warm);
  color: var(--ink);
}
.form-status[hidden] { display: none; }

/* ── Utility pages (thank-you, privacy, terms, 404) ── */
.utility-page main {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 28px 120px;
}
.utility-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink);
}
.utility-page h1 em { font-style: italic; color: var(--rose); }
.utility-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--ink);
}
.utility-page p, .utility-page li { font-size: 16px; line-height: 1.75; color: var(--stone); margin-bottom: 14px; }
.utility-page ul { padding-left: 20px; margin-bottom: 20px; }
.utility-page a { text-decoration: underline; color: var(--ink); }
.utility-page .utility-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.utility-page .eyebrow { margin-bottom: 20px; }

.notfound-page main { text-align: center; }
.notfound-code {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 120px);
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}

/* Fix button text on utility pages */
.utility-page a.btn-primary {
  color: var(--paper) !important;
  text-decoration: none !important;
}
.utility-page a.btn-primary:hover,
.utility-page a.btn-primary:focus,
.utility-page a.btn-primary:focus-visible {
  color: var(--paper) !important;
  text-decoration: none !important;
}
.utility-page a.btn-secondary {
  color: var(--ink) !important;
  text-decoration: none !important;
}
