:root {
  --pine: #263b31;
  --pine-deep: #15251e;
  --moss: #66755c;
  --sand: #e9dfcc;
  --sand-soft: #f5efe4;
  --paper: #fbf8f1;
  --clay: #a24f32;
  --ink: #2d2923;
  --line: rgb(45 41 35 / 16%);
  color: var(--ink);
  background: var(--sand-soft);
  font-family: Manrope, Arial, sans-serif;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; background: var(--sand-soft); }
body.cart-open { overflow: hidden; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid #d08a57;
  outline-offset: 3px;
}

.topline {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  background: var(--pine-deep);
  color: rgb(255 255 255 / 78%);
  padding: 0.55rem 1rem;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topline span:not(:last-child)::after {
  content: "✦";
  margin-left: 2.4rem;
  color: #d0b894;
}

.header {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 5.6rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgb(245 239 228 / 94%);
  padding: 0 4vw;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.72rem;
}

.brand__mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--pine);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand > span:last-child { display: grid; gap: 0.06rem; }
.brand b { font-size: 0.82rem; letter-spacing: 0.16em; }
.brand small { color: rgb(45 41 35 / 58%); font-size: 0.58rem; letter-spacing: 0.08em; }

.header nav { display: flex; gap: 2rem; font-size: 0.74rem; font-weight: 700; }
.header nav a { transition: color 150ms ease; }
.header nav a:hover { color: var(--clay); }

.header__buy {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: var(--pine);
  color: white;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  overflow: hidden;
  background: var(--sand);
}

.hero__forest {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 58%;
  background: url("assets/taiga-mist.jpg") center / cover no-repeat;
}

.hero__forest::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--sand) 0%, transparent 38%), linear-gradient(180deg, transparent 55%, rgb(21 37 30 / 35%));
  content: "";
}

.hero__content {
  display: grid;
  width: min(100% - 3rem, 1420px);
  min-height: 800px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 4rem;
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero__copy { max-width: 760px; }
.kicker, .section-label {
  margin-bottom: 0;
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker { display: flex; align-items: center; gap: 0.55rem; }
.kicker span { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--clay); }

.hero h1 {
  max-width: 11em;
  margin: 1.25rem 0 1.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 6.1vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.89;
}

.hero__lead {
  max-width: 42rem;
  color: rgb(45 41 35 / 72%);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__meta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.7rem 0; }
.hero__meta span {
  border: 1px solid rgb(45 41 35 / 20%);
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  font-size: 0.64rem;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  min-width: min(100%, 25rem);
  min-height: 4.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--clay);
  color: white;
  padding: 0.9rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgb(85 41 28 / 18%);
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.cta:hover { background: #87402b; transform: translateY(-2px); }
.cta b { font-size: 0.9rem; white-space: nowrap; }
.cta s { margin-left: 0.3rem; color: rgb(255 255 255 / 52%); font-size: 0.67rem; font-weight: 600; }
.microcopy { margin: 0.7rem 0 0; color: rgb(45 41 35 / 52%); font-size: 0.64rem; }

.hero__product { position: relative; display: grid; min-height: 620px; place-items: center; }
.book-stack { position: relative; width: min(75%, 400px); aspect-ratio: 0.72; perspective: 1200px; }
.book {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.35rem 0.7rem 0.7rem 0.35rem;
  background: var(--pine);
  box-shadow: -16px 28px 60px rgb(8 17 12 / 38%);
}

.book::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 8%;
  background: linear-gradient(90deg, rgb(0 0 0 / 42%), transparent);
  content: "";
}

.book img { height: 100%; object-fit: cover; }
.book--back { transform: translate(32px, 18px) rotate(5deg); background: #c9b798; opacity: 0.72; }
.book--front { transform: rotate(-4deg); }
.book__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(20 39 30 / 18%), rgb(12 27 20 / 82%)); }
.book__copy { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; color: #f6eedf; padding: 12% 10%; }
.book__copy small { margin-bottom: auto; font-size: 0.54rem; font-weight: 800; letter-spacing: 0.18em; }
.book__copy strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.4rem, 5vw, 5.4rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.72; }
.book__copy span { max-width: 12rem; margin-top: 1.35rem; color: rgb(255 255 255 / 74%); font-size: 0.7rem; line-height: 1.45; }
.product-seal { position: absolute; right: 3%; bottom: 12%; display: grid; width: 7.5rem; height: 7.5rem; place-items: center; align-content: center; border: 1px solid #e1c8a8; border-radius: 50%; background: var(--clay); color: white; transform: rotate(8deg); box-shadow: 0 12px 30px rgb(30 16 10 / 24%); text-align: center; }
.product-seal b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.25rem; line-height: 0.8; }
.product-seal span { margin-top: 0.35rem; font-size: 0.53rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }

.video-section { background: var(--paper); padding: clamp(5rem, 8vw, 8rem) 4vw 0; }
.video-section__heading { max-width: 980px; margin: 0 auto 2.6rem; text-align: center; }
.video-section h2, .section-heading h2, .value h2, .comparison h2, .story h2, .rituals h2, .faq h2, .offer h2 {
  margin: 0.8rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 5.3vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.video-section h2 em, .section-heading h2 em, .value h2 em, .story h2 em, .rituals h2 em {
  color: var(--clay);
  font-weight: 500;
}

.vsl { position: relative; max-width: 1080px; aspect-ratio: 16 / 8.8; overflow: hidden; margin: 0 auto; background: #192a22; }
.vsl video { height: 100%; object-fit: cover; object-position: center 42%; }
.vsl__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(12 26 19 / 70%), transparent 65%), linear-gradient(180deg, transparent, rgb(9 20 14 / 34%)); }
.vsl__copy { position: absolute; top: 50%; left: 7%; color: white; transform: translateY(-50%); }
.vsl__copy span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.vsl__copy strong { display: block; max-width: 22rem; margin-top: 0.9rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.7rem); font-weight: 500; line-height: 0.94; }
.video-toggle { position: absolute; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: 0.45rem; border: 1px solid rgb(255 255 255 / 34%); border-radius: 999px; background: rgb(17 31 24 / 56%); color: white; padding: 0.65rem 0.85rem; cursor: pointer; backdrop-filter: blur(10px); font-size: 0.64rem; font-weight: 700; }

.trust-row { display: grid; max-width: 1080px; grid-template-columns: repeat(3, 1fr); margin: 0 auto; border: 1px solid var(--line); border-top: 0; }
.trust-row div { display: grid; gap: 0.25rem; padding: 1.25rem 1.5rem; text-align: center; }
.trust-row div:not(:last-child) { border-right: 1px solid var(--line); }
.trust-row b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; font-weight: 600; }
.trust-row span { color: rgb(45 41 35 / 56%); font-size: 0.63rem; line-height: 1.45; }

.inside { background: var(--paper); padding: clamp(6rem, 10vw, 10rem) 4vw; }
.section-heading { max-width: 1040px; margin: 0 auto clamp(4rem, 7vw, 7rem); text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 1.4rem auto 0; color: rgb(45 41 35 / 65%); font-size: 0.9rem; line-height: 1.75; }

.chapter { position: relative; display: grid; max-width: 1220px; grid-template-columns: auto minmax(0, 1fr) minmax(340px, 0.78fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); margin: 0 auto 7rem; padding-bottom: 7rem; border-bottom: 1px solid var(--line); }
.chapter:last-of-type { margin-bottom: 3.5rem; }
.chapter__number { align-self: start; color: var(--clay); font-family: "Cormorant Garamond", Georgia, serif; font-size: 4rem; line-height: 1; }
.chapter__copy h3 { max-width: 15em; margin: 0.8rem 0 1.25rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2.3rem, 3.5vw, 4rem); font-weight: 500; letter-spacing: -0.04em; line-height: 0.98; }
.chapter__copy > p:not(.section-label) { max-width: 36rem; color: rgb(45 41 35 / 65%); font-size: 0.86rem; line-height: 1.75; }
.chapter__copy ul { display: grid; gap: 0.7rem; margin: 1.6rem 0 1.8rem; padding: 0; list-style: none; }
.chapter__copy li { position: relative; padding-left: 1.25rem; font-size: 0.76rem; font-weight: 700; }
.chapter__copy li::before { position: absolute; left: 0; color: var(--clay); content: "✦"; }
.chapter__tag { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 0.75rem; font-size: 0.59rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.chapter__image { aspect-ratio: 4 / 5; overflow: hidden; margin: 0; }
.chapter__image img { height: 100%; object-fit: cover; }
.chapter--reverse .chapter__image { grid-column: 2; grid-row: 1; }
.chapter--reverse .chapter__copy { grid-column: 3; }
.chapter--reverse .chapter__number { grid-column: 1; grid-row: 1; }

.inside-cta { display: flex; max-width: 980px; align-items: center; justify-content: space-between; gap: 2rem; margin: 0 auto; border: 1px solid var(--line); background: var(--sand); padding: 1.1rem 1.2rem 1.1rem 1.6rem; }
.inside-cta > div { display: grid; gap: 0.15rem; }
.inside-cta > div b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; }
.inside-cta > div span { color: rgb(45 41 35 / 58%); font-size: 0.67rem; }
.inside-cta .cta { min-height: 3.5rem; }

.value { display: grid; min-height: 720px; grid-template-columns: minmax(320px, 0.7fr) minmax(580px, 1fr); gap: 5vw; overflow: hidden; background: var(--sand); padding: clamp(5rem, 9vw, 9rem) 6vw; }
.value__copy { align-self: center; }
.value__copy h2 { margin: 1rem 0 1.3rem; }
.value__copy > p:not(.section-label) { max-width: 34rem; color: rgb(45 41 35 / 64%); line-height: 1.75; }
.value__visual { position: relative; min-height: 560px; }
.recipe-card { position: absolute; width: min(42%, 290px); min-height: 400px; border: 1px solid rgb(45 41 35 / 25%); background: var(--paper); padding: 1.8rem; box-shadow: 0 30px 55px rgb(55 39 26 / 13%); }
.recipe-card::before { position: absolute; inset: 0.7rem; border: 1px solid rgb(45 41 35 / 12%); content: ""; pointer-events: none; }
.recipe-card small { position: relative; z-index: 1; color: var(--clay); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; }
.recipe-card h3 { position: relative; z-index: 1; margin: 4.5rem 0 0.8rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.6rem; font-weight: 500; line-height: 0.9; }
.recipe-card p { position: relative; z-index: 1; color: rgb(45 41 35 / 54%); font-size: 0.66rem; }
.recipe-card ul { position: relative; z-index: 1; display: grid; gap: 0.55rem; margin-top: 3rem; padding: 0; list-style: none; font-size: 0.68rem; }
.recipe-card li { border-top: 1px solid var(--line); padding-top: 0.5rem; }
.recipe-card--one { top: 2%; left: 0; transform: rotate(-7deg); }
.recipe-card--two { z-index: 2; top: 13%; left: 30%; background: #fbf4e7; transform: rotate(2deg); }
.recipe-card--three { top: 4%; right: 0; background: #dde1d3; transform: rotate(8deg); }

.comparison { background: var(--sand-soft); padding: clamp(5rem, 9vw, 9rem) 6vw; }
.comparison__heading { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.comparison__grid { display: grid; max-width: 1120px; grid-template-columns: repeat(4, 1fr); margin: 0 auto; border: 1px solid var(--line); }
.comparison__item { position: relative; display: flex; min-height: 250px; flex-direction: column; justify-content: space-between; gap: 1.4rem; padding: 1.5rem; }
.comparison__item:not(:last-child) { border-right: 1px solid var(--line); }
.comparison__item span { color: rgb(45 41 35 / 52%); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison__item b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; font-weight: 600; line-height: 1.05; }
.comparison__item i { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: rgb(45 41 35 / 40%); font-style: normal; }
.comparison__item--active { background: var(--pine); color: white; transform: scale(1.04); box-shadow: 0 24px 46px rgb(18 36 27 / 22%); }
.comparison__item--active span { color: rgb(255 255 255 / 58%); }
.comparison__item--active i { border-color: rgb(255 255 255 / 22%); color: #e9c899; }

.story { display: grid; grid-template-columns: minmax(440px, 0.82fr) 1fr; background: var(--sand); }
.story__image { position: relative; min-height: 760px; overflow: hidden; }
.story__image img { height: 100%; object-fit: cover; }
.story__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgb(16 31 24 / 42%)); content: ""; }
.story__seal { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; display: grid; width: 9rem; height: 9rem; place-items: center; align-content: center; border: 1px solid rgb(255 255 255 / 55%); border-radius: 50%; color: white; text-align: center; }
.story__seal span { font-size: 0.48rem; font-weight: 800; letter-spacing: 0.18em; }
.story__seal b { margin: 0.25rem 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
.story__copy { align-self: center; max-width: 760px; padding: clamp(4rem, 8vw, 9rem); }
.story__copy h2 { margin: 1rem 0 1.6rem; }
.story__copy > p:not(.section-label) { color: rgb(45 41 35 / 65%); font-size: 0.88rem; line-height: 1.85; }
.signature { display: grid; width: fit-content; margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.signature span { color: rgb(45 41 35 / 50%); font-size: 0.6rem; }
.signature b { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; font-style: italic; font-weight: 500; }

.rituals { background: var(--pine); color: white; padding: clamp(5rem, 9vw, 9rem) 6vw; }
.section-heading--light { margin-bottom: 4rem; text-align: left; }
.section-heading--light .section-label { color: #d0b894; }
.section-heading--light h2 em { color: #e5cba8; }
.rituals__grid { display: grid; max-width: 1280px; grid-template-columns: repeat(4, 1fr); margin: 0 auto; border-block: 1px solid rgb(255 255 255 / 18%); }
.rituals__grid article { min-height: 285px; border-left: 1px solid rgb(255 255 255 / 18%); padding: 1.5rem; }
.rituals__grid article:last-child { border-right: 1px solid rgb(255 255 255 / 18%); }
.rituals__grid span { color: #d0b894; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.rituals__grid h3 { margin: 5rem 0 0.8rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.65rem; font-weight: 500; line-height: 1; }
.rituals__grid p { color: rgb(255 255 255 / 58%); font-size: 0.74rem; line-height: 1.6; }

.faq { display: grid; grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1fr); gap: 8vw; background: var(--paper); padding: clamp(5rem, 9vw, 9rem) 6vw; }
.faq__heading h2 { margin-top: 1rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font-size: 0.9rem; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { color: var(--clay); font-size: 1.55rem; font-weight: 400; transition: transform 160ms ease; }
.faq details[open] summary b { transform: rotate(45deg); }
.faq details p { max-width: 46rem; margin-bottom: 1.5rem; color: rgb(45 41 35 / 64%); font-size: 0.82rem; line-height: 1.75; }

.offer { position: relative; isolation: isolate; overflow: hidden; background: var(--sand); }
.offer__forest { position: absolute; z-index: -2; inset: 0; background: url("assets/taiga-aerial.jpg") center / cover no-repeat; }
.offer__forest::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(232 220 198 / 94%) 0 58%, rgb(232 220 198 / 64%)); content: ""; }
.offer__inner { display: grid; max-width: 1200px; min-height: 760px; grid-template-columns: 0.75fr 1fr; align-items: center; gap: 7vw; margin: 0 auto; padding: 5rem 2rem; }
.offer__book { position: relative; min-height: 540px; }
.book--offer { inset: 2% 7% 2% 5%; transform: rotate(-4deg); }
.offer__copy { max-width: 590px; }
.offer__copy h2 { margin: 1rem 0 1.6rem; }
.offer__copy ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.offer__copy li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding: 0.9rem 0; font-size: 0.76rem; }
.offer__copy li b { color: rgb(45 41 35 / 48%); }
.offer__price { display: grid; grid-template-columns: auto auto 1fr; align-items: baseline; gap: 0.8rem; margin: 1.8rem 0; }
.offer__price s { color: rgb(45 41 35 / 44%); font-size: 0.8rem; }
.offer__price b { color: var(--clay); font-family: "Cormorant Garamond", Georgia, serif; font-size: 3.3rem; line-height: 1; }
.offer__price span { color: rgb(45 41 35 / 52%); font-size: 0.62rem; }
.cta--wide { width: 100%; }

.footer { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 3rem; background: var(--pine-deep); color: white; padding: 3rem 5vw; }
.brand--footer .brand__mark { border-color: rgb(255 255 255 / 45%); }
.brand--footer small, .footer p { color: rgb(255 255 255 / 52%); }
.footer > p { max-width: 30rem; margin-bottom: 0; font-size: 0.67rem; line-height: 1.6; }
.footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.66rem; font-weight: 700; }
.footer__legal { grid-column: 1 / -1; display: flex; justify-content: space-between; border-top: 1px solid rgb(255 255 255 / 14%); padding-top: 1rem; color: rgb(255 255 255 / 42%); font-size: 0.58rem; }
.footer__disclaimer { grid-column: 1 / -1; max-width: none !important; color: rgb(255 255 255 / 34%) !important; }

.cart { position: fixed; z-index: 100; inset: 0; pointer-events: none; visibility: hidden; }
.cart[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.cart__backdrop { position: absolute; inset: 0; border: 0; background: rgb(9 15 12 / 0%); cursor: default; transition: background 220ms ease; }
.cart[aria-hidden="false"] .cart__backdrop { background: rgb(9 15 12 / 56%); }
.cart__panel { position: absolute; top: 0; right: 0; display: flex; width: min(100%, 470px); height: 100%; flex-direction: column; background: var(--paper); padding: 1.5rem; box-shadow: -24px 0 70px rgb(0 0 0 / 24%); transform: translateX(102%); transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); }
.cart[aria-hidden="false"] .cart__panel { transform: translateX(0); }
.cart__header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
.cart__header small { color: var(--clay); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.14em; }
.cart__header h2 { margin: 0.25rem 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 600; }
.cart__close { border: 1px solid var(--line); border-radius: 50%; background: transparent; width: 2.3rem; height: 2.3rem; cursor: pointer; font-size: 1.3rem; }
.cart__product { display: grid; grid-template-columns: 84px 1fr; gap: 1rem; border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.cart__cover { aspect-ratio: 0.72; overflow: hidden; }
.cart__cover img { height: 100%; object-fit: cover; }
.cart__product h3 { margin: 0 0 0.35rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; }
.cart__product p { margin: 0 0 0.8rem; color: rgb(45 41 35 / 54%); font-size: 0.64rem; }
.cart__product b { color: var(--clay); }
.cart__addons { display: grid; gap: 0.7rem; padding: 1rem 0; }
.cart__addons > p { margin-bottom: 0.2rem; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.cart__addons label { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.7rem; border: 1px solid var(--line); padding: 0.8rem; cursor: pointer; }
.cart__addons input { width: 1rem; height: 1rem; accent-color: var(--clay); }
.cart__addons label span { display: grid; gap: 0.15rem; }
.cart__addons label b { font-size: 0.72rem; }
.cart__addons label small { color: rgb(45 41 35 / 50%); font-size: 0.58rem; }
.cart__addons label strong { font-size: 0.68rem; }
.cart__summary { display: flex; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--line); padding: 1.15rem 0; }
.cart__summary span { font-size: 0.72rem; font-weight: 700; }
.cart__summary b { color: var(--clay); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; }
.cart__checkout { min-height: 3.8rem; border: 0; background: var(--pine); color: white; cursor: pointer; font-size: 0.76rem; font-weight: 800; }
.cart__note { margin: 0.75rem 0 0; color: rgb(45 41 35 / 45%); font-size: 0.56rem; line-height: 1.5; text-align: center; }
.cart__note code { font-size: inherit; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero__content { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: 2rem; }
  .comparison__grid { grid-template-columns: repeat(2, 1fr); }
  .comparison__item:nth-child(2) { border-right: 0; }
  .comparison__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .comparison__item--active { transform: none; }
  .value { grid-template-columns: 1fr; }
  .value__visual { min-height: 530px; }
  .story { grid-template-columns: 0.8fr 1fr; }
  .rituals__grid { grid-template-columns: repeat(2, 1fr); }
  .rituals__grid article:nth-child(n + 3) { border-top: 1px solid rgb(255 255 255 / 18%); }
}

@media (max-width: 820px) {
  .topline span:nth-child(n + 2) { display: none; }
  .topline span::after { display: none; }
  .header { grid-template-columns: 1fr auto; padding-inline: 1rem; }
  .header nav { display: none; }
  .hero__forest { inset: auto 0 0 0; height: 46%; }
  .hero__forest::after { background: linear-gradient(180deg, var(--sand), transparent 35%), linear-gradient(0deg, rgb(21 37 30 / 30%), transparent); }
  .hero__content { grid-template-columns: 1fr; padding: 4rem 0 5rem; }
  .hero__product { min-height: 580px; }
  .vsl { aspect-ratio: 4 / 5; }
  .vsl video { object-position: center; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row div:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .chapter, .chapter--reverse { grid-template-columns: auto 1fr; gap: 1.5rem; }
  .chapter__image, .chapter--reverse .chapter__image { grid-column: 2; grid-row: 2; aspect-ratio: 16 / 10; }
  .chapter__copy, .chapter--reverse .chapter__copy { grid-column: 2; grid-row: 1; }
  .chapter__number, .chapter--reverse .chapter__number { grid-column: 1; grid-row: 1; }
  .inside-cta { align-items: stretch; flex-direction: column; }
  .inside-cta .cta { width: 100%; }
  .story, .faq, .offer__inner { grid-template-columns: 1fr; }
  .story__image { min-height: 600px; }
  .story__copy { padding: 4.5rem 1.5rem; }
  .offer__forest::after { background: rgb(232 220 198 / 82%); }
  .offer__book { min-height: 560px; }
  .footer { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 580px) {
  .header { min-height: 4.8rem; }
  .brand__mark { width: 2.25rem; height: 2.25rem; }
  .brand b { font-size: 0.68rem; }
  .brand small { font-size: 0.51rem; }
  .header__buy { padding: 0.72rem 0.85rem; font-size: 0.62rem; }
  .hero__content { width: min(100% - 2rem, 1420px); }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 5.3rem); }
  .hero__lead { font-size: 0.9rem; }
  .hero__meta { gap: 0.35rem; }
  .hero__meta span { padding: 0.45rem 0.55rem; font-size: 0.56rem; }
  .hero__product { min-height: 500px; }
  .book-stack { width: 76%; }
  .product-seal { right: 0; bottom: 8%; width: 6.5rem; height: 6.5rem; }
  .video-section { padding-inline: 1rem; }
  .video-section h2, .section-heading h2, .value h2, .comparison h2, .story h2, .rituals h2, .faq h2, .offer h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .vsl__copy { top: auto; right: 1.2rem; bottom: 5rem; left: 1.2rem; transform: none; }
  .vsl__copy strong { font-size: 2rem; }
  .inside, .comparison, .rituals, .faq { padding: 5rem 1rem; }
  .chapter, .chapter--reverse { display: flex; flex-direction: column; align-items: stretch; gap: 1.5rem; margin-bottom: 4.5rem; padding-bottom: 4.5rem; }
  .chapter__number { align-self: start; }
  .chapter__copy h3 { font-size: 2.6rem; }
  .chapter__image { aspect-ratio: 4 / 4.5; }
  .inside-cta { padding: 1rem; }
  .value { grid-template-columns: 1fr; padding: 5rem 1rem; }
  .value__visual { min-height: 570px; margin-inline: -2rem; }
  .recipe-card { width: 48%; min-height: 360px; padding: 1.25rem; }
  .recipe-card h3 { font-size: 2rem; }
  .recipe-card--one { left: 4%; }
  .recipe-card--two { top: 20%; left: 27%; }
  .recipe-card--three { right: 4%; }
  .comparison__grid { grid-template-columns: 1fr; }
  .comparison__item { min-height: 190px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .comparison__item:not(:first-child) { border-top: 0; }
  .story__image { min-height: 520px; }
  .rituals__grid { grid-template-columns: 1fr; }
  .rituals__grid article { min-height: 230px; border-right: 1px solid rgb(255 255 255 / 18%); border-bottom: 1px solid rgb(255 255 255 / 18%); }
  .rituals__grid article:last-child { border-bottom: 0; }
  .rituals__grid h3 { margin-top: 3rem; }
  .faq { gap: 3rem; }
  .offer__inner { padding: 5rem 1rem; }
  .offer__book { min-height: 500px; }
  .offer__price { grid-template-columns: auto auto; }
  .offer__price span { grid-column: 1 / -1; }
  .footer { padding: 3rem 1rem; }
  .footer nav { flex-wrap: wrap; }
  .footer__legal { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .cart__panel { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cart__panel, .cart__backdrop, .cta { transition: none; }
}
