@font-face {
  font-family: "Onest";
  src: url("/assets/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("/assets/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  src: url("/assets/prata-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  src: url("/assets/prata-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #17130f;
  --ink-soft: #40372f;
  --night: #0b0907;
  --night-2: #12100d;
  --bone: #e8e0d1;
  --bone-bright: #f5efe4;
  --bone-muted: #b7ac9a;
  --clay: #8d4b33;
  --clay-dark: #5f2f21;
  --bronze: #8f7b57;
  --line-dark: rgba(232, 224, 209, 0.19);
  --line-light: rgba(23, 19, 15, 0.2);
  --gutter: clamp(22px, 4vw, 72px);
  --max: 1440px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--night);
  color-scheme: dark;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--bone);
  font-family: "Onest", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::selection, ::selection {
  background: var(--clay);
  color: var(--bone-bright);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p, blockquote { margin: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--bone-bright);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--bone-bright);
  outline-offset: 5px;
}

.scroll-progress {
  position: fixed;
  z-index: 190;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.page-grain {
  position: fixed;
  z-index: 180;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: .032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grain .28s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(-1%, -1%, 0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3 { font-weight: 400; }
h1 em, h2 em { color: var(--bronze); font-family: "Prata", Georgia, serif; font-style: normal; }

.site-header {
  position: fixed;
  z-index: 170;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px var(--gutter);
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, min-height .4s var(--ease);
}

.site-header.is-compact {
  min-height: 68px;
  background: rgba(11, 9, 7, .86);
  border-color: rgba(232, 224, 209, .11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.identity {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.identity-mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  color: var(--bone-bright);
  border: 1px solid rgba(232, 224, 209, .45);
  border-radius: 50%;
  font-family: "Prata", Georgia, serif;
  font-size: 15px;
}

.identity-copy { display: grid; line-height: 1.1; }
.identity-copy b { font-size: 12px; letter-spacing: .12em; }
.identity-copy small { margin-top: 4px; color: var(--bone-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  color: var(--bone-muted);
  font-size: 12px;
}

.main-nav a, .header-cta, .text-link, .footer-links a { transition: color .2s ease; }
.main-nav a:hover, .header-cta:hover, .text-link:hover, .footer-links a:hover { color: var(--bone-bright); }

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  letter-spacing: .06em;
}

.header-cta span { color: var(--bronze); font-size: 15px; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #080705;
}

.hero-art, .hero-art img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art { z-index: -4; }
.hero-art img {
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.045) translate3d(var(--pointer-x, 0), calc(var(--hero-shift, 0px) + var(--pointer-y, 0)), 0);
  transform-origin: 62% 50%;
  filter: saturate(.82) contrast(1.05);
  transition: transform .2s linear;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, .97) 0%, rgba(8, 7, 5, .93) 28%, rgba(8, 7, 5, .43) 54%, rgba(8, 7, 5, .08) 76%),
    linear-gradient(0deg, rgba(8, 7, 5, .74) 0%, transparent 28%, transparent 68%, rgba(8, 7, 5, .24) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 68% 40%, transparent 0 22%, rgba(8, 7, 5, .13) 52%, rgba(8, 7, 5, .45) 100%);
  pointer-events: none;
}

.hero-drawing {
  position: absolute;
  z-index: -2;
  top: 50%;
  right: 4vw;
  width: min(58vw, 850px);
  color: var(--bronze);
  opacity: .14;
  transform: translateY(-50%) rotate(var(--diagram-rotation, 0deg));
  transition: transform .3s linear;
}

.hero-drawing circle, .hero-drawing path { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }

.hero-copy {
  width: min(850px, 58vw);
  padding: clamp(120px, 14vh, 170px) var(--gutter) clamp(110px, 12vh, 150px);
}

.hero-eyebrow { margin-bottom: clamp(22px, 3vh, 38px); }

.hero h1 {
  max-width: 850px;
  color: var(--bone-bright);
  font-size: clamp(43px, 5.2vw, 91px);
  letter-spacing: -.054em;
  line-height: .95;
  text-wrap: balance;
}

.hero h1 em { font-size: .94em; letter-spacing: -.035em; }

.hero-lead {
  max-width: 650px;
  margin-top: clamp(26px, 4vh, 44px);
  color: #c7bdad;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .015em;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--clay); color: var(--bone-bright); }
.button-primary:hover { background: #9b553a; }
.button-ink { background: var(--ink); color: var(--bone-bright); }
.button-ink:hover { background: #2a221c; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone-muted);
  font-size: 12px;
  white-space: nowrap;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 22px;
  color: var(--bone-muted);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-price strong { color: var(--bone-bright); font-size: 14px; font-weight: 500; }
.hero-price span { color: var(--bronze); }

.hero-formula {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 224, 209, .48);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-formula i { display: block; width: 24px; height: 1px; background: rgba(232, 224, 209, .28); }

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232, 224, 209, .52);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue span { position: relative; width: 38px; height: 1px; overflow: hidden; background: rgba(232, 224, 209, .25); }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--bone); transform: translateX(-100%); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 45%, 100% { transform: translateX(100%); } }

[data-hero-item] { opacity: 0; transform: translateY(28px); }
.is-loaded [data-hero-item] { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.is-loaded [data-hero-item]:nth-child(2) { transition-delay: .1s; }
.is-loaded [data-hero-item]:nth-child(3) { transition-delay: .2s; }
.is-loaded [data-hero-item]:nth-child(4) { transition-delay: .3s; }
.is-loaded [data-hero-item]:nth-child(5) { transition-delay: .4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

.method {
  position: relative;
  padding: clamp(120px, 16vw, 250px) var(--gutter) clamp(110px, 14vw, 220px);
  overflow: hidden;
  background: var(--night-2);
}

.section-index {
  position: absolute;
  top: 70px;
  right: var(--gutter);
  color: rgba(232, 224, 209, .07);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(170px, 26vw, 410px);
  line-height: 1;
  pointer-events: none;
}

.section-index::before { content: attr(data-index); }

.method-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr);
  gap: 8vw;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
}

.method-intro .eyebrow { grid-column: 1 / -1; }

.method-intro h2, .program-head h2, .practice-head h2, .formats-head h2, .outcome-head h2, .final-copy h2 {
  color: var(--bone-bright);
  font-size: clamp(38px, 5.4vw, 82px);
  letter-spacing: -.052em;
  line-height: .98;
}

.method-intro > p:last-child, .program-head > p, .practice-head > p {
  max-width: 480px;
  color: var(--bone-muted);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

.counterpoints {
  max-width: var(--max);
  margin: clamp(100px, 13vw, 190px) auto 0;
  border-top: 1px solid var(--line-dark);
}

.counterpoint {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(110px, .35fr) minmax(260px, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 132px;
  border-bottom: 1px solid var(--line-dark);
}

.counterpoint span { color: var(--bronze); font-size: clamp(12px, 1vw, 15px); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.counterpoint strong { color: var(--bone-bright); font-family: "Prata", Georgia, serif; font-size: clamp(24px, 2.3vw, 38px); font-weight: 400; }
.counterpoint svg { width: 100%; color: rgba(143, 123, 87, .65); }
.counterpoint svg path { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }

.method-quote {
  position: relative;
  max-width: 940px;
  margin: clamp(120px, 15vw, 210px) auto 0;
  padding-left: clamp(30px, 5vw, 78px);
}

.method-quote > span {
  position: absolute;
  top: -58px;
  left: -20px;
  color: rgba(143, 123, 87, .3);
  font-family: "Prata", Georgia, serif;
  font-size: 180px;
  line-height: 1;
}

.method-quote p {
  position: relative;
  color: var(--bone-bright);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(27px, 3.2vw, 52px);
  line-height: 1.34;
}

.program {
  padding: clamp(110px, 14vw, 210px) var(--gutter);
  background: var(--bone);
  color: var(--ink);
}

.program .eyebrow { color: var(--clay); }
.program-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .65fr);
  gap: 9vw;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
}

.program-head .eyebrow { margin-bottom: 28px; }
.program-head h2 { color: var(--ink); }
.program-head h2 em { color: var(--clay); }
.program-head > p { color: #655b50; }

.curriculum {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(460px, 1fr);
  gap: clamp(50px, 9vw, 150px);
  max-width: var(--max);
  margin: clamp(90px, 12vw, 170px) auto 0;
}

.atelier-sticky { position: relative; }
.atelier-window {
  position: sticky;
  top: 110px;
  height: min(68vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: var(--night);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 84% 100%, 0 100%);
}

.atelier-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 9, 7, .82) 100%);
  pointer-events: none;
}

.atelier-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% center;
  filter: saturate(.55) contrast(1.06);
  transform: scale(1.1) translate3d(0, var(--atelier-shift, 0px), 0);
  transition: object-position .8s var(--ease), transform .6s var(--ease);
}

.atelier-window[data-current-step="02"] img { object-position: 78% center; }
.atelier-window[data-current-step="03"] img { object-position: 69% 38%; }
.atelier-window[data-current-step="04"] img { object-position: 62% 54%; }
.atelier-window[data-current-step="05"] img { object-position: 84% 48%; }

.atelier-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .25;
  background-image: linear-gradient(rgba(232, 224, 209, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 224, 209, .18) 1px, transparent 1px);
  background-size: 25% 25%;
  mix-blend-mode: soft-light;
}

.atelier-number {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 28px;
  color: var(--bone-bright);
  font-family: "Prata", Georgia, serif;
  font-size: 56px;
  line-height: 1;
}

.atelier-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  max-width: 160px;
  color: var(--bone-muted);
  font-size: 9px;
  letter-spacing: .14em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.steps { margin: 0; padding: 0; list-style: none; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: clamp(24px, 4vw, 58px);
  min-height: 76vh;
  padding: 12vh 0;
  border-top: 1px solid var(--line-light);
}

.step:last-child { border-bottom: 1px solid var(--line-light); }
.step-number { color: var(--clay); font-family: "Prata", Georgia, serif; font-size: 19px; }
.step-kicker { margin-bottom: 17px; color: #766b5f; font-size: 10px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.step h3 { max-width: 590px; font-size: clamp(29px, 3vw, 48px); letter-spacing: -.04em; line-height: 1.08; }
.step p:not(.step-kicker) { max-width: 580px; margin-top: 23px; color: #584f45; font-size: clamp(14px, 1.2vw, 17px); line-height: 1.75; }
.step small { display: block; max-width: 580px; margin-top: 34px; padding-top: 16px; color: var(--clay-dark); border-top: 1px solid rgba(95, 47, 33, .25); font-size: 11px; font-weight: 600; }

.price-statement {
  display: grid;
  grid-template-columns: .4fr 1fr .8fr auto;
  align-items: center;
  gap: 34px;
  max-width: var(--max);
  margin: clamp(100px, 12vw, 170px) auto 0;
  padding: 36px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.price-statement > p { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.price-statement > strong { font-family: "Prata", Georgia, serif; font-size: clamp(36px, 4vw, 64px); font-weight: 400; white-space: nowrap; }
.price-statement > strong small { font-family: "Onest", Arial, sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.price-statement > span { max-width: 290px; color: #5f564c; font-size: 12px; line-height: 1.6; }

.outcome {
  position: relative;
  padding: clamp(120px, 16vw, 240px) var(--gutter);
  overflow: hidden;
  background: var(--clay-dark);
  color: var(--bone);
}

.outcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 22%, rgba(232, 224, 209, .09), transparent 33%), linear-gradient(120deg, rgba(0, 0, 0, .08), transparent 55%);
}

.outcome-orbit { position: absolute; top: -20vw; right: -8vw; width: min(66vw, 940px); aspect-ratio: 1; opacity: .18; }
.outcome-orbit span { position: absolute; inset: 0; border: 1px solid var(--bone); border-radius: 50%; }
.outcome-orbit span:nth-child(2) { inset: 15%; }
.outcome-orbit span:nth-child(3) { inset: 31%; }

.outcome-head, .outcome-lines { position: relative; max-width: var(--max); margin-inline: auto; }
.outcome-head .eyebrow { color: #c6aa91; }
.outcome-head h2 { max-width: 970px; margin-top: 30px; }
.outcome-head h2 em { color: #d2b497; }

.outcome-lines { margin-top: clamp(90px, 12vw, 170px); border-top: 1px solid rgba(232, 224, 209, .3); }
.outcome-lines article {
  display: grid;
  grid-template-columns: 54px minmax(260px, .9fr) minmax(280px, .8fr);
  gap: 5vw;
  align-items: start;
  padding: clamp(34px, 4vw, 58px) 0;
  border-bottom: 1px solid rgba(232, 224, 209, .3);
}

.outcome-lines article > span { color: #c6aa91; font-family: "Prata", Georgia, serif; font-size: 17px; }
.outcome-lines h3 { font-family: "Prata", Georgia, serif; font-size: clamp(23px, 2.5vw, 38px); line-height: 1.25; }
.outcome-lines p { color: #cfbfb0; font-size: clamp(13px, 1.1vw, 16px); line-height: 1.72; }

.practice {
  position: relative;
  padding: clamp(120px, 16vw, 240px) var(--gutter);
  overflow: hidden;
  background: var(--night-2);
}

.practice-head { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; text-align: center; }
.practice-head .eyebrow { justify-content: center; }
.practice-head h2 { margin-top: 32px; }
.practice-head > p { margin: 42px auto 0; }

.credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 2vw, 30px);
  max-width: var(--max);
  margin: clamp(80px, 10vw, 130px) auto 0;
  padding: 27px 0;
  overflow: hidden;
  color: var(--bone-muted);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(15px, 1.5vw, 23px);
  white-space: nowrap;
}

.credentials i { width: 4px; aspect-ratio: 1; border-radius: 50%; background: var(--clay); }

.case-ledger { max-width: var(--max); margin: clamp(80px, 11vw, 155px) auto 0; border-top: 1px solid var(--line-dark); }
.case-ledger article {
  display: grid;
  grid-template-columns: 46px minmax(250px, .8fr) minmax(300px, 1fr) minmax(190px, .55fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: center;
  min-height: 170px;
  border-bottom: 1px solid var(--line-dark);
}

.case-index { color: var(--bronze); font-family: "Prata", Georgia, serif; font-size: 17px; }
.case-ledger small { color: #70665c; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.case-ledger h3 { margin-top: 8px; color: var(--bone-bright); font-size: clamp(20px, 1.9vw, 30px); letter-spacing: -.025em; line-height: 1.2; }
.case-ledger p { color: var(--bone-muted); font-size: 13px; line-height: 1.65; }
.case-proof {
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 104px;
  padding-left: clamp(22px, 3vw, 44px);
  border-left: 1px solid rgba(143, 123, 87, .42);
}
.case-proof > span { margin-bottom: 8px; color: #70665c; font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.case-proof strong { color: var(--bone-bright); font-family: "Prata", Georgia, serif; font-size: clamp(24px, 2.25vw, 36px); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; }
.case-proof small { color: var(--bronze); font-size: 9px; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.case-proof small + strong { margin-top: 13px; }

.formats {
  padding: clamp(110px, 14vw, 210px) var(--gutter);
  background: #d5c8b5;
  color: var(--ink);
}

.formats-head { max-width: var(--max); margin: 0 auto; }
.formats-head .eyebrow { color: var(--clay); }
.formats-head h2 { max-width: 1010px; margin-top: 30px; color: var(--ink); }
.formats-head h2 em { color: var(--clay); }

.format-list { max-width: var(--max); margin: clamp(80px, 11vw, 150px) auto 0; border-top: 1px solid var(--ink); }
.format-list article {
  display: grid;
  grid-template-columns: 70px minmax(320px, 1fr) minmax(190px, .45fr);
  gap: 5vw;
  align-items: center;
  min-height: 240px;
  padding: 42px 0;
  border-bottom: 1px solid var(--ink);
}

.format-number { color: var(--clay); font-family: "Prata", Georgia, serif; font-size: 53px; }
.format-list h3 { font-family: "Prata", Georgia, serif; font-size: clamp(29px, 3.1vw, 50px); line-height: 1.1; }
.format-list p { max-width: 740px; margin-top: 20px; color: #584f45; font-size: 14px; line-height: 1.72; }
.format-list strong { justify-self: end; max-width: 190px; color: var(--clay-dark); font-size: 11px; letter-spacing: .08em; line-height: 1.5; text-align: right; text-transform: uppercase; }

.faq {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(480px, 1fr);
  gap: 10vw;
  padding: clamp(110px, 15vw, 220px) var(--gutter);
  background: var(--night);
}

.faq-head { align-self: start; position: sticky; top: 110px; }
.faq-head h2 { margin-top: 28px; color: var(--bone-bright); font-size: clamp(42px, 5vw, 76px); letter-spacing: -.05em; line-height: 1; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 110px;
  padding: 22px 0;
  color: var(--bone-bright);
  cursor: pointer;
  font-size: clamp(17px, 1.4vw, 22px);
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; flex: 0 0 24px; width: 24px; height: 24px; }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--bronze); transition: transform .35s var(--ease); }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details p { max-width: 700px; padding: 0 54px 35px 0; color: var(--bone-muted); font-size: 14px; line-height: 1.75; }

.final-cta {
  position: relative;
  display: grid;
  min-height: 95svh;
  align-items: center;
  padding: clamp(120px, 15vw, 220px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  background: var(--night-2);
}

.final-art {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, .96) 0%, rgba(11, 9, 7, .83) 45%, rgba(11, 9, 7, .18) 77%), url("/assets/hero-marble-1536.webp");
  background-position: center, 69% 54%;
  background-size: cover, cover;
  filter: grayscale(.15) saturate(.6);
  transform: scaleX(-1) scale(1.03);
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 9, 7, .75), transparent 46%, rgba(11, 9, 7, .3));
}

.final-cta > svg {
  position: absolute;
  z-index: -1;
  right: 4vw;
  top: 50%;
  width: min(56vw, 760px);
  color: rgba(232, 224, 209, .14);
  transform: translateY(-50%);
}

.final-cta > svg circle, .final-cta > svg path { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.final-copy { max-width: 900px; }
.final-copy h2 { margin-top: 30px; }
.final-copy > p:not(.eyebrow) { max-width: 590px; margin-top: 34px; color: var(--bone-muted); font-size: clamp(14px, 1.25vw, 18px); line-height: 1.7; }
.final-copy .button { margin-top: 38px; }
.final-note { display: block; margin-top: 18px; color: #7e7367; font-size: 10px; letter-spacing: .04em; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding: 54px var(--gutter) 38px;
  color: var(--bone-muted);
  border-top: 1px solid var(--line-dark);
  background: var(--night);
}

.site-footer > div:first-child { display: grid; gap: 7px; }
.site-footer strong { color: var(--bone-bright); font-size: 12px; letter-spacing: .15em; }
.site-footer span { font-size: 11px; }
.footer-links { display: flex; gap: 30px; color: var(--bone-bright); font-size: 11px; }
.site-footer small { grid-column: 1 / -1; margin-top: 28px; color: #91867a; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .hero-copy { width: 66vw; }
  .hero h1 { font-size: clamp(46px, 6vw, 68px); }
  .hero-shade { background: linear-gradient(90deg, rgba(8, 7, 5, .97) 0%, rgba(8, 7, 5, .9) 37%, rgba(8, 7, 5, .25) 76%), linear-gradient(0deg, rgba(8, 7, 5, .8), transparent 34%); }
  .curriculum { grid-template-columns: minmax(300px, .72fr) minmax(380px, 1fr); gap: 7vw; }
  .price-statement { grid-template-columns: .35fr 1fr .7fr; }
  .price-statement .button { grid-column: 2 / -1; justify-self: start; }
  .case-ledger article { grid-template-columns: 38px minmax(220px, .8fr) 1fr; }
  .case-proof { grid-column: 2 / -1; width: 100%; margin-bottom: 28px; padding: 22px 0 0; border-top: 1px solid rgba(143, 123, 87, .32); border-left: 0; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; }
  .main-nav { display: none; }
  .identity-copy small { display: none; }

  .hero { align-items: end; min-height: 100svh; padding-top: 64px; }
  .hero-art { height: 58%; bottom: auto; }
  .hero-art img { object-position: 68% 32%; transform: scale(1.03) translate3d(0, var(--hero-shift, 0px), 0); }
  .hero-shade {
    height: 76%;
    bottom: auto;
    background: linear-gradient(0deg, #080705 0%, rgba(8, 7, 5, .55) 45%, rgba(8, 7, 5, .04) 100%), linear-gradient(90deg, rgba(8, 7, 5, .34), transparent 70%);
  }
  .hero::after { background: linear-gradient(0deg, #080705 0 43%, transparent 75%); }
  .hero-drawing { top: 32%; right: -18vw; width: 92vw; }
  .hero-copy { width: 100%; padding: 43vh var(--gutter) 90px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero h1 { max-width: 680px; font-size: clamp(39px, 8vw, 61px); line-height: .97; }
  .hero-lead { max-width: 560px; margin-top: 23px; font-size: 15px; }
  .hero-actions { margin-top: 28px; }
  .hero-formula, .scroll-cue { display: none; }

  .method-intro, .program-head { grid-template-columns: 1fr; gap: 36px; }
  .method-intro .eyebrow { grid-column: auto; }

  .counterpoint { grid-template-columns: 1fr 40px 1fr; gap: 18px; }
  .counterpoint svg { width: 40px; }

  .curriculum { grid-template-columns: 1fr; }
  .atelier-sticky { display: none; }
  .step { min-height: auto; padding: 76px 0; }

  .price-statement { grid-template-columns: 1fr 1fr; }
  .price-statement > p { grid-column: 1 / -1; }
  .price-statement > span { grid-column: 1 / -1; }
  .price-statement .button { grid-column: 1 / -1; }

  .outcome-lines article { grid-template-columns: 42px 1fr; gap: 25px; }
  .outcome-lines p { grid-column: 2; }

  .case-ledger article { grid-template-columns: 34px 1fr; gap: 25px; padding: 36px 0; }
  .case-ledger p, .case-proof { grid-column: 2; }

  .format-list article { grid-template-columns: 58px 1fr; gap: 28px; }
  .format-list strong { grid-column: 2; justify-self: start; text-align: left; }

  .faq { grid-template-columns: 1fr; gap: 68px; }
  .faq-head { position: static; }
}

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

  .site-header { min-height: 64px; }
  .identity-mark { width: 30px; font-size: 13px; }
  .identity-copy b { font-size: 10px; }
  .header-cta { font-size: 11px; }

  .hero-art { height: 53%; }
  .hero-art img { object-position: 66% 24%; }
  .hero-copy { padding-top: 36vh; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(34px, 10.7vw, 47px); letter-spacing: -.055em; }
  .hero-lead { font-size: 13.5px; line-height: 1.57; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button { width: 100%; min-height: 51px; }
  .text-link { justify-content: center; }
  .hero-price { flex-wrap: wrap; margin-top: 18px; }

  .method, .program, .outcome, .practice, .formats, .faq, .final-cta { padding-top: 100px; padding-bottom: 100px; }
  .section-index { top: 44px; right: -10px; }

  .method-intro h2, .program-head h2, .practice-head h2, .formats-head h2, .outcome-head h2, .final-copy h2 { font-size: clamp(34px, 10vw, 48px); }
  .method-intro > p:last-child, .program-head > p, .practice-head > p { font-size: 13.5px; }

  .counterpoints { margin-top: 70px; }
  .counterpoint { grid-template-columns: 1fr; gap: 11px; min-height: 0; padding: 30px 0; }
  .counterpoint svg { display: none; }
  .counterpoint span { font-size: 13px; }
  .counterpoint strong { font-size: 26px; }

  .method-quote { margin-top: 100px; padding-left: 16px; }
  .method-quote > span { top: -50px; left: -10px; font-size: 130px; }
  .method-quote p { font-size: 27px; }

  .program-head .eyebrow, .outcome-head h2, .formats-head h2 { margin-top: 24px; }
  .curriculum { margin-top: 70px; }
  .step { grid-template-columns: 36px 1fr; gap: 18px; padding: 58px 0; }
  .step h3 { font-size: 28px; }
  .step p:not(.step-kicker) { margin-top: 17px; font-size: 13px; }

  .price-statement { grid-template-columns: 1fr; gap: 16px; margin-top: 74px; padding: 28px 0; }
  .price-statement > p, .price-statement > strong, .price-statement > span, .price-statement .button { grid-column: auto; }
  .price-statement > strong { white-space: normal; }

  .outcome-orbit { top: -10vw; right: -45vw; width: 130vw; }
  .outcome-lines { margin-top: 70px; }
  .outcome-lines article { grid-template-columns: 30px 1fr; gap: 18px; padding: 32px 0; }
  .outcome-lines h3 { font-size: 24px; }
  .outcome-lines p { font-size: 13px; }

  .practice-head { text-align: left; }
  .practice-head .eyebrow { justify-content: flex-start; }
  .credentials { justify-content: flex-start; margin-top: 65px; overflow-x: auto; padding-inline: 2px; scrollbar-width: none; }
  .credentials::-webkit-scrollbar { display: none; }

  .case-ledger { margin-top: 68px; }
  .case-ledger article { grid-template-columns: 28px 1fr; gap: 16px; }
  .case-ledger h3 { font-size: 22px; }
  .case-ledger p { font-size: 12.5px; }

  .format-list { margin-top: 68px; }
  .format-list article { grid-template-columns: 1fr; min-height: 0; gap: 20px; padding: 38px 0; }
  .format-number { font-size: 35px; }
  .format-list h3 { font-size: 30px; }
  .format-list p { font-size: 13px; }
  .format-list strong { grid-column: auto; }

  .faq { gap: 52px; }
  .faq summary { min-height: 90px; font-size: 16px; }
  .faq details p { padding-right: 22px; font-size: 13px; }

  .final-cta { min-height: 820px; align-items: end; }
  .final-art { background-image: linear-gradient(0deg, rgba(11, 9, 7, .99) 0%, rgba(11, 9, 7, .82) 51%, rgba(11, 9, 7, .06) 86%), url("/assets/hero-marble-960.webp"); background-position: center, 68% 20%; background-size: cover, auto 58%; background-repeat: no-repeat; transform: scaleX(-1); }
  .final-cta > svg { top: 26%; right: -38vw; width: 125vw; }
  .final-copy > p:not(.eyebrow) { font-size: 13.5px; }

  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .site-footer small { grid-column: auto; }
}

@media (min-width: 561px) and (max-width: 820px) and (max-height: 700px) {
  .hero-copy { padding-top: 27vh; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(36px, 7vw, 44px); }
  .hero-lead { margin-top: 17px; font-size: 13px; line-height: 1.5; }
  .hero-actions { margin-top: 21px; }
  .hero-price { margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-art img { transform: none !important; }
  [data-reveal], [data-hero-item] { opacity: 1 !important; transform: none !important; }
}
