@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("assets/fonts/manrope-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("assets/fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("assets/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("assets/fonts/cormorant-garamond-latin-600-italic.woff2") format("woff2"); font-style: italic; font-weight: 600; font-display: swap; }

:root {
  color: #2b1610;
  background: #f7f1e9;
  font-family: "Manrope", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --sans: "Manrope", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --page: #f7f1e9;
  --paper: #fbf8f3;
  --ink: #2b1610;
  --muted: #6f5b52;
  --accent: #712817;
  --accent-soft: #ead7cb;
  --forest: #1d3c31;
  --line: rgba(61, 34, 24, 0.2);
  --header-h: 78px;
  --side-w: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--page); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
[hidden] { display: none !important; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; padding: 11px 15px; background: #fff; color: #111; transform: translateY(-180%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

.site { min-height: 100vh; overflow: clip; background: var(--page); color: var(--ink); }
.site main { margin-left: var(--side-w); }
.theme-living-sculpture { --page: #0c0d0c; --paper: #ececde; --ink: #f6ead1; --muted: #b9af9e; --accent: #d26b6c; --accent-soft: #dca8a0; --forest: #2c4735; --line: rgba(246, 234, 209, 0.24); }
.theme-modern-heirloom { --page: #f4f0e8; --paper: #f8f4ec; --ink: #10261d; --muted: #59655d; --accent: #bc8d31; --accent-soft: #f0dcc9; --forest: #17392e; --line: rgba(16, 38, 29, 0.18); --side-w: 116px; }

.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; }
h1 em, h2 em { font-weight: 500; }
h2 { margin-bottom: 18px; font-size: clamp(42px, 5vw, 74px); line-height: 0.98; }
p { line-height: 1.75; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid transparent; border-radius: 2px; background: none; cursor: pointer; font-size: 12px; font-weight: 600; transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease; }
.button .icon { flex: 0 0 auto; transition: transform 220ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover .icon { transform: translateX(4px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid #ff9d73; outline-offset: 3px; }
.button--primary { color: #fff8ef; background: var(--accent); }
.button--light { color: var(--accent); background: #fffaf3; }
.button--ghost { color: var(--ink); border-color: var(--line); }

.site-header { position: fixed; z-index: 40; top: 0; left: 0; width: 100%; min-height: var(--header-h); display: grid; grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr); align-items: center; gap: 28px; padding: 13px clamp(20px, 4vw, 64px); border-bottom: 1px solid transparent; color: var(--ink); transition: background-color 240ms ease, border-color 240ms ease; }
.site-header.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--page) 94%, transparent); backdrop-filter: blur(16px); }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.site-header nav a { position: relative; font-size: 11px; font-weight: 500; white-space: nowrap; }
.site-header nav a::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms ease; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.button--header { justify-self: end; min-height: 42px; background: var(--accent); color: #fff8ef; }
.menu-button { display: none; min-width: 52px; height: 44px; place-items: center; padding: 0 9px; border: 1px solid var(--line); background: var(--page); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-family: var(--serif); font-size: 23px; line-height: 1; }
.brand__monogram { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: italic; }
.brand__text { display: grid; gap: 4px; }
.brand__text small { font-family: var(--sans); font-size: 7px; letter-spacing: .19em; text-transform: uppercase; }

.hero { position: relative; min-height: 780px; display: grid; grid-template-columns: minmax(0, 47%) minmax(0, 53%); background: var(--page); border-bottom: 1px solid var(--line); }
.hero__content { position: relative; z-index: 2; align-self: center; padding: calc(var(--header-h) + 64px) clamp(32px, 6vw, 102px) 90px; }
.hero h1 { max-width: 700px; margin-bottom: 14px; font-size: clamp(70px, 7.7vw, 128px); line-height: .78; color: var(--accent); }
.hero__kicker { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(25px, 2.4vw, 38px); }
.hero__copy { max-width: 470px; margin-bottom: 34px; color: var(--muted); font-size: 14px; }
.hero__details { display: flex; gap: 22px; margin-top: 18px; color: var(--muted); font-size: 11px; }
.hero__details span { display: flex; align-items: center; gap: 7px; }
.hero__media { position: relative; min-height: 780px; overflow: hidden; background: var(--accent-soft); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: rgba(68, 27, 15, .05); pointer-events: none; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.hero:hover .hero__media img { transform: scale(1.025); }
.hero__caption { position: absolute; z-index: 2; right: 34px; bottom: 28px; margin: 0; padding: 12px 16px; color: #fff; background: rgba(30, 12, 7, .76); font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.hero__caption span { font-family: var(--sans); font-size: 9px; letter-spacing: .08em; }
.hero__booking { display: none; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.stats div { min-height: 136px; display: grid; align-content: center; justify-items: center; gap: 5px; border-right: 1px solid var(--line); text-align: center; }
.stats div:last-child { border-right: 0; }
.stats strong { font-family: var(--serif); font-size: clamp(38px, 4vw, 61px); font-weight: 500; line-height: 1; color: var(--accent); }
.stats span { color: var(--muted); font-size: 11px; }

.manifesto { min-height: 400px; display: grid; place-content: center; justify-items: center; padding: 90px 24px; border-bottom: 1px solid var(--line); background: #11110f; text-align: center; }
.manifesto h2 { color: #f6ead1; }
.manifesto p:last-child { max-width: 630px; color: #b9af9e; font-size: 13px; }

.benefits { padding: 110px clamp(24px, 5vw, 76px) 130px; background: var(--paper); }
.section-copy, .section-heading { max-width: 770px; margin-bottom: 52px; }
.section-copy > p:last-child, .section-heading > p:last-child { max-width: 590px; color: var(--muted); font-size: 14px; }
.benefit-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.benefit-step { min-width: 0; }
.benefit-step__image { height: clamp(280px, 34vw, 470px); margin-bottom: 20px; overflow: hidden; background: var(--accent-soft); }
.benefit-step__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.benefit-step:nth-child(1) img { object-position: 12% center; }
.benefit-step:nth-child(3) img { object-position: 73% center; }
.benefit-step:hover img { transform: scale(1.045); }
.benefit-step > span { display: block; margin-bottom: 12px; font-family: var(--serif); font-size: 28px; color: var(--accent); }
.benefit-step h3 { margin-bottom: 10px; font-family: var(--serif); font-size: clamp(25px, 2.2vw, 35px); font-weight: 500; line-height: 1; }
.benefit-step p { color: var(--muted); font-size: 12px; }

.heirloom-benefits { display: grid; grid-template-columns: 1fr 1.05fr .8fr; align-items: stretch; padding: 0; border-bottom: 1px solid var(--line); }
.heirloom-benefits .section-copy { align-self: center; margin: 0; padding: clamp(42px, 6vw, 92px); }
.skin-crops { display: grid; grid-template-rows: 1fr 1fr; min-height: 650px; overflow: hidden; }
.skin-crops img { width: 100%; height: 100%; object-fit: cover; }
.skin-crops img:first-child { object-position: 30% 10%; }
.skin-crops img:last-child { object-position: 76% 46%; border-top: 1px solid var(--paper); }
.benefit-list { display: grid; align-content: center; gap: 0; margin: 0; padding: 50px; list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.benefit-list svg { color: var(--accent); }

.about { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 760px; border-block: 1px solid var(--line); background: var(--page); }
.about__copy { align-self: center; padding: 90px clamp(30px, 6vw, 102px); }
.about__copy > p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 13px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 11px; }
.credential-row span { display: flex; align-items: center; gap: 8px; }
.about__media { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4px; min-height: 760px; padding: 32px 32px 32px 0; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait { object-position: center; }
.about__events { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }

.workshops { padding: 120px clamp(24px, 5vw, 76px); background: var(--forest); color: #f3ead9; }
.workshops .eyebrow { color: #d8ab8f; }
.workshops .section-heading > p:last-child { color: rgba(243,234,217,.7); }
.workshop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.workshop-grid figure { position: relative; margin: 0; overflow: hidden; background: #10241d; }
.workshop-grid figure.workshop-featured { grid-column: span 2; }
.workshop-grid img { width: 100%; aspect-ratio: 1.55; object-fit: cover; transition: transform 500ms ease, opacity 500ms ease; }
.workshop-grid figure:hover img { transform: scale(1.035); opacity: .8; }
.workshop-grid figcaption { padding: 13px 2px 20px; color: rgba(243,234,217,.8); font-size: 10px; }

.masterclass { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 70px; padding: 120px clamp(24px, 6vw, 100px); background: var(--paper); }
.masterclass__intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted); font-size: 13px; }
.masterclass__intro img { width: min(100%, 490px); margin-top: 32px; }
.curriculum { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.curriculum li { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.curriculum li > span { font-family: var(--serif); font-size: 23px; color: var(--accent); }
.curriculum h3 { margin-bottom: 4px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.curriculum p { margin: 0; color: var(--muted); font-size: 11px; }
.masterclass__button { grid-column: 2; width: max-content; }

.results { padding: 120px clamp(24px, 5vw, 76px); background: var(--page); }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.arrow-controls { display: flex; gap: 8px; }
.arrow-controls button { min-width: 78px; height: 42px; display: grid; place-items: center; padding: 0 14px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; transition: background-color 200ms ease, color 200ms ease; }
.arrow-controls button:hover { background: var(--ink); color: var(--page); }
.results-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 16px; overflow: hidden; }
.results-track figure { margin: 0; }
.results-track img { width: 100%; aspect-ratio: .93; object-fit: cover; }
.results-track figcaption { padding-top: 12px; color: var(--muted); font-size: 10px; }
.results__note { margin: 22px 0; color: var(--muted); font-size: 10px; }

.offer { display: grid; grid-template-columns: 1.05fr .9fr .75fr; min-height: 650px; margin: 0 clamp(24px, 5vw, 76px) 120px; background: var(--accent); color: #fff7ec; }
.offer__copy { align-self: center; padding: 58px clamp(30px, 5vw, 72px); }
.offer .eyebrow { color: #e7bdaa; }
.offer h2 { font-size: clamp(46px, 4.5vw, 68px); }
.offer__copy > p:not(.eyebrow) { max-width: 460px; color: rgba(255,247,236,.72); font-size: 13px; }
.offer ul { display: grid; gap: 12px; margin: 28px 0 32px; padding: 0; list-style: none; font-size: 11px; }
.offer ul li { display: flex; align-items: center; gap: 9px; }
.offer__copy > small { display: block; margin-top: 13px; color: rgba(255,247,236,.6); font-size: 9px; }
.offer > img { width: 100%; height: 100%; object-fit: cover; }
.offer__bonuses { align-self: stretch; padding: 58px 34px; background: var(--accent-soft); color: var(--ink); }
.offer__bonuses .eyebrow { color: var(--accent); }
.offer__bonuses ol { margin: 22px 0 0; padding: 0; list-style: none; }
.offer__bonuses li { display: grid; grid-template-columns: 26px 1fr; gap: 9px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 10px; line-height: 1.5; }
.offer__bonuses li span { color: var(--accent); }

.testimonials { display: grid; grid-template-columns: 320px 1fr; gap: 60px; padding: 100px clamp(24px, 5vw, 76px); background: var(--forest); color: #f3ead9; }
.testimonials .eyebrow { color: #d8ab8f; }
.testimonials h2 { font-size: 52px; }
.testimonials .arrow-controls button { border-color: rgba(243,234,217,.3); }
.testimonials .arrow-controls button:hover { background: #f3ead9; color: var(--forest); }
.testimonial-track { display: grid; grid-template-columns: repeat(4, 1fr); }
.testimonial-track blockquote { min-height: 290px; display: flex; flex-direction: column; margin: 0; padding: 20px 24px; border-left: 1px solid rgba(243,234,217,.25); opacity: .55; transition: opacity 220ms ease, background-color 220ms ease; }
.testimonial-track blockquote.is-active { background: rgba(255,255,255,.055); opacity: 1; }
.testimonial-track blockquote > span { font-family: var(--serif); font-size: 42px; color: #d8ab8f; }
.testimonial-track blockquote p { font-size: 11px; line-height: 1.7; }
.testimonial-track blockquote footer { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; font-size: 9px; }
.testimonial-track blockquote small { color: #d5a14d; letter-spacing: .1em; }

.faqs { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; padding: 110px clamp(24px, 6vw, 100px); background: var(--paper); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list h3 { margin: 0; }
.faq-list h3 button { width: 100%; min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 2px; border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 12px; font-weight: 500; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 12px; }
.faq-list article.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-list article.is-open .faq-answer p { padding: 0 40px 22px 2px; }

.final-cta { position: relative; min-height: 450px; display: grid; grid-template-columns: .75fr 1.25fr; overflow: hidden; background: #39160d; color: #fff5e7; }
.final-cta > img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; }
.final-cta > div { align-self: center; padding: 70px clamp(32px, 7vw, 120px); }
.final-cta .eyebrow { color: #e7bdaa; }
.final-cta h2 { font-size: clamp(48px, 5vw, 78px); }
.final-cta p:not(.eyebrow) { color: rgba(255,245,231,.7); font-size: 12px; }

.footer { margin-left: var(--side-w); display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 32px; padding: 70px clamp(24px, 5vw, 76px) 30px; border-top: 1px solid var(--line); background: var(--page); }
.footer > p { max-width: 360px; color: var(--muted); font-size: 12px; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 24px; font-size: 10px; }
.footer .social-link { justify-self: start; font-size: 22px; }
.footer > small { justify-self: end; color: var(--muted); font-size: 9px; }

.direction-switcher { position: fixed; z-index: 35; right: 18px; bottom: 18px; display: flex; gap: 4px; padding: 5px; border: 1px solid var(--line); background: color-mix(in srgb, var(--page) 92%, transparent); backdrop-filter: blur(12px); }
.direction-switcher a { width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted); font-size: 10px; transition: background-color 180ms ease, color 180ms ease; }
.direction-switcher a.is-current { background: var(--ink); color: var(--page); }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(9,8,7,.72); backdrop-filter: blur(8px); }
.booking-modal { position: relative; width: min(100%, 560px); max-height: calc(100dvh - 40px); overflow: auto; padding: clamp(30px, 5vw, 60px); background: #fbf6ee; color: #25150f; box-shadow: 0 24px 90px rgba(0,0,0,.28); }
.booking-modal h2 { font-size: clamp(46px, 7vw, 68px); }
.booking-modal > p:not(.eyebrow) { color: #6f5b52; font-size: 13px; }
.modal-close { position: absolute; top: 16px; right: 16px; min-width: 62px; height: 38px; display: grid; place-items: center; padding: 0 10px; border: 1px solid rgba(37,21,15,.2); background: transparent; cursor: pointer; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.booking-modal form { display: grid; gap: 17px; margin-top: 30px; }
.booking-modal label { display: grid; gap: 7px; color: #6f5b52; font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.booking-modal input { min-height: 49px; padding: 10px 12px; border: 1px solid rgba(37,21,15,.2); border-radius: 0; background: #fffdf8; color: #25150f; }
.booking-modal .button { width: 100%; margin-top: 5px; }
.modal-note { display: block; margin-top: 24px; color: #8d7d75; font-size: 9px; text-align: center; }
.booking-success { min-height: 360px; display: grid; align-content: center; justify-items: center; text-align: center; }
.booking-success > p { max-width: 420px; color: #6f5b52; font-size: 13px; }

.motion-ready [data-reveal] { opacity: 1; transform: translateY(24px); clip-path: inset(0 0 14px 0); transition: transform 700ms cubic-bezier(.2,.7,.2,1), clip-path 700ms cubic-bezier(.2,.7,.2,1); }
.motion-ready [data-reveal].is-visible { transform: translateY(0); clip-path: inset(0); }

.theme-living-sculpture .site-header { color: #fff1d8; }
.theme-living-sculpture .site-header.is-scrolled { background: rgba(12,13,12,.91); }
.theme-living-sculpture .hero { min-height: 790px; display: block; background: #100d0b; color: #fff1d8; }
.theme-living-sculpture .hero__media { position: absolute; inset: 0; min-height: 0; }
.theme-living-sculpture .hero__media::after { background: rgba(14,7,4,.36); }
.theme-living-sculpture .hero__media img { object-position: center 35%; filter: saturate(.88) contrast(1.05); }
.theme-living-sculpture .hero__content { min-height: 790px; display: grid; align-content: center; justify-items: start; width: min(49%, 680px); padding-top: 140px; color: #fff1d8; }
.theme-living-sculpture .hero h1 { color: #fff1d8; font-size: clamp(74px, 8vw, 132px); text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.theme-living-sculpture .hero__kicker, .theme-living-sculpture .hero__copy { color: #fff1d8; }
.theme-living-sculpture .hero__copy { max-width: 350px; }
.theme-living-sculpture .hero__details { color: rgba(255,241,216,.78); }
.theme-living-sculpture .hero__booking { position: absolute; z-index: 4; right: 42px; bottom: 34px; display: grid; min-width: 310px; gap: 7px; padding: 20px; border: 1px solid rgba(255,241,216,.45); background: rgba(15,11,8,.7); backdrop-filter: blur(10px); color: #fff1d8; }
.theme-living-sculpture .hero__booking span { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.theme-living-sculpture .hero__booking strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.theme-living-sculpture .hero__booking p { display: flex; align-items: center; gap: 7px; margin: 4px 0; color: rgba(255,241,216,.7); font-size: 9px; }
.theme-living-sculpture .hero__booking button { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border: 0; background: var(--accent); color: #fff; cursor: pointer; font-size: 10px; }
.theme-living-sculpture .stats { background: #11110f; color: #f6ead1; }
.theme-living-sculpture .benefits { background: #e7eadc; color: #1b241f; }
.theme-living-sculpture .benefits .eyebrow, .theme-living-sculpture .benefit-step > span { color: #8e4b47; }
.theme-living-sculpture .benefit-step p, .theme-living-sculpture .benefits .section-copy > p:last-child { color: #536058; }
.theme-living-sculpture .about { background: #0e0f0e; color: #f6ead1; }
.theme-living-sculpture .workshops { background: #294331; }
.theme-living-sculpture .masterclass { background: #ebe7dc; color: #201b17; }
.theme-living-sculpture .curriculum p, .theme-living-sculpture .masterclass__intro > p:not(.eyebrow) { color: #675e57; }
.theme-living-sculpture .results { background: #111210; color: #f6ead1; }
.theme-living-sculpture .results .button--ghost { color: #f6ead1; }
.theme-living-sculpture .offer { background: #c96d6f; }
.theme-living-sculpture .offer__bonuses { background: #e6d9c8; color: #201b17; }
.theme-living-sculpture .faqs { background: #e9e6dd; color: #201b17; }
.theme-living-sculpture .faq-answer p { color: #675e57; }
.theme-living-sculpture .footer { background: #0c0d0c; color: #f6ead1; }

.theme-modern-heirloom .site-header--side { width: var(--side-w); height: 100dvh; min-height: 600px; grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; align-items: start; padding: 28px 12px; border-right: 1px solid var(--line); border-bottom: 0; background: var(--page); }
.theme-modern-heirloom .site-header--side .brand { display: grid; justify-items: center; gap: 28px; }
.theme-modern-heirloom .site-header--side .brand__text { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 26px; }
.theme-modern-heirloom .site-header--side .brand__text small { display: none; }
.theme-modern-heirloom .site-header--side nav { display: grid; align-content: end; justify-items: center; gap: 20px; }
.theme-modern-heirloom .site-header--side nav a { font-size: 8px; text-transform: uppercase; }
.theme-modern-heirloom .site-header--side .button--header { display: none; }
.theme-modern-heirloom .hero { min-height: 720px; grid-template-columns: .75fr 1.25fr; }
.theme-modern-heirloom .hero__content { padding-left: clamp(32px, 6vw, 90px); }
.theme-modern-heirloom .hero h1 { color: var(--ink); font-size: clamp(76px, 8vw, 126px); }
.theme-modern-heirloom .hero__media { min-height: 720px; }
.theme-modern-heirloom .stats { grid-template-columns: repeat(3, 1fr) 1.2fr; }
.theme-modern-heirloom .stats div:last-child { background: var(--accent-soft); }
.theme-modern-heirloom .about, .theme-modern-heirloom .workshops { background: var(--paper); }
.theme-modern-heirloom .workshops { color: var(--ink); }
.theme-modern-heirloom .workshops .eyebrow { color: var(--accent); }
.theme-modern-heirloom .workshops .section-heading > p:last-child, .theme-modern-heirloom .workshop-grid figcaption { color: var(--muted); }
.theme-modern-heirloom .offer { background: var(--forest); }

.direction-index { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; gap: 44px; padding: clamp(30px, 5vw, 76px); background: #efe9df; color: #25150f; }
.direction-index__header { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.direction-index__header > p { max-width: 380px; margin: 0; color: #6f5b52; font-size: 12px; text-align: right; }
.direction-index__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.direction-card { position: relative; min-height: min(67vh, 720px); display: flex; flex-direction: column; justify-content: space-between; padding: 26px; overflow: hidden; border: 1px solid rgba(37,21,15,.15); transition: transform 300ms ease; }
.direction-card::before { content: ""; position: absolute; inset: 0; background-image: url("assets/event-daffodils.jpg"); background-size: cover; background-position: center; opacity: .3; transition: transform 650ms cubic-bezier(.2,.7,.2,1), opacity 300ms ease; }
.direction-card > * { position: relative; z-index: 1; }
.direction-card > span { font-size: 11px; }
.direction-card > span:nth-child(2) { position: absolute; top: 26px; right: 23px; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.direction-card h1 { margin: 0; font-size: clamp(48px, 5vw, 76px); line-height: .9; }
.direction-card p { margin-bottom: 10px; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.direction-card:hover { transform: translateY(-7px); }
.direction-card:hover::before { transform: scale(1.04); opacity: .42; }
.direction-card--quiet-ritual { background: #ead8cc; color: #6e2518; }
.direction-card--living-sculpture { background: #13100d; color: #f4e7cd; }
.direction-card--living-sculpture::before { background-image: url("assets/hero-cover.jpg"); opacity: .46; }
.direction-card--modern-heirloom { background: #eeeadf; color: #17392e; }
.direction-card--modern-heirloom::before { background-position: 58% center; }
.direction-index > small { color: #6f5b52; font-size: 9px; }

@media (max-width: 1180px) {
  :root { --side-w: 0px !important; }
  .site-header, .theme-modern-heirloom .site-header--side { width: 100%; height: auto; min-height: var(--header-h); grid-template-columns: 1fr auto; grid-template-rows: auto; align-items: center; padding: 13px 20px; border-right: 0; border-bottom: 1px solid transparent; }
  .theme-modern-heirloom .site-header--side .brand { display: inline-flex; justify-items: initial; gap: 11px; }
  .theme-modern-heirloom .site-header--side .brand__text { writing-mode: initial; transform: none; font-size: 23px; }
  .theme-modern-heirloom .site-header--side .brand__text small { display: block; }
  .site-header nav, .theme-modern-heirloom .site-header--side nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-content: initial; justify-items: stretch; gap: 0; padding: 10px 20px 22px; border-bottom: 1px solid var(--line); background: var(--page); }
  .site-header nav.is-open { display: grid; }
  .site-header nav a, .theme-modern-heirloom .site-header--side nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 11px; text-transform: none; }
  .button--header { display: none; }
  .menu-button { display: grid; justify-self: end; }
  .theme-living-sculpture .menu-button { background: #15130f; color: #fff1d8; }
  .theme-living-sculpture .site-header nav { background: #11110f; }
  .benefit-steps { grid-template-columns: repeat(2, 1fr); }
  .heirloom-benefits { grid-template-columns: 1fr 1fr; }
  .heirloom-benefits .benefit-list { grid-column: 1 / -1; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 30px; }
  .benefit-list li { align-items: start; border: 0; }
  .about { grid-template-columns: 1fr; }
  .about__media { min-height: 580px; padding: 0 24px 24px; }
  .workshop-grid { grid-template-columns: repeat(3, 1fr); }
  .masterclass { gap: 40px; }
  .results-track { grid-auto-columns: minmax(200px, 29vw); overflow-x: auto; padding-bottom: 12px; }
  .offer { grid-template-columns: 1fr 1fr; }
  .offer__bonuses { grid-column: 1 / -1; }
  .offer__bonuses ol { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonial-track { overflow-x: auto; }
  .testimonial-track blockquote { min-width: 270px; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .brand { font-size: 20px; }
  .brand__monogram { width: 30px; height: 30px; }
  .hero, .theme-modern-heirloom .hero { min-height: auto; display: flex; flex-direction: column; padding-top: var(--header-h); }
  .hero__content, .theme-modern-heirloom .hero__content { order: 2; width: 100%; padding: 42px 20px 50px; }
  .hero h1, .theme-modern-heirloom .hero h1 { font-size: clamp(62px, 20vw, 88px); line-height: .82; }
  .hero__copy { font-size: 13px; }
  .hero__details { flex-direction: column; gap: 8px; }
  .hero__media, .theme-modern-heirloom .hero__media { order: 1; min-height: 510px; }
  .hero__caption { right: 16px; bottom: 16px; }
  .theme-living-sculpture .hero { min-height: 810px; display: block; padding-top: 0; }
  .theme-living-sculpture .hero__media { min-height: 810px; }
  .theme-living-sculpture .hero__media img { object-position: 46% center; }
  .theme-living-sculpture .hero__content { min-height: 810px; align-content: start; padding: 170px 20px 170px; }
  .theme-living-sculpture .hero h1 { font-size: clamp(65px, 20vw, 90px); }
  .theme-living-sculpture .hero__copy { display: none; }
  .theme-living-sculpture .hero__booking { right: 16px; bottom: 18px; left: 16px; min-width: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats div { min-height: 110px; }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .manifesto { min-height: 470px; }
  .manifesto h2 { font-size: 46px; }
  .benefits { padding: 78px 20px; }
  .section-copy, .section-heading { margin-bottom: 34px; }
  .section-copy h2, .section-heading h2 { font-size: 46px; }
  .benefit-steps { display: grid; grid-auto-flow: column; grid-auto-columns: 82vw; grid-template-columns: none; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .benefit-step { scroll-snap-align: start; }
  .benefit-step__image { height: 420px; }
  .heirloom-benefits { display: block; padding: 0; }
  .heirloom-benefits .section-copy { padding: 74px 20px; }
  .skin-crops { min-height: 520px; }
  .heirloom-benefits .benefit-list { display: grid; grid-template-columns: 1fr; padding: 30px 20px 60px; }
  .benefit-list li { align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .about { min-height: 0; }
  .about__copy { padding: 74px 20px; }
  .about__copy h2 { font-size: 48px; }
  .about__media { grid-template-columns: 1fr; min-height: 0; padding: 0; }
  .about__portrait { aspect-ratio: .82; }
  .about__events { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .about__events img { aspect-ratio: 1; }
  .workshops { padding: 78px 20px; }
  .workshop-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .workshop-grid figure.workshop-featured { grid-column: span 2; }
  .workshop-grid figcaption { min-height: 44px; font-size: 8px; }
  .masterclass { grid-template-columns: 1fr; gap: 34px; padding: 78px 20px; }
  .masterclass h2 { font-size: 48px; }
  .masterclass__intro img { width: 100%; }
  .masterclass__button { grid-column: 1; width: 100%; }
  .results { padding: 78px 20px; }
  .section-heading--row { align-items: start; }
  .section-heading--row .arrow-controls { flex: 0 0 auto; }
  .section-heading--row .arrow-controls button { min-width: 72px; height: 40px; }
  .results-track { grid-auto-columns: 75vw; }
  .offer { grid-template-columns: 1fr; min-height: 0; margin: 0 0 78px; }
  .offer__copy { padding: 60px 20px; }
  .offer > img { aspect-ratio: .86; }
  .offer__bonuses { grid-column: 1; padding: 50px 20px; }
  .offer__bonuses ol { display: block; }
  .testimonials { gap: 30px; padding: 74px 20px; }
  .testimonials h2 { font-size: 46px; }
  .testimonial-track { grid-template-columns: repeat(4, 78vw); }
  .faqs { grid-template-columns: 1fr; gap: 24px; padding: 78px 20px; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta > img { height: 350px; }
  .final-cta > div { padding: 58px 20px 70px; }
  .final-cta h2 { font-size: 52px; }
  .footer { grid-template-columns: 1fr; padding: 60px 20px 24px; }
  .footer nav { justify-content: start; }
  .footer > small { justify-self: start; }
  .direction-switcher { right: 10px; bottom: 10px; }
  .direction-index { gap: 28px; padding: 24px 16px; }
  .direction-index__header { align-items: start; flex-direction: column; }
  .direction-index__header > p { text-align: left; }
  .direction-index__grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 58vh; }
}

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