:root {
  --forest: #303a23;
  --deep: #182014;
  --olive: #737b42;
  --apple: #b5c866;
  --moss: #8d9b55;
  --earth: #515d36;
  --gold: #b29b5e;
  --cream: #f3f1e9;
  --paper: #fffefa;
  --ink: #23291e;
  --muted: #68705f;
  --soft-line: rgba(32, 41, 27, .16);
  --light-line: rgba(255, 255, 255, .18);
  --sans: 'DM Sans', sans-serif;
  --serif: 'Playfair Display', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.nav { min-height: 82px; padding: 0 clamp(22px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; background: var(--paper); color: var(--forest); position: relative; z-index: 10; border-bottom: 1px solid var(--soft-line); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .16em; font-size: .9rem; }
.brand small { display: block; font-size: .7rem; letter-spacing: .25em; margin-top: 2px; font-weight: 500; }
.brand-mark { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(38, 51, 30, .58); border-radius: 50%; font-family: var(--serif); font-style: italic; font-size: 1rem; letter-spacing: 0; }
.nav nav { display: flex; align-items: center; gap: 30px; font-size: .875rem; }
.nav nav a:not(.nav-cta) { opacity: .78; }
.nav nav a:hover { opacity: 1; }
.nav-cta { background: var(--forest); color: white; padding: 12px 20px; border-radius: 100px; }
.menu { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; }
.menu span { display: block; height: 1px; background: var(--forest); margin: 7px; }

.hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 50% 50%; background: var(--forest); color: white; }
.hero-copy { padding: clamp(68px, 8vw, 120px) 5vw 58px 8vw; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .21em; font-size: .75rem; line-height: 1.5; font-weight: 700; margin: 0 0 23px; color: var(--apple); }
.eyebrow.dark { color: var(--olive); }
h1, h2 { font-family: var(--serif); font-weight: 600; line-height: .96; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(3.65rem, 6.5vw, 7.4rem); }
h2 { font-size: clamp(3rem, 5.2vw, 6.1rem); }
h1 em, h2 em { font-weight: 500; color: var(--apple); }
.lead { font-size: clamp(1rem, 1.22vw, 1.18rem); line-height: 1.7; max-width: 545px; color: rgba(255, 255, 255, .76); margin: 32px 0; }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; padding: 17px 25px; border-radius: 100px; font-size: .9rem; font-weight: 700; letter-spacing: .025em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button-primary { background: var(--apple); color: var(--deep); }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0, 0, 0, .2); }
.button:focus-visible, .text-link:focus-visible, .nav a:focus-visible, .menu:focus-visible { outline: 3px solid var(--apple); outline-offset: 4px; }
.text-link { font-size: .9rem; border-bottom: 1px solid rgba(255, 255, 255, .5); padding-bottom: 5px; }
.quick-facts { display: flex; gap: 34px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--light-line); }
.quick-facts div { display: flex; gap: 10px; align-items: start; }
.quick-facts strong { font-family: var(--serif); font-size: 1.68rem; color: var(--apple); }
.quick-facts span { font-size: .75rem; line-height: 1.45; opacity: .7; text-transform: uppercase; letter-spacing: .07em; }

.hero-visual { position: relative; min-height: 690px; overflow: hidden; background: var(--deep); display: grid; place-items: center; padding: clamp(55px, 7vw, 100px); }
.hero-visual::before, .hero-visual::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(183, 201, 87, .22); }
.hero-visual::before { width: 68%; aspect-ratio: 1; top: 5%; right: -16%; }
.hero-visual::after { width: 44%; aspect-ratio: 1; bottom: -14%; left: -6%; }
.visual-glow { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(183, 201, 87, .2), transparent 68%); }
.product-frame { margin: 0; position: relative; z-index: 2; width: min(660px, 100%); border: 12px solid var(--paper); box-shadow: 0 34px 90px rgba(0, 0, 0, .38); transform: rotate(1.2deg); }
.product-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.watch-badge { position: absolute; z-index: 4; right: clamp(24px, 5vw, 74px); bottom: clamp(34px, 7vw, 96px); width: 134px; height: 134px; border-radius: 50%; display: grid; align-content: center; justify-items: center; gap: 3px; background: var(--apple); color: var(--deep); box-shadow: 0 20px 50px rgba(0, 0, 0, .35); border: 1px solid rgba(255, 255, 255, .45); transform: rotate(7deg); transition: transform .3s ease, box-shadow .3s ease; }
.watch-badge:hover { transform: rotate(0) scale(1.05); box-shadow: 0 24px 60px rgba(0, 0, 0, .44); }
.watch-badge span { font-size: .61rem; letter-spacing: .22em; font-weight: 700; }
.watch-badge strong { font-family: var(--serif); font-size: 1rem; line-height: 1; text-align: center; }
.watch-badge i { margin-top: 5px; font-size: .72rem; font-style: normal; }
.real-product-note { position: absolute; z-index: 3; left: clamp(18px, 4vw, 64px); bottom: clamp(26px, 6vw, 82px); background: var(--paper); color: var(--forest); padding: 18px 22px; box-shadow: 0 18px 45px rgba(0, 0, 0, .24); transform: rotate(-2deg); }
.real-product-note span { display: block; color: var(--gold); font-size: .72rem; letter-spacing: .16em; font-weight: 700; margin-bottom: 7px; }
.real-product-note strong { font-family: var(--serif); font-size: 1.1rem; line-height: 1.3; }
.vertical-note { position: absolute; z-index: 3; right: 20px; top: 36px; writing-mode: vertical-rl; font-size: .72rem; letter-spacing: .2em; opacity: .6; }

.proof-strip { min-height: 58px; padding: 15px clamp(22px, 5vw, 76px); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 21px; background: var(--apple); color: var(--deep); text-transform: uppercase; font-size: .75rem; font-weight: 700; letter-spacing: .14em; }
.proof-strip i { font-style: normal; font-size: .65rem; }
.section { padding: clamp(85px, 10vw, 150px) clamp(24px, 8vw, 130px); }

.video-story { background: var(--paper); display: grid; grid-template-columns: minmax(300px, .9fr) minmax(400px, 1.1fr); gap: clamp(55px, 10vw, 150px); align-items: center; overflow: hidden; }
.video-stage { position: relative; isolation: isolate; width: min(500px, 100%); margin: 0 auto; padding: 50px 40px; }
.video-stage::before { content: ''; position: absolute; z-index: -2; inset: 4% -16% 0; border-radius: 50%; background: radial-gradient(circle at 48% 46%, rgba(181, 200, 102, .38), rgba(115, 123, 66, .08) 47%, transparent 70%); }
.video-orbit { position: absolute; z-index: -1; width: 94%; aspect-ratio: 1; left: 2%; top: 14%; border: 1px solid rgba(115, 123, 66, .26); border-radius: 50%; animation: breathe 4s ease-in-out infinite; }
.video-orbit::before, .video-orbit::after { content: ''; position: absolute; inset: 10%; border: 1px solid rgba(115, 123, 66, .18); border-radius: 50%; }
.video-orbit::after { inset: 21%; }
.video-shell { margin: 0 auto; width: min(380px, 100%); background: var(--deep); color: white; border-radius: 34px; padding: 13px 13px 19px; box-shadow: 0 38px 90px rgba(23, 34, 20, .3); transform: rotate(-1.5deg); position: relative; z-index: 2; }
.video-topline { padding: 4px 9px 13px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, .72); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.video-window { position: relative; }
.video-shell video { width: 100%; aspect-ratio: 240 / 427; object-fit: cover; border-radius: 21px; background: #0b0e09; }
.video-shell figcaption { margin: 14px 8px 0; font-size: .8rem; color: rgba(255, 255, 255, .62); text-align: center; }
.sound-control { position: absolute; right: 13px; top: 13px; z-index: 2; border: 1px solid rgba(255, 255, 255, .45); border-radius: 100px; background: rgba(24, 32, 20, .78); color: white; padding: 10px 14px; font: 700 .75rem/1 var(--sans); backdrop-filter: blur(8px); cursor: pointer; }
.sound-control:hover { background: var(--apple); color: var(--deep); }
.watch-stamp { position: absolute; z-index: 3; right: -4px; top: 24%; width: 120px; height: 120px; border-radius: 50%; background: var(--olive); color: white; display: grid; place-content: center; text-align: center; transform: rotate(9deg); box-shadow: 0 18px 42px rgba(23, 34, 20, .22); }
.watch-stamp span { font-size: .65rem; line-height: 1.35; letter-spacing: .15em; font-weight: 700; max-width: 72px; }
.watch-stamp strong { color: var(--apple); font-size: 1.15rem; margin-top: 4px; }
.video-copy h2 em { color: var(--olive); }
.video-lead { margin: 30px 0; max-width: 600px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.reality-list { border-top: 1px solid var(--soft-line); margin-bottom: 34px; }
.reality-list div { display: grid; grid-template-columns: 40px 1fr; align-items: baseline; padding: 17px 0; border-bottom: 1px solid var(--soft-line); }
.reality-list span { color: var(--olive); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.reality-list p { margin: 0; color: var(--muted); line-height: 1.55; }
.reality-list strong { color: var(--forest); }
.button-dark { background: var(--forest); color: white; }
.official-note { color: var(--muted); font-size: .78rem; margin: 13px 0 0 10px; }

@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .55; }
  50% { transform: scale(1.04); opacity: 1; }
}

.why { background: var(--cream); }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 68px; }
.section-intro > div { min-width: 56%; }
.section-summary { max-width: 390px; color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.why h2 em, .ritual h2 em, .story-copy h2 em { color: var(--olive); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--soft-line); }
.benefit-grid article { padding: 34px 7% 20px 0; }
.benefit-grid article + article { border-left: 1px solid var(--soft-line); padding-left: 9%; }
.benefit-grid article > span, .steps li > span { font-size: .75rem; color: var(--olive); font-weight: 700; letter-spacing: .14em; }
.benefit-grid h3, .steps h3 { font-family: var(--serif); font-size: 1.55rem; margin: 39px 0 16px; }
.benefit-grid p, .inside-copy > p:last-child, .story-copy > p { line-height: 1.75; color: var(--muted); max-width: 410px; }

.inside { background: var(--deep); color: white; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.inside h2 { font-size: clamp(3.2rem, 5.4vw, 6.6rem); }
.inside-copy > p:last-child { color: rgba(255, 255, 255, .62); margin-top: 31px; }
.ingredients { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--light-line); }
.ingredients div { padding: 24px 12px 26px 0; border-bottom: 1px solid var(--light-line); display: grid; grid-template-columns: 38px 1fr; gap: 4px; }
.ingredients div:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--light-line); }
.ingredients span { grid-row: 1 / 3; color: var(--apple); font-size: .72rem; }
.ingredients strong { font-family: var(--serif); font-size: 1.15rem; }
.ingredients small { color: rgba(255, 255, 255, .54); font-size: .8rem; }

.ritual { background: #e7ebcd; }
.ritual-title { text-align: center; margin-bottom: 68px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--soft-line); }
.steps li { text-align: center; padding: 30px; border-right: 1px solid var(--soft-line); }
.steps li:last-child { border: 0; }
.step-icon { margin: 43px auto 30px; width: 105px; height: 105px; border: 1px solid rgba(101, 116, 61, .45); border-radius: 50%; display: grid; place-items: center; color: var(--olive); font-family: var(--serif); font-size: 2.1rem; }
.steps h3 { margin: 0 0 12px; }
.steps p { font-size: .9rem; color: var(--muted); }

.story { display: grid; grid-template-columns: .8fr 1.2fr; background: var(--paper); align-items: center; gap: 10vw; }
.story-number { font-family: var(--serif); font-size: clamp(9rem, 19vw, 19rem); line-height: .7; color: var(--olive); letter-spacing: -.1em; position: relative; }
.story-number span { font-family: var(--sans); font-size: .75rem; letter-spacing: .35em; position: absolute; bottom: -42px; left: 18px; }
.story-copy h2 { font-size: clamp(3rem, 4.4vw, 5.3rem); }
.story-copy > p { max-width: 560px; }

.cta { text-align: center; background: var(--earth); color: white; padding: clamp(90px, 11vw, 160px) 24px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .13); top: -290px; left: 50%; transform: translateX(-50%); }
.cta h2 { font-size: clamp(3.3rem, 6.4vw, 7.7rem); position: relative; }
.cta-copy { margin: 30px auto 0; color: rgba(255, 255, 255, .74); font-size: 1.05rem; }
.button-light { background: var(--apple); color: var(--deep); margin-top: 40px; }
.stockists { margin: 42px 0 0; font-size: .8rem; letter-spacing: .06em; opacity: .7; }
.stockists strong { color: white; }
footer { padding: 34px clamp(24px, 5vw, 76px); background: var(--deep); color: white; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .8rem; }
footer p { opacity: .5; }
.footer-brand { font-size: .78rem; }
.footer-brand .brand-mark { border-color: rgba(255, 255, 255, .58); }

@media (max-width: 980px) {
  .nav { min-height: 72px; }
  .menu { display: block; }
  .nav nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--paper); padding: 24px; flex-direction: column; align-items: stretch; gap: 22px; border-top: 1px solid var(--soft-line); box-shadow: 0 18px 35px rgba(23, 34, 20, .12); }
  .nav nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 25px 60px; }
  .hero-visual { min-height: 640px; }
  .quick-facts { gap: 18px; justify-content: space-between; }
  .quick-facts div { display: block; }
  .video-story { grid-template-columns: 1fr; }
  .video-stage { order: 2; }
  .video-copy { order: 1; }
  .section-intro { display: block; }
  .section-summary { margin-top: 28px; }
  .benefit-grid, .steps { grid-template-columns: 1fr; }
  .benefit-grid article + article { border-left: 0; border-top: 1px solid var(--soft-line); padding-left: 0; }
  .benefit-grid article { padding: 28px 0; }
  .benefit-grid h3 { margin-top: 24px; }
  .inside, .story { grid-template-columns: 1fr; gap: 70px; }
  .ingredients { grid-template-columns: 1fr; }
  .ingredients div:nth-child(even) { padding-left: 0; border-left: 0; }
  .steps li { border-right: 0; border-bottom: 1px solid var(--soft-line); }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  h1 { font-size: 3.4rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .quick-facts { margin-top: 48px; }
  .hero-visual { min-height: 520px; padding: 44px 22px 100px; }
  .product-frame { border-width: 8px; }
  .real-product-note { left: 18px; bottom: 32px; padding: 14px 16px; }
  .real-product-note strong { font-size: .98rem; }
  .watch-badge { width: 104px; height: 104px; right: 12px; bottom: 46px; }
  .watch-badge strong { font-size: .85rem; }
  .vertical-note { display: none; }
  .proof-strip { justify-content: flex-start; gap: 13px; }
  .proof-strip i { display: none; }
  .proof-strip span { width: 100%; }
  .section { padding-left: 22px; padding-right: 22px; }
  .video-stage { width: 100%; padding: 34px 8px 50px; }
  .video-shell { width: min(320px, 84vw); border-radius: 27px; }
  .video-shell video { border-radius: 17px; }
  .watch-stamp { width: 93px; height: 93px; right: -6px; top: 26%; }
  .watch-stamp span { font-size: .55rem; max-width: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .video-orbit { animation: none; }
}
