:root {
  --ink: #24332d;
  --ink-soft: #516058;
  --forest: #304b40;
  --forest-dark: #1f382f;
  --moss: #70806a;
  --sage: #dfe7dc;
  --sage-soft: #eef2eb;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --sand: #e9ddca;
  --clay: #b8785c;
  --white: #ffffff;
  --line: rgba(36, 51, 45, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 12px 32px rgba(36, 51, 45, 0.08);
  --shadow-lg: 0 28px 70px rgba(36, 51, 45, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--forest); }
:focus-visible { outline: 3px solid #c88f70; outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container-narrow { width: min(790px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -70px; z-index: 100; padding: 12px 18px; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.announcement { background: var(--forest-dark); color: #e9f0eb; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.announcement .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 253, 248, 0.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { flex: 0 1 310px; }
.logo img { width: 285px; max-height: 66px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 0.9rem; font-weight: 600; }
.nav > a:not(.btn) { position: relative; padding: 10px 0; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 0; height: 1px; background: var(--forest); transition: width 0.2s ease; }
.nav > a:not(.btn):hover::after, .nav > a[aria-current="page"]::after { width: 100%; }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.45rem; cursor: pointer; }
.mobile-menu { display: none; padding: 8px 24px 28px; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); }
.mobile-menu a:not(.btn) { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.1; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(36, 51, 45, 0.14); }
.btn-primary { color: var(--white); background: var(--forest); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-secondary { color: var(--forest); background: rgba(255, 255, 255, 0.7); border-color: rgba(48, 75, 64, 0.46); }
.btn-light { color: var(--forest); background: var(--white); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, 0.58); background: transparent; }
.btn-text { min-height: auto; padding: 0; border: 0; border-radius: 0; color: var(--forest); background: none; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--forest); font-weight: 700; }
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow { margin-bottom: 16px; color: #63786d; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 18px; color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.02; letter-spacing: -0.025em; }
h1 { font-size: clamp(3.7rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.65rem, 4.8vw, 4.8rem); }
h3 { font-size: clamp(1.7rem, 2.4vw, 2.25rem); }
p { margin: 0 0 18px; }
.lead { color: #45584f; font-size: 1.18rem; line-height: 1.55; }
.serif-lead { color: #405249; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.35; }
.section { padding: 110px 0; }
.section-sm { padding: 78px 0; }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-soft); }
.section-forest { color: var(--white); background: var(--forest); }
.section-forest h1, .section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest .eyebrow { color: #c8d7ce; }
.section-forest .lead { color: rgba(255, 255, 255, 0.83); }
.image-backed-dark { background-color: var(--forest-dark); background-image: linear-gradient(rgba(31, 56, 47, 0.26), rgba(31, 56, 47, 0.26)), url("deep-botanical-bg.jpg"); background-position: center; background-size: cover; }
.section-heading { max-width: 800px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.split-heading { display: grid; grid-template-columns: 1.16fr 0.7fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.split-heading p { margin-bottom: 6px; }
.rule { width: 100%; height: 1px; background: var(--line); }

.home-hero { padding: 70px 0 76px; overflow: hidden; background-color: var(--cream); background-image: linear-gradient(rgba(248, 243, 233, 0.88), rgba(248, 243, 233, 0.94)), url("hero-editorial-bg.jpg"); background-position: center; background-size: cover; }
.hero-title-row { display: grid; grid-template-columns: 1.02fr 0.78fr; gap: 78px; align-items: end; margin-bottom: 48px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; margin-bottom: 0; font-size: clamp(4.2rem, 6.4vw, 6.6rem); }
.hero-copy h1 em { display: block; color: #6b7d6c; font-weight: 500; }
.hero-intro { padding-bottom: 8px; }
.hero-intro .lead { max-width: 600px; font-size: 1.16rem; }
.hero-intro .button-row { margin-top: 25px; }
.hero-panorama { position: relative; margin: 0; }
.hero-panorama::before { content: ""; position: absolute; z-index: 2; left: -18px; top: -18px; width: 74px; height: 74px; border-radius: 50%; background: var(--clay); opacity: 0.76; }
.hero-panorama::after { content: ""; position: absolute; right: -38px; bottom: 28px; width: 130px; height: 130px; border: 1px solid rgba(48, 75, 64, 0.34); border-radius: 50%; }
.hero-image { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-lg); }
.hero-mobile-journey { display: none; }
.hero-storyline { position: absolute; z-index: 3; left: 28px; bottom: 24px; max-width: 650px; padding: 15px 19px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 16px; color: var(--white); background: rgba(31, 56, 47, 0.66); font-family: var(--serif); font-size: clamp(1.3rem, 2.1vw, 2rem); font-weight: 600; line-height: 1.15; text-shadow: 0 2px 12px rgba(21, 34, 28, 0.42); backdrop-filter: blur(9px); }
.trust-strip { background: var(--forest-dark); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 112px; padding: 24px 34px; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: center; }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.2; }
.trust-item span { margin-top: 4px; color: #cdd9d2; font-size: 0.82rem; }

.life-story { position: relative; overflow: clip; padding: 118px 0 0; background-color: #eee8dc; background-image: linear-gradient(rgba(248, 243, 233, 0.64), rgba(238, 232, 220, 0.9)), url("hero-editorial-bg.jpg"); background-position: center; background-size: cover; }
.life-story::before { content: ""; position: absolute; top: 8%; left: -8vw; width: 28vw; height: 28vw; border: 1px solid rgba(48, 75, 64, 0.13); border-radius: 50%; }
.story-intro { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr 0.58fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.story-intro h2 { max-width: 820px; }
.story-intro .lead { margin-bottom: 9px; }
.story-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(370px, 0.78fr); gap: clamp(46px, 7vw, 100px); align-items: start; }
.story-stage { --story-focus: 8%; position: sticky; top: 126px; height: min(76svh, 800px); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: var(--radius-lg); background: #d9c7ac; box-shadow: var(--shadow-lg); isolation: isolate; }
.story-stage img { width: 100%; height: 100%; object-fit: cover; object-position: center var(--story-focus); transform: scale(1.035); transition: object-position 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s ease; }
.story-wash { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(31, 56, 47, 0.02), transparent 50%, rgba(31, 56, 47, 0.16)); }
.coffee-steam { position: absolute; z-index: 2; width: 18px; height: 76px; border-left: 2px solid rgba(255, 255, 255, 0.72); border-radius: 50%; opacity: 0; filter: blur(0.5px); transition: opacity 0.5s ease; animation: steam-rise 3.4s ease-in-out infinite; }
.steam-one { left: 15%; top: 12%; }
.steam-two { left: 25%; top: 58%; animation-delay: -1.7s; }
.story-stage[data-scene="0"] .steam-one, .story-stage[data-scene="2"] .steam-two { opacity: 0.82; }
.story-leaf { position: absolute; z-index: 2; right: 8%; top: 17%; width: 38px; height: 72px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 100% 0 100% 0; opacity: 0; transform: rotate(18deg) scale(0.7); transform-origin: bottom left; transition: opacity 0.7s ease, transform 0.8s ease; }
.story-stage[data-scene="3"] .story-leaf, .story-stage[data-scene="4"] .story-leaf { opacity: 0.75; transform: rotate(18deg) scale(1); }
.story-progress { position: absolute; z-index: 3; right: 17px; bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.story-progress span { width: 7px; height: 7px; border: 1px solid rgba(255, 255, 255, 0.82); border-radius: 50%; background: rgba(31, 56, 47, 0.28); transition: height 0.35s ease, background 0.35s ease; }
.story-progress span.is-active { height: 22px; border-radius: 999px; background: var(--white); }
.story-chapters { padding-bottom: 18svh; }
.story-chapter { min-height: 72svh; display: grid; align-items: center; opacity: 0.38; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.story-chapter.is-active { opacity: 1; transform: none; }
.story-card { padding: 34px 36px 32px; border: 1px solid rgba(48, 75, 64, 0.12); border-radius: var(--radius); background: rgba(255, 253, 248, 0.9); box-shadow: 0 22px 55px rgba(57, 68, 61, 0.11); backdrop-filter: blur(14px); }
.story-kicker { display: block; margin-bottom: 20px; color: #6e8175; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.story-card h3 { font-size: clamp(2.5rem, 4vw, 4rem); }
.story-card p { color: var(--ink-soft); font-size: 1.02rem; }
.story-card .text-link { margin-top: 8px; }
@keyframes steam-rise { 0%, 100% { transform: translate3d(0, 10px, 0) rotate(-5deg) scaleY(0.82); opacity: 0; } 28% { opacity: 0.72; } 72% { opacity: 0.42; } 100% { transform: translate3d(9px, -16px, 0) rotate(9deg) scaleY(1.08); opacity: 0; } }

.manifesto-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: start; }
.manifesto-title { position: relative; padding-left: 30px; }
.manifesto-title::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 8px; width: 1px; background: #9cae9f; }
.manifesto-copy { padding-top: 40px; }
.manifesto-copy .serif-lead { margin-bottom: 26px; }
.service-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-preview { min-height: 310px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.62); transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.service-preview:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-sm); }
.service-kicker { color: #75887d; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.service-preview h3 { margin-top: 42px; }
.service-preview p { color: var(--ink-soft); }
.service-preview .text-link { margin-top: auto; }
.service-preview.featured { color: var(--white); background: var(--forest); }
.service-preview.featured h3, .service-preview.featured .text-link { color: var(--white); }
.service-preview.featured p, .service-preview.featured .service-kicker { color: #d4dfd8; }
.quote-band { position: relative; overflow: hidden; text-align: center; background-color: var(--forest-dark); background-image: linear-gradient(rgba(31, 56, 47, 0.2), rgba(31, 56, 47, 0.2)), url("deep-botanical-bg.jpg"); background-position: center; background-size: cover; }
.quote-band .container { position: relative; z-index: 1; max-width: 980px; }
.quote-band blockquote { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.7rem); font-weight: 500; line-height: 1.03; letter-spacing: -0.025em; }
.quote-band p { max-width: 700px; margin: 28px auto 0; color: #d4dfd8; font-size: 1.08rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.process-step { padding: 34px 34px 10px 0; border-right: 1px solid var(--line); }
.process-step + .process-step { padding-left: 34px; }
.process-step:last-child { border-right: 0; }
.process-mark { display: block; width: 46px; height: 2px; margin-bottom: 34px; background: var(--clay); }
.process-step p { color: var(--ink-soft); }
.doctor-card { display: grid; grid-template-columns: 0.72fr 1.28fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--sage-soft); box-shadow: var(--shadow-sm); }
.doctor-mark { min-height: 540px; overflow: hidden; background: linear-gradient(145deg, #263f35, #758777); }
.doctor-mark img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center 25%; }
.doctor-copy { align-self: center; padding: 66px 72px; }
.assessment-callout { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 52px 58px; border: 1px solid rgba(184, 120, 92, 0.18); border-radius: var(--radius-lg); background: #f4e8de; }
.assessment-callout h2 { font-size: clamp(2.6rem, 4.2vw, 4.1rem); }
.assessment-action { min-width: 220px; text-align: center; }
.assessment-action small { display: block; margin-top: 11px; color: #6c746f; }
.final-cta { position: relative; overflow: hidden; text-align: center; background-color: var(--forest-dark); background-image: linear-gradient(rgba(31, 56, 47, 0.18), rgba(31, 56, 47, 0.18)), url("deep-botanical-bg.jpg"); background-position: center; background-size: cover; }
.final-cta .container { max-width: 920px; }
.final-cta .button-row { justify-content: center; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 82px; background-color: var(--cream); background-image: linear-gradient(90deg, rgba(248, 243, 233, 0.96) 0%, rgba(248, 243, 233, 0.86) 58%, rgba(248, 243, 233, 0.38) 100%), url("hero-editorial-bg.jpg"); background-position: center; background-size: cover; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 350px; height: 350px; border: 1px solid rgba(48, 75, 64, 0.16); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 940px; font-size: clamp(4rem, 7vw, 6.9rem); }
.page-hero .lead { max-width: 780px; }
.page-hero-split .container { display: grid; grid-template-columns: 1.1fr 0.55fr; gap: 80px; align-items: end; }
.page-hero-note { padding: 24px 0 4px 28px; border-left: 1px solid #9bad9f; font-family: var(--serif); font-size: 1.4rem; line-height: 1.35; }
.subnav { position: sticky; top: 92px; z-index: 10; background: rgba(255, 253, 248, 0.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.subnav-inner { display: flex; gap: 26px; overflow-x: auto; padding: 15px 0; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a { flex: 0 0 auto; color: var(--ink-soft); font-size: 0.84rem; font-weight: 700; }
.subnav a:hover { color: var(--forest); }

.about-intro { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: 90px; align-items: start; }
.credential-panel { position: sticky; top: 150px; padding: 36px; border-radius: var(--radius); color: var(--white); background: var(--forest); }
.credential-portrait { width: 100%; aspect-ratio: 4 / 5; margin-bottom: 28px; border-radius: 16px; object-fit: cover; object-position: center 25%; box-shadow: 0 16px 38px rgba(15, 31, 25, 0.24); }
.credential-panel h3 { color: var(--white); }
.credential-panel p { color: #d1ddd5; font-size: 0.9rem; }
.bio-copy h2 { max-width: 750px; }
.bio-copy .serif-lead { max-width: 780px; }
.bio-copy .two-col-copy { columns: 2; column-gap: 42px; margin-top: 30px; }
.bio-copy .two-col-copy p { break-inside: avoid; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.64); }
.value-kicker { color: #75887d; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.value-card h3 { margin-top: 45px; }

.services-layout { display: grid; grid-template-columns: 250px 1fr; gap: 80px; align-items: start; }
.services-aside, .services-list { min-width: 0; }
.services-aside { position: sticky; top: 155px; }
.services-aside h2 { font-size: 2rem; }
.services-aside ul { list-style: none; padding: 0; margin: 26px 0 0; border-top: 1px solid var(--line); }
.services-aside li { border-bottom: 1px solid var(--line); }
.services-aside a { display: block; padding: 12px 0; color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }
.services-aside a:hover { color: var(--forest); }
.service-detail { scroll-margin-top: 165px; padding: 48px 0; border-top: 1px solid var(--line); }
.service-detail:first-child { padding-top: 0; border-top: 0; }
.service-detail h2 { font-size: clamp(2.7rem, 4vw, 4.2rem); }
.service-detail-copy > p { max-width: 720px; color: var(--ink-soft); font-size: 1.05rem; }
.outcome-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; list-style: none; padding: 0; margin: 28px 0 0; }
.outcome-list li { position: relative; padding-left: 21px; font-size: 0.9rem; }
.outcome-list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.what-to-expect { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.expect-list { list-style: none; padding: 0; margin: 0; }
.expect-list li { position: relative; padding: 22px 0 22px 48px; border-bottom: 1px solid var(--line-light); }
.expect-list li::before { content: ""; position: absolute; left: 0; top: 2.05em; width: 25px; height: 2px; background: #bdcdc3; }

.quiz-hero { padding-bottom: 64px; }
.quiz-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.quiz-meta span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 0.8rem; }
.quiz-layout { display: grid; grid-template-columns: 1fr 280px; gap: 70px; align-items: start; }
.quiz-progress { position: sticky; top: 145px; padding: 28px; border-radius: var(--radius); background: var(--sage-soft); }
.quiz-progress strong { display: block; font-family: var(--serif); font-size: 1.55rem; }
.progress-track { height: 7px; margin: 18px 0 12px; overflow: hidden; border-radius: 999px; background: #d4ddd3; }
.progress-bar { width: 0; height: 100%; border-radius: inherit; background: var(--forest); transition: width 0.25s ease; }
.quiz-progress p { margin: 0; color: var(--ink-soft); font-size: 0.82rem; }
.quiz-q { min-width: 0; padding: 34px 0; border: 0; border-top: 1px solid var(--line); }
.quiz-q:first-child { padding-top: 0; border-top: 0; }
.quiz-q h2, .quiz-q legend { width: 100%; margin: 0; padding: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.025em; }
.quiz-q legend > span { color: #7b8c82; font-style: italic; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.quiz-options label { cursor: pointer; }
.quiz-options input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.quiz-options span { display: inline-flex; min-width: 106px; justify-content: center; padding: 11px 17px; border: 1px solid #9fafA5; border-radius: 999px; background: var(--white); font-weight: 600; transition: background 0.18s ease, color 0.18s ease, border 0.18s ease; }
.quiz-options input:focus-visible + span { outline: 3px solid #c88f70; outline-offset: 3px; }
.quiz-options input:checked + span { color: var(--white); border-color: var(--forest); background: var(--forest); }
.quiz-submit { margin-top: 30px; }
.result-box { display: none; margin-top: 30px; padding: 34px; border-radius: var(--radius); background: #e7eee6; border: 1px solid rgba(48, 75, 64, 0.1); }
.result-box h3 { font-size: 2.3rem; }

.start-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 70px; align-items: start; }
.start-intro { position: sticky; top: 145px; }
.start-points { list-style: none; padding: 0; margin: 34px 0; border-top: 1px solid var(--line); }
.start-points li { display: grid; grid-template-columns: 28px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.start-points span { color: var(--clay); font-weight: 700; }
.form-card { padding: 42px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.form-card h2 { font-size: 3rem; }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label, .form legend { color: var(--ink); font-size: 0.86rem; font-weight: 700; }
.form input, .form select, .form textarea { width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid #bdc9c1; border-radius: 12px; color: var(--ink); background: #fffefa; }
.form textarea { min-height: 145px; resize: vertical; }
.form fieldset { padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 9px; }
.choice-grid label { display: flex; align-items: flex-start; gap: 9px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; font-weight: 500; cursor: pointer; }
.choice-grid input { width: auto; margin: 5px 0 0; accent-color: var(--forest); }
.form-status { margin: 0; color: var(--ink-soft); font-size: 0.82rem; }
.notice { color: var(--ink-soft); font-size: 0.82rem; }
.form button:disabled { opacity: 0.65; cursor: wait; }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.next-step { padding: 28px; border-top: 1px solid var(--line-light); }
.step-kicker { color: #bdcdc3; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.next-step h3 { margin-top: 34px; font-size: 2rem; }
.next-step p { color: #d4dfd8; }

.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-option { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-option.primary { color: var(--white); background: var(--forest); }
.contact-option.primary h2, .contact-option.primary .text-link { color: var(--white); }
.contact-option.primary p { color: #d4dfd8; }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.contact-details > div { padding: 28px 28px 0 0; }
.contact-details strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 1.45rem; }
.contact-details span { color: var(--ink-soft); font-size: 0.9rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 40px 22px 0; list-style: none; font-family: var(--serif); font-size: 1.55rem; font-weight: 600; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 19px; color: var(--forest); font-family: var(--sans); font-size: 1.35rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 42px; color: var(--ink-soft); }

.legal-hero { padding: 75px 0 62px; }
.legal-hero h1 { font-size: clamp(3.6rem, 6vw, 5.8rem); }
.legal-content { font-size: 1.03rem; }
.legal-content h2 { margin-top: 46px; font-size: 2.25rem; }
.legal-content p { margin-bottom: 22px; }
.legal-note { margin-top: 38px; padding: 24px; border-left: 3px solid var(--clay); background: var(--cream); }

.footer { padding: 68px 0 28px; color: #e5ece7; background: #182c25; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.65fr 0.85fr 1fr; gap: 52px; }
.footer-logo { width: 300px; max-height: 76px; margin-bottom: 24px; object-fit: contain; object-position: left center; filter: invert(1); opacity: 0.94; }
.footer p { color: #c8d4cd; }
.footer h2 { color: var(--white); font-size: 1rem; font-family: var(--sans); letter-spacing: 0.08em; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; color: #e2eae5; font-size: 0.9rem; }
.footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 35px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line-light); color: #aebfb5; font-size: 0.76rem; }
.footer-bottom p { margin: 0; color: inherit; }
.footer-bottom a { display: inline; margin: 0; color: inherit; }

.reveal { animation: fade-up 0.62s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1040px) {
  .nav { gap: 17px; }
  .nav .btn { padding-inline: 17px; }
  .hero-title-row { gap: 44px; }
  .service-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .announcement .container { justify-content: center; text-align: center; }
  .announcement span:last-child { display: none; }
  .nav { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .mobile-menu.open { display: flex; }
  .header-inner { min-height: 82px; }
  .logo img { width: 250px; }
  .section { padding: 86px 0; }
  .hero-title-row, .manifesto-grid, .doctor-card, .about-intro, .services-layout, .what-to-expect, .quiz-layout, .start-layout { grid-template-columns: 1fr; }
  .home-hero { padding-top: 54px; }
  .hero-copy { max-width: 730px; }
  .hero-title-row { gap: 28px; margin-bottom: 38px; }
  .hero-intro { max-width: 720px; }
  .story-intro { grid-template-columns: 1fr; gap: 24px; }
  .story-intro .lead { max-width: 680px; }
  .story-layout { grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr); gap: 34px; }
  .story-card { padding: 30px 28px; }
  .manifesto-grid { gap: 42px; }
  .manifesto-copy { padding-top: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .process-mark { margin-bottom: 20px; }
  .doctor-mark, .doctor-mark img { min-height: 430px; max-height: 620px; }
  .assessment-callout { grid-template-columns: 1fr; }
  .assessment-action { text-align: left; }
  .page-hero-split .container { grid-template-columns: 1fr; gap: 30px; }
  .page-hero-note { max-width: 600px; }
  .credential-panel, .services-aside, .quiz-progress, .start-intro { position: static; }
  .credential-panel { display: grid; grid-template-columns: minmax(180px, 0.72fr) 1fr; align-items: center; gap: 30px; }
  .credential-portrait { margin: 0; }
  .services-aside ul { display: flex; width: 100%; max-width: 100%; gap: 20px; overflow-x: auto; }
  .services-aside li { flex: 0 0 auto; border-bottom: 0; }
  .quiz-progress { order: -1; }
  .start-intro { max-width: 720px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 680px) {
  .container, .container-narrow { width: min(100% - 30px, 1180px); }
  .announcement { font-size: 0.67rem; }
  .header-inner { min-height: 74px; }
  .logo img { width: 205px; max-height: 54px; }
  .mobile-menu { padding-inline: 15px; }
  h1 { font-size: clamp(3.3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .section { padding: 68px 0; }
  .section-sm { padding: 52px 0; }
  .home-hero { padding: 42px 0 58px; }
  .hero-copy h1 { font-size: clamp(3.55rem, 17vw, 4.8rem); }
  .hero-image { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .hero-mobile-journey { position: relative; z-index: 1; display: flex; gap: 10px; width: calc(100% + 15px); overflow-x: auto; padding: 4px 15px 16px 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .hero-mobile-journey::-webkit-scrollbar { display: none; }
  .hero-frame { flex: 0 0 min(78vw, 390px); aspect-ratio: 4 / 5; border-radius: 20px; background-image: url("hero-identity-journey-v1.jpg"); background-repeat: no-repeat; background-size: 300% 100%; box-shadow: 0 16px 34px rgba(36, 51, 45, 0.14); scroll-snap-align: start; }
  .hero-frame-before { background-position: left center; }
  .hero-frame-becoming { background-position: center center; }
  .hero-frame-returning { background-position: right center; }
  .hero-panorama::before { left: -7px; top: -9px; width: 42px; height: 42px; }
  .hero-panorama::after { right: -48px; bottom: 50px; width: 100px; height: 100px; }
  .hero-storyline { position: relative; left: auto; bottom: auto; max-width: none; margin: 8px 2px 0; padding: 0; border: 0; color: var(--forest); background: transparent; font-size: 1.45rem; line-height: 1.22; text-shadow: none; backdrop-filter: none; }
  .life-story { padding-top: 74px; }
  .story-intro { margin-bottom: 38px; }
  .story-intro h2 { font-size: clamp(2.65rem, 12vw, 3.65rem); }
  .story-layout { display: block; }
  .story-stage { top: 74px; width: calc(100% + 30px); height: 54svh; max-height: 620px; margin-left: -15px; border-width: 0; border-radius: 0 0 24px 24px; }
  .story-stage img { transform: scale(1.02); }
  .story-progress { right: 15px; bottom: 14px; flex-direction: row; }
  .story-progress span { width: 7px; height: 7px; }
  .story-progress span.is-active { width: 22px; height: 7px; }
  .story-chapters { position: relative; z-index: 4; margin-top: -40svh; padding-bottom: 12svh; }
  .story-chapter { min-height: 70svh; align-items: end; padding-bottom: 8svh; opacity: 0.62; transform: translateY(10px); }
  .story-card { margin: 0 2px; padding: 27px 23px 25px; border-color: rgba(48, 75, 64, 0.16); background: rgba(255, 253, 248, 0.94); box-shadow: 0 16px 38px rgba(36, 51, 45, 0.15); backdrop-filter: blur(11px); }
  .story-card h3 { font-size: clamp(2.45rem, 11vw, 3.25rem); }
  .story-card p { font-size: 0.96rem; line-height: 1.6; }
  .coffee-steam { display: none; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-item, .trust-item:first-child { min-height: auto; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .trust-item:last-child { border-bottom: 0; }
  .manifesto-title { padding-left: 20px; }
  .service-preview-grid, .values-grid, .outcome-list, .next-steps, .contact-options, .contact-details { grid-template-columns: 1fr; }
  .service-preview { min-height: 260px; }
  .quote-band blockquote { font-size: 3.15rem; }
  .doctor-mark, .doctor-mark img { min-height: 360px; }
  .doctor-mark img { object-position: center 22%; }
  .doctor-copy { padding: 38px 27px; }
  .assessment-callout { padding: 34px 25px; }
  .assessment-action, .assessment-action .btn { width: 100%; }
  .page-hero { padding: 66px 0 58px; }
  .page-hero::after { width: 220px; height: 220px; }
  .page-hero h1 { font-size: clamp(3.5rem, 16vw, 4.9rem); }
  .subnav { top: 74px; }
  .credential-panel { display: block; }
  .credential-portrait { max-height: 440px; margin-bottom: 28px; object-position: center 23%; }
  .bio-copy .two-col-copy { columns: 1; }
  .service-detail { padding: 38px 0; }
  .service-detail h2 { font-size: 2.65rem; }
  .quiz-q { padding: 27px 0; }
  .quiz-options { flex-direction: column; }
  .quiz-options label, .quiz-options span { width: 100%; }
  .form-card { padding: 31px 22px; }
  .form-row, .choice-grid { grid-template-columns: 1fr; }
  .form .btn { width: 100%; }
  .footer { padding-top: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

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