:root {
  --espresso: #24140f;
  --espresso-soft: #342018;
  --cacao: #4a3026;
  --ivory: #f5f0e8;
  --paper: #fbf8f2;
  --taupe: #a78f7c;
  --sand: #dfd2c2;
  --gold: #b58a52;
  --gold-light: #d9b57e;
  --ink: #291d18;
  --muted: #766960;
  --line: rgba(59, 38, 29, .16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Parisienne", cursive;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { margin-bottom: 1.65rem; font-size: clamp(3.75rem, 5.8vw, 6.55rem); }
h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 4.5vw, 5.3rem); }
h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1.08; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: .75rem 1rem;
  background: white;
  color: var(--espresso);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.25rem;
  min-height: 102px;
  padding: env(safe-area-inset-top) max(26px, calc((100vw - var(--max)) / 2)) 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 242, .95);
  backdrop-filter: blur(18px);
}
.logo-crop {
  position: relative;
  display: block;
  width: 176px;
  aspect-ratio: 1019 / 600;
  overflow: hidden;
  background: transparent;
}
.logo-crop img {
  position: absolute;
  top: -49.2%;
  left: -11.48%;
  width: 123.06%;
  max-width: none;
}
nav { display: flex; gap: 2rem; }
nav a {
  color: #55463f;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover, nav a:focus-visible { color: var(--gold); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.55rem;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .115em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-compact { min-height: 44px; padding: .72rem 1.1rem; font-size: .65rem; }
.button-light { border-color: var(--ivory); background: var(--ivory); color: var(--espresso); }
.button-light:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-wide { width: 100%; }

.eyebrow {
  margin-bottom: 1.05rem;
  color: #85694c;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
.script-word {
  display: block;
  margin: 0 0 -.18em .04em;
  color: var(--gold-light);
  font-family: var(--script);
  font-size: .7em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .85;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  grid-template-rows: auto auto;
  min-height: calc(100svh - 102px);
  background: var(--espresso);
  color: white;
}
.hero-copy {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(38px, 6.5vw, 105px) clamp(70px, 8vw, 120px) max(28px, calc((100vw - var(--max)) / 2));
}
.hero h1 { max-width: 790px; }
.hero .lead {
  max-width: 710px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; }
.text-link {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link-light { color: rgba(255,255,255,.72); }
.text-link span { display: inline-block; margin-left: .45rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(4px); }
.microcopy { max-width: 600px; margin: 1rem 0 0; color: rgba(255,255,255,.4); font-size: .69rem; line-height: 1.5; }
.hero-portrait { position: relative; min-height: 700px; margin: 0; overflow: hidden; background: #83766b; }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36,20,15,.2), transparent 32%), linear-gradient(0deg, rgba(36,20,15,.46), transparent 40%);
  pointer-events: none;
}
.hero-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 22%; }
.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.8);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.institution-stamp {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 30px;
  display: flex;
  width: 142px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 2px solid rgba(178, 133, 69, .95);
  border-radius: 50%;
  background: rgba(244, 237, 224, .94);
  box-shadow: 0 10px 28px rgba(31, 19, 14, .22), inset 0 0 0 3px rgba(255,255,255,.7);
  color: var(--espresso);
  text-align: center;
  backdrop-filter: blur(8px);
}
.institution-stamp::before,
.institution-stamp::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.institution-stamp::before { inset: 7px; border: 1px solid rgba(99, 65, 46, .72); }
.institution-stamp::after { inset: 12px; border: 1px solid rgba(178, 133, 69, .45); }
.institution-stamp > * { position: relative; z-index: 1; }
.seal-eyebrow {
  padding-bottom: .38rem;
  border-bottom: 1px solid rgba(99, 65, 46, .45);
  font-size: .43rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.institution-stamp strong {
  margin-top: .42rem;
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .065em;
  line-height: 1.05;
  text-transform: uppercase;
}
.institution-stamp strong em {
  display: block;
  margin-top: .12rem;
  font-size: 1.02rem;
  font-style: normal;
  letter-spacing: .04em;
}
.seal-year {
  margin-top: .24rem;
  font-family: var(--serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.seal-scope {
  margin-top: .3rem;
  font-size: .39rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-facts {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,255,255,.12);
  list-style: none;
}
.hero-facts li { display: flex; min-height: 116px; flex-direction: column; justify-content: center; padding: 1.5rem clamp(18px, 3vw, 46px); border-left: 1px solid rgba(255,255,255,.12); }
.hero-facts li:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.hero-facts strong { font-family: var(--serif); font-size: clamp(1.75rem, 2.5vw, 2.45rem); font-weight: 500; line-height: 1; }
.hero-facts span { margin-top: .5rem; color: rgba(255,255,255,.48); font-size: .69rem; }

.proof-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.proof-line p { display: flex; min-height: 142px; flex-direction: column; justify-content: center; margin: 0; padding: 1.5rem clamp(18px, 2.6vw, 38px); border-left: 1px solid var(--line); }
.proof-line p:last-child { border-right: 1px solid var(--line); }
.proof-line strong { font-family: var(--serif); font-size: clamp(1.65rem, 2.25vw, 2.3rem); font-weight: 500; line-height: 1; }
.proof-line span { margin-top: .55rem; color: var(--muted); font-size: .68rem; line-height: 1.35; }

.section { padding: clamp(92px, 11vw, 164px) max(24px, calc((100vw - var(--max)) / 2)); }
.split-heading { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(45px, 7vw, 105px); align-items: start; }
.split-heading .eyebrow { padding-top: .75rem; }
.split-heading h2 { max-width: 940px; }
.section-heading { max-width: 960px; }
.section-heading.narrow { max-width: 880px; }
.section-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.05rem; }

.diagnosis { background: var(--paper); }
.diagnosis-list { margin-top: clamp(60px, 8vw, 112px); border-top: 1px solid var(--line); }
.diagnosis-list article {
  display: grid;
  grid-template-columns: 90px minmax(280px, .75fr) 1fr;
  gap: clamp(24px, 5vw, 82px);
  align-items: start;
  padding: clamp(30px, 4.4vw, 62px) 0;
  border-bottom: 1px solid var(--line);
}
.index { color: var(--gold); font-family: var(--serif); font-size: 1rem; }
.diagnosis-list h3 { margin-bottom: 0; font-size: clamp(1.8rem, 2.6vw, 2.7rem); }
.diagnosis-list p { max-width: 620px; margin-bottom: 0; color: var(--muted); }

.point-of-view { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 830px; background: var(--espresso); color: white; }
.editorial-photo { position: relative; min-height: 680px; margin: 0; overflow: hidden; }
.editorial-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(36,20,15,.52)); }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.point-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(80px, 10vw, 155px) max(30px, calc((100vw - var(--max)) / 2)); padding-left: clamp(50px, 8vw, 124px); }
.point-copy h2 { max-width: 820px; }
.point-copy > p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.62); font-size: 1.06rem; }
.point-copy blockquote {
  max-width: 820px;
  margin: clamp(46px, 6vw, 78px) 0 0;
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.25vw, 3.65rem);
  line-height: 1.08;
}

.results { background: var(--ivory); }
.result-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(52px, 8vw, 120px); margin: clamp(60px, 8vw, 105px) 0 0; padding: 0; list-style: none; }
.result-list li { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 2.1rem 0; border-top: 1px solid var(--line); }
.result-list > li > span { color: var(--gold); font-family: var(--serif); }
.result-list h3 { margin-bottom: .6rem; }
.result-list p { margin: 0; color: var(--muted); font-size: .91rem; }

.program-section { display: grid; grid-template-columns: .83fr 1.17fr; background: var(--paper); }
.program-visual { position: sticky; top: 102px; align-self: start; height: calc(100svh - 102px); min-height: 680px; overflow: hidden; background: #d9d1c8; }
.program-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(36,20,15,.62), transparent 52%); }
.program-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.program-visual > p { position: absolute; z-index: 2; right: clamp(24px, 4vw, 60px); bottom: clamp(26px, 5vw, 72px); left: clamp(24px, 4vw, 60px); max-width: 430px; margin: 0; color: rgba(255,255,255,.72); }
.program-visual > p span { display: block; margin-bottom: .6rem; color: white; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.6rem); line-height: 1; }
.program-copy { padding: clamp(90px, 11vw, 160px) max(28px, calc((100vw - var(--max)) / 2)) clamp(90px, 11vw, 160px) clamp(52px, 8vw, 128px); }
.program-copy header { max-width: 760px; }
.timeline { margin: clamp(50px, 7vw, 85px) 0 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 1.75rem 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline > li > span { color: var(--gold); font-family: var(--serif); }
.timeline strong { display: block; margin-bottom: .35rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1; }
.timeline p { max-width: 610px; margin: 0; color: var(--muted); font-size: .9rem; }

.included { background: #e7dccf; }
.compact-heading h2 { max-width: 850px; }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(64px, 8vw, 110px); border-top: 1px solid rgba(59,38,29,.18); border-bottom: 1px solid rgba(59,38,29,.18); }
.metrics-row article { min-height: 320px; padding: clamp(30px, 3.2vw, 48px); border-left: 1px solid rgba(59,38,29,.18); }
.metrics-row article:last-child { border-right: 1px solid rgba(59,38,29,.18); }
.metrics-row strong { display: block; color: var(--cacao); font-family: var(--serif); font-size: clamp(3.2rem, 4.5vw, 5.3rem); font-weight: 500; line-height: .9; }
.metrics-row h3 { margin: clamp(50px, 7vw, 82px) 0 .8rem; font-size: 1.45rem; }
.metrics-row p { margin: 0; color: var(--muted); font-size: .85rem; }
.certificate-feature { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); margin-top: clamp(64px, 8vw, 110px); background: var(--espresso); color: white; }
.certificate-feature figure { min-height: 640px; margin: 0; overflow: hidden; }
.certificate-feature img { width: 100%; height: 100%; object-fit: cover; }
.certificate-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 7vw, 105px); }
.certificate-copy h3 { max-width: 620px; margin: 0 0 1.4rem; font-size: clamp(2.7rem, 4.2vw, 4.8rem); }
.certificate-copy > p:not(.eyebrow) { max-width: 570px; margin: 0; color: rgba(255,255,255,.68); font-size: 1rem; }
.support-note { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(40px, 7vw, 105px); align-items: baseline; margin-top: clamp(58px, 8vw, 100px); }
.support-note .script-word { color: #8b6641; font-size: clamp(4rem, 7vw, 7rem); }
.support-note ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid rgba(59,38,29,.18); list-style: none; }
.support-note li { position: relative; padding: 1.15rem 1rem 1.15rem 1.4rem; border-bottom: 1px solid rgba(59,38,29,.18); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.15; }
.support-note li:nth-child(odd) { border-right: 1px solid rgba(59,38,29,.18); }
.support-note li::before { content: "•"; position: absolute; top: 1.08rem; left: 0; color: var(--gold); font-family: var(--sans); font-size: .72rem; }

.contrast-section { display: grid; grid-template-columns: .72fr 1.28fr; background: var(--espresso); color: white; }
.contrast-intro { padding: clamp(80px, 10vw, 150px) clamp(36px, 6vw, 100px) clamp(80px, 10vw, 150px) max(28px, calc((100vw - var(--max)) / 2)); }
.contrast-intro h2 { max-width: 580px; font-size: clamp(3rem, 4vw, 4.65rem); }
.contrast-columns { display: grid; grid-template-columns: 1fr 1fr; }
.contrast-column { padding: clamp(70px, 9vw, 140px) clamp(30px, 5vw, 70px); }
.contrast-column.muted { background: #ddd1c4; color: #655850; }
.contrast-column.accent { background: #422a20; color: white; }
.column-label { margin-bottom: 3rem; font-size: .66rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.contrast-column ul { margin: 0; padding: 0; list-style: none; }
.contrast-column li { position: relative; padding: 1.15rem 0 1.15rem 1.8rem; border-top: 1px solid rgba(64,42,33,.18); }
.contrast-column.accent li { border-color: rgba(255,255,255,.13); }
.contrast-column li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

.founder { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(70px, 10vw, 145px); align-items: center; min-height: 850px; background: var(--paper); }
.founder-images { position: relative; min-height: 680px; }
.founder-image { position: absolute; margin: 0; overflow: hidden; box-shadow: 0 28px 70px rgba(49,31,23,.15); }
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-image-back { top: 0; left: 0; width: 58%; height: 74%; }
.founder-image-back img { object-position: center 23%; }
.founder-image-front { right: 0; bottom: 0; width: 61%; height: 78%; border: 12px solid var(--paper); }
.founder-image-front img { object-position: center 22%; }
.founder-copy > p:not(.eyebrow) { max-width: 690px; color: var(--muted); }
.founder-copy blockquote { max-width: 720px; margin: 3rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--gold); font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.8rem); line-height: 1.16; }

.fit { background: var(--ivory); }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); margin-top: clamp(64px, 8vw, 105px); }
.fit-columns article { padding-top: 2.5rem; border-top: 1px solid var(--gold); }
.fit-columns h3 { margin-bottom: 1.5rem; }
.fit-columns ul { margin: 0; padding: 0; list-style: none; }
.fit-columns li { position: relative; padding: .88rem 0 .88rem 2rem; border-top: 1px solid var(--line); }
.fit-columns li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.fit-columns .fit-no { border-color: rgba(59,38,29,.28); }
.fit-columns .fit-no li::before { content: "×"; }

.investment { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 9vw, 130px); padding: clamp(96px, 12vw, 175px) max(28px, calc((100vw - var(--max)) / 2)); background: var(--espresso); color: white; }
.investment-copy > ul { margin: 3rem 0 0; padding: 0; list-style: none; }
.investment-copy li { position: relative; padding: .95rem 0 .95rem 2rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.64); }
.investment-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }
.price-panel { align-self: center; padding: clamp(38px, 5vw, 66px); border: 1px solid rgba(217,181,126,.46); background: #382219; text-align: center; }
.price-label { color: rgba(255,255,255,.47); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.price { display: flex; align-items: baseline; justify-content: center; gap: .5rem; margin-bottom: .7rem; font-family: var(--serif); }
.price span { font-size: clamp(5.2rem, 7.5vw, 8rem); line-height: .9; }
.installments { margin-bottom: 2rem; color: rgba(255,255,255,.58); }
.installments strong { color: white; font-weight: 500; }
.price-panel small { display: block; margin-top: 1.4rem; color: rgba(255,255,255,.4); font-size: .68rem; line-height: 1.5; }

.faq { display: grid; grid-template-columns: .44fr 1fr; gap: clamp(60px, 9vw, 135px); background: var(--paper); }
.faq .section-heading { position: sticky; top: 140px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 1.55rem 3.5rem 1.55rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.2; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .5rem; top: 1.35rem; color: var(--gold); font-family: var(--sans); font-size: 1.35rem; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; padding: 0 3.5rem 1.8rem 0; color: var(--muted); font-size: .92rem; }

.final-cta { padding: clamp(105px, 14vw, 195px) max(28px, calc((100vw - 960px) / 2)); background: #3a241b; color: white; text-align: center; }
.final-cta h2 { max-width: 960px; margin-inline: auto; }
.final-cta > p:not(.eyebrow) { max-width: 760px; margin: 0 auto 2.4rem; color: rgba(255,255,255,.62); font-size: 1.05rem; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 58px max(28px, calc((100vw - var(--max)) / 2)) 80px;
  background: #1b0f0b;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
}
footer .logo-crop { width: 164px; background: transparent; }
footer p { margin: 0; }
footer a { text-underline-offset: 3px; }
.mobile-cta { display: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 28px; }
  .point-of-view { grid-template-columns: .72fr 1.28fr; }
  .program-section { grid-template-columns: .75fr 1.25fr; }
  .metrics-row { grid-template-columns: repeat(3, 1fr); }
  .contrast-section { grid-template-columns: 1fr; }
  .contrast-intro { padding-right: max(28px, calc((100vw - var(--max)) / 2)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 82px; padding-inline: 18px; }
  .site-header > .button { display: none; }
  .logo-crop { width: 128px; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 0; }
  .hero-copy { min-height: 0; padding: 76px 22px 62px; }
  .hero h1 { max-width: 620px; font-size: clamp(3.25rem, 13.6vw, 4.35rem); line-height: .97; }
  .hero .lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .hero-actions .button { width: 100%; }
  .text-link { padding-left: .15rem; }
  .hero-portrait { min-height: 0; aspect-ratio: 4 / 5; }
  .hero-portrait > img { object-position: 52% 20%; }
  .hero-portrait figcaption { display: none; }
  .institution-stamp { top: 18px; right: 18px; width: 128px; padding: 18px; }
  .seal-eyebrow { font-size: .37rem; }
  .institution-stamp strong { font-size: .66rem; }
  .institution-stamp strong em { font-size: .86rem; }
  .seal-scope { font-size: .34rem; }
  .seal-year { font-size: .61rem; }
  .hero-facts { grid-template-columns: 1fr; padding: 0 22px; }
  .hero-facts li { min-height: 84px; padding: 1.2rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .hero-facts li:last-child { border-right: 0; border-bottom: 0; }
  .hero-facts strong { font-size: 1.75rem; }
  .proof-line { grid-template-columns: 1fr 1fr; padding: 0 22px; }
  .proof-line p { min-height: 112px; padding: 1.2rem 14px; }
  .proof-line p:nth-child(2) { border-right: 1px solid var(--line); }
  .proof-line p:nth-child(n+3) { border-top: 1px solid var(--line); }
  .section { padding: 86px 22px; }
  h2 { font-size: clamp(2.65rem, 11.2vw, 3.65rem); }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .split-heading .eyebrow { padding-top: 0; }
  .diagnosis-list { margin-top: 48px; }
  .diagnosis-list article { grid-template-columns: 44px 1fr; gap: 14px; padding: 32px 0; }
  .diagnosis-list article p { grid-column: 2; }
  .diagnosis-list h3 { font-size: 2rem; }
  .point-of-view { grid-template-columns: 1fr; min-height: 0; }
  .editorial-photo { min-height: 0; aspect-ratio: 4 / 5; }
  .editorial-photo::after { background: linear-gradient(0deg, rgba(36,20,15,.35), transparent 45%); }
  .point-copy { padding: 84px 22px 92px; }
  .point-copy blockquote { font-size: 2.15rem; }
  .result-list { grid-template-columns: 1fr; margin-top: 50px; }
  .program-section { grid-template-columns: 1fr; }
  .program-visual { position: relative; top: 0; height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .program-copy { padding: 86px 22px; }
  .timeline { margin-top: 44px; }
  .metrics-row { grid-template-columns: 1fr; margin-top: 50px; }
  .metrics-row article { min-height: auto; padding: 34px 0; border-right: 0 !important; border-left: 0; border-top: 1px solid rgba(59,38,29,.18); }
  .metrics-row article:first-child { border-top: 0; }
  .metrics-row h3 { margin: 2.4rem 0 .7rem; }
  .certificate-feature { grid-template-columns: 1fr; margin-top: 58px; }
  .certificate-feature figure { min-height: 0; aspect-ratio: 4 / 5; }
  .certificate-copy { padding: 58px 24px 64px; }
  .certificate-copy h3 { font-size: 2.8rem; }
  .support-note { grid-template-columns: 1fr; gap: .5rem; margin-top: 54px; }
  .support-note .script-word { font-size: 4.8rem; }
  .support-note ul { grid-template-columns: 1fr; }
  .support-note li { padding: 1rem .25rem 1rem 1.3rem; font-size: 1.55rem; }
  .support-note li:nth-child(odd) { border-right: 0; }
  .support-note li::before { top: .95rem; }
  .contrast-columns { grid-template-columns: 1fr; }
  .contrast-intro { padding: 86px 22px; }
  .contrast-column { padding: 64px 24px; }
  .founder { grid-template-columns: 1fr; gap: 70px; }
  .founder-images { min-height: 560px; }
  .founder-image-back { width: 61%; height: 70%; }
  .founder-image-front { width: 65%; height: 74%; border-width: 8px; }
  .fit-columns { grid-template-columns: 1fr; gap: 56px; margin-top: 54px; }
  .investment { grid-template-columns: 1fr; padding: 90px 22px; }
  .price-panel { padding: 38px 22px; }
  .price span { font-size: clamp(4.8rem, 22vw, 6.4rem); }
  .faq { grid-template-columns: 1fr; gap: 46px; }
  .faq .section-heading { position: static; }
  summary { padding-right: 3rem; font-size: 1.3rem; }
  .final-cta { padding: 96px 22px; }
  footer { grid-template-columns: 1fr; gap: 1.5rem; padding: 48px 22px 42px; }
  footer .logo-crop { width: 145px; }
  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(70px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: var(--gold);
    color: var(--espresso);
    box-shadow: 0 -10px 35px rgba(36,20,15,.22);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-cta strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: 0; white-space: nowrap; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 3.15rem; }
  .proof-line { grid-template-columns: 1fr; }
  .proof-line p { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .proof-line p:first-child { border-top: 0; }
  .founder-images { min-height: 490px; }
  .mobile-cta { padding-inline: 16px; font-size: .61rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
