/* ─────────────────────────────────────────────
   LEXALUP — Apple-style editorial landing
   ───────────────────────────────────────────── */

:root {
  /* Palette — premium per brand guidelines */
  --bg: #f5f1e8;          /* crema cálido */
  --bg-soft: #ece6d6;     /* crema más profundo */
  --ink: #111111;         /* negro suave */
  --ink-soft: #2a2a28;
  --muted: #7a7a73;

  --black: #111111;
  --forest: #1F6843;      /* verde oscuro premium · más brillo */
  --forest-deep: #154D33; /* profundo con vida */
  --leaf: #5FB142;        /* verde aguacate fresco y saturado */
  --lime: #C9EA6E;        /* lima brillante */
  --lime-soft: #dff39a;
  --avocado: #5FB142;
  --cream: #f5f1e8;

  --line: rgba(17, 17, 17, .1);

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;

  /* Easing */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --container: 1320px;
  --pad: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--forest);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.accent { color: var(--lime); }
.dark { color: var(--ink); }

/* ─────────────────────────────────────────
   .hl — highlight para frases destacadas dentro de párrafos.
   Cambia tipo a serif italic + color leaf. Usar en cualquier
   <p>, <li>, <h*> envolviendo la palabra/frase clave en
   <span class="hl">…</span>. En fondos oscuros, añadir .hl--lime.
   ───────────────────────────────────────── */
.hl {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--leaf);
  letter-spacing: -0.015em;
  font-size: 1.08em;
}
.hl--lime { color: var(--lime); }
.hl--ink { color: var(--ink); }
.hl--bold { font-weight: 600; }

::selection { background: var(--lime); color: var(--black); }

/* ─────────────────────────────────────────
   Reusable atoms
   ───────────────────────────────────────── */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  will-change: transform;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lime {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 8px 28px -10px rgba(183, 215, 122, .45);
}
.btn--lime:hover { background: #a8c66a; box-shadow: 0 14px 32px -8px rgba(183, 215, 122, .65); }

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(20,53,36,.18);
}
.btn--ghost-light:hover { background: rgba(20,53,36,.05); border-color: rgba(20,53,36,.35); }

.btn--lg {
  padding: 20px 36px;
  font-size: 16px;
}

/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--pad);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
  border-bottom: 1px solid transparent;
  color: #fff;
}
.nav.is-stuck {
  background: rgba(20, 53, 36, .8);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom-color: rgba(255,255,255,.1);
}
.nav.is-light {
  color: var(--ink);
}
.nav.is-light.is-stuck {
  background: rgba(245, 245, 240, .82);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.nav__logo-text {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 26px;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1;
}
.nav__logo-text em { color: var(--lime); font-style: italic; font-weight: 400; }
.nav.is-light .nav__logo-text em { color: var(--leaf); }

.nav__menu {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: background .25s var(--ease);
  justify-self: start;
}
.nav__menu:hover { background: rgba(255,255,255,.1); }
.nav.is-light .nav__menu:hover { background: rgba(20,53,36,.08); }
.nav__menu span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  transition: background .25s var(--ease), transform .25s var(--ease);
  justify-self: end;
}
.nav__cart:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.nav.is-light .nav__cart:hover { background: rgba(20,53,36,.08); }
.nav__cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--lime);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  letter-spacing: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease-bounce);
}
.nav__cart.has-items .nav__cart-count {
  opacity: 1;
  transform: scale(1);
}
.nav__cart.bump { animation: bump .5s var(--ease-bounce); }
@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.18); }
  70% { transform: scale(.94); }
  100% { transform: scale(1); }
}

/* Old links removed, fullscreen menu now */

/* ─────────────────────────────────────────
   HERO — full bleed dark
   ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
}

/* Huge product image, anchored to the right side of the hero so
   the funda fills most of the screen while the left column stays
   white and the text reads on top with no overlap. */
.hero__media {
  position: absolute;
  top: 0;
  right: -4%;
  width: 78%;
  height: 100%;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero__media img {
  max-width: 100%;
  max-height: 96vh;
  width: auto;
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(20, 53, 36, .2));
  animation: heroFloat 8s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--pad) 70px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero__content > * { max-width: 520px; }
.hero__cta { width: 100%; }

@media (max-width: 800px) {
  .hero__media {
    position: relative;
    right: 0;
    width: 100%;
    height: 56vh;
    padding: 12px 16px 0;
  }
  .hero__media img { max-height: 56vh; }
  .hero__content {
    min-height: 0;
    padding: 24px 24px 56px;
  }
  .hero__content > * { max-width: 100%; }
}

.hero__title {
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 14ch;
  color: var(--ink);
}
.hero__title em { color: var(--leaf); }
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .1s; }
.hero__title .line:nth-child(2) > span { animation-delay: .25s; }
.hero__title .line:nth-child(3) > span { animation-delay: .4s; }
.hero__title .serif { font-weight: 400; }
.hero__title .serif em { font-style: italic; }

@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 38px;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .8s forwards;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .15s forwards;
  width: fit-content;
}
.hero__rating > span:first-child {
  color: var(--leaf);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.hero__rating em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(20,53,36,.25), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -44px; left: 0;
  width: 1px; height: 44px;
  background: var(--leaf);
  animation: scrollDot 2.5s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

/* ─────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────── */

.trust {
  background: var(--forest);
  color: rgba(255,255,255,.7);
  padding: 20px var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color .3s var(--ease);
}
.trust__item:hover { color: var(--lime); }
.trust__item svg { color: var(--leaf); transition: color .3s var(--ease); }
.trust__item:hover svg { color: var(--lime); }
.trust__sep { color: rgba(255,255,255,.2); font-weight: 400; }
@media (max-width: 540px) {
  .trust { padding: 16px var(--pad); }
  .trust__inner { gap: 10px; font-size: 10px; }
  .trust__sep { display: none; }
}

/* ─────────────────────────────────────────
   QUOTES (compact pills)
   ───────────────────────────────────────── */

.quotes {
  background: var(--bg);
  padding: clamp(100px, 12vw, 160px) var(--pad);
  border-top: 1px solid var(--line);
}
.quotes__head {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
}
.quotes__title {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 14px;
}
.quotes__title strong { color: var(--leaf); }
.quotes__title em { font-weight: 400; }
.quotes__sub {
  color: var(--muted);
  font-size: 14px;
}

.quotes__row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
}
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px 22px 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .4s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.quote:hover {
  transform: translateY(-3px);
  border-color: var(--leaf);
  background: #fff;
}
.quote__stars {
  color: var(--leaf);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
.quote__author {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
}
.quote__author strong { color: var(--ink); font-weight: 600; }

.quotes__more {
  display: inline-flex;
  margin: 40px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(20, 53, 36, .06);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  align-items: center;
  gap: 8px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.quotes__more:hover {
  background: rgba(20, 53, 36, .12);
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 800px) {
  .quotes__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .quotes__row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   STATEMENT (dark big text)
   ───────────────────────────────────────── */

.statement {
  padding: clamp(120px, 16vw, 220px) var(--pad);
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(31, 122, 77, .22), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(183, 215, 122, .08), transparent 70%);
  pointer-events: none;
}
.statement__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.statement .eyebrow { color: var(--lime); }

.statement__title {
  font-size: clamp(40px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 50px;
}
.statement__title span { display: block; }
.statement__title em { color: var(--lime); font-family: var(--serif); font-weight: 400; font-style: italic; }
.statement__copy {
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,.65);
  max-width: 720px;
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   STICKY ZOOM (texture + product reveal)
   ───────────────────────────────────────── */

.zoom {
  position: relative;
  height: 320vh;
  background: var(--forest-deep);
}
.zoom__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.zoom__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  will-change: transform, opacity;
}
.zoom__layer--bg img {
  width: 60%;
  max-width: 700px;
  border-radius: 24px;
  /* scale & opacity driven by JS via --p (0..1) */
  transform: scale(calc(1 + var(--p, 0) * 4));
  opacity: calc(1 - var(--p, 0) * 1.4);
  filter: brightness(calc(1 - var(--p, 0) * .3));
  transition: transform .05s linear, opacity .1s linear;
}
.zoom__layer--product img {
  width: 42%;
  max-width: 620px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  /* product fades in mid-scroll, then drifts up */
  opacity: calc((var(--p, 0) - 0.45) * 4);
  transform: scale(calc(0.6 + var(--p, 0) * 0.6)) translateY(calc((var(--p, 0) - 0.6) * -40px));
  box-shadow: 0 80px 120px -30px rgba(0, 0, 0, .8);
  transition: opacity .1s linear, transform .1s linear;
}

.zoom__captions {
  position: absolute;
  bottom: 14vh;
  left: 0; right: 0;
  text-align: center;
  pointer-events: none;
  color: #fff;
  z-index: 5;
}
.zoom__cap {
  position: absolute;
  left: 0; right: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .65s var(--ease);
}
.zoom__cap em { color: var(--lime); font-weight: 400; }
.zoom__cap.is-active { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .zoom__layer--bg img { width: 90%; }
  .zoom__layer--product img { width: 60%; }
}

/* ─────────────────────────────────────────
   BIG TYPE EDITORIAL
   ───────────────────────────────────────── */

.bigtype {
  background: var(--cream);
  padding: clamp(120px, 16vw, 200px) var(--pad);
}
.bigtype__inner { max-width: var(--container); margin: 0 auto; }

.bigtype__head {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 100px;
  max-width: 16ch;
}
.bigtype__head em { color: var(--leaf); font-weight: 400; }

.bigtype__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.bigtype__copy p {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 480px;
}
.bigtype__copy p:last-child { margin-bottom: 0; }
.bigtype__media {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}
.bigtype__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.bigtype__media:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .bigtype__grid { grid-template-columns: 1fr; gap: 40px; }
  .bigtype__head { margin-bottom: 50px; }
}

/* ─────────────────────────────────────────
   FLOOD (color section: forest → lime split)
   ───────────────────────────────────────── */

.flood {
  position: relative;
  height: 200vh;
}
.flood__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
}
.flood__bg {
  position: absolute;
  inset: 0;
  transition: opacity .8s var(--ease);
}
.flood__bg--forest {
  background: radial-gradient(120% 80% at 50% 30%, var(--forest) 0%, var(--forest-deep) 80%);
  opacity: 1;
}
.flood__bg--lime {
  background: radial-gradient(120% 80% at 50% 30%, var(--lime) 0%, #98be60 80%);
  opacity: 0;
}
.flood.is-lime .flood__bg--forest { opacity: 0; }
.flood.is-lime .flood__bg--lime { opacity: 1; }

.flood__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  left: 0; right: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.flood__panel--1 { opacity: 1; transform: translateY(0); color: #fff; }
.flood__panel--2 { opacity: 0; transform: translateY(40px); color: var(--ink); }
.flood.is-lime .flood__panel--1 { opacity: 0; transform: translateY(-40px); }
.flood.is-lime .flood__panel--2 { opacity: 1; transform: translateY(0); }

.flood__copy h3 {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 24px;
}
.flood__copy h3 em { font-weight: 400; }
.flood__panel--1 .flood__copy h3 em { color: var(--lime); }
.flood__panel--2 .flood__copy h3 em { color: var(--forest); }
.flood__sub {
  font-size: clamp(16px, 1.3vw, 20px);
  max-width: 380px;
  color: rgba(255,255,255,.78);
}
.flood__sub--dark { color: rgba(10,10,10,.7); }
.flood__eye { color: var(--lime); }
.flood__eye--dark { color: var(--forest-deep); }

.flood__visual {
  display: grid;
  place-items: center;
  position: relative;
}
.flood__photo {
  width: clamp(280px, 38vw, 540px);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 60px 80px -25px rgba(0,0,0,.45);
  /* --zoom drives the scroll-driven scale (set by JS, default 1) */
  --zoom: 1;
  transform: rotate(-3deg) scale(var(--zoom));
  transform-origin: center center;
  transition: transform .08s linear, box-shadow .8s var(--ease);
  will-change: transform;
}
.flood__photo--solo {
  transform: rotate(2deg) scale(var(--zoom));
}

@media (max-width: 800px) {
  .flood__panel { grid-template-columns: 1fr; gap: 30px; padding-top: 100px; padding-bottom: 60px; align-items: start; }
  .flood__visual { order: -1; }
  .orb { width: clamp(180px, 50vw, 280px); }
}

/* ─────────────────────────────────────────
   STATS
   ───────────────────────────────────────── */

.stats {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(60px, 7vw, 90px) var(--pad);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 80% 20%, rgba(183, 215, 122, .08), transparent 70%);
  pointer-events: none;
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.stats .eyebrow { color: var(--lime); margin-bottom: 8px; }
.stats__head {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  max-width: 14ch;
}
.stats__head em { color: var(--lime); font-weight: 400; font-family: var(--serif); font-style: italic; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:first-child { border-left: 0; padding-left: 0; }

.stat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}
.stat__suffix {
  font-size: 0.45em;
  font-weight: 500;
  font-family: var(--sans);
  font-style: normal;
  margin-left: 4px;
  color: var(--lime);
  letter-spacing: -0.01em;
}
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

@media (max-width: 800px) {
  .stats__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .stat { padding: 0 14px; }
  .stat:nth-child(2n+1) { border-left: 0; padding-left: 0; }
}

/* ─────────────────────────────────────────
   FOODSCROLL (horizontal)
   ───────────────────────────────────────── */

.foodscroll {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
}
.foodscroll__head {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 var(--pad);
}
.foodscroll__head h2 {
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 16ch;
}
.foodscroll__head h2 em { color: var(--leaf); font-weight: 400; }

.foodscroll__track {
  display: flex;
  gap: 22px;
  padding: 0 var(--pad);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.foodscroll__track::-webkit-scrollbar { display: none; }

.food-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: clamp(260px, 30vw, 420px);
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  transition: transform .7s var(--ease);
  cursor: grab;
}
.food-card:active { cursor: grabbing; }
.food-card:hover { transform: translateY(-8px); }
.food-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, .55) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.food-card:hover::after { opacity: 1; }
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.food-card:hover img { transform: scale(1.06); }
.food-card figcaption {
  position: absolute;
  left: 22px; bottom: 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.food-card:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.food-card figcaption span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: .75;
}

/* ─────────────────────────────────────────
   EDITORIAL SPLIT
   ───────────────────────────────────────── */

.editorial {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) var(--pad);
}
.editorial__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial__media {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
}
.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial__copy h2 {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 36px;
}
.editorial__copy h2 em { color: var(--leaf); font-weight: 400; }
.editorial__p {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}
.editorial__p strong {
  color: var(--ink);
  font-weight: 700;
}
.editorial__p em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--leaf);
  letter-spacing: -0.01em;
  font-size: 1.08em;
}
.editorial__list {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.editorial__list li {
  font-size: 16px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
}
.editorial__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--leaf);
}
.editorial__list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .editorial__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────
   DIMS
   ───────────────────────────────────────── */

.dims { padding: clamp(100px, 14vw, 180px) var(--pad); background: var(--cream); }
.dims__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dims__media {
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-soft);
}
.dims__media img { width: 100%; height: auto; display: block; }

.dims__copy h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 40px;
}
.dims__copy h2 em { color: var(--leaf); font-weight: 400; }

.dims__list { display: flex; flex-direction: column; gap: 0; }
.dims__list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.dims__list li:last-child { border-bottom: 1px solid var(--line); }
.dims__num {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.dims__label { color: var(--muted); font-size: 14px; text-align: right; max-width: 18ch; }

@media (max-width: 900px) {
  .dims__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────
   BENEFITS (click-to-expand list)
   ───────────────────────────────────────── */

.benefits {
  background: var(--bg);
  padding: clamp(100px, 14vw, 180px) var(--pad);
}
.benefits__head {
  max-width: var(--container);
  margin: 0 auto 60px;
}
.benefits__title {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 14ch;
  margin-bottom: 20px;
}
.benefits__title em { color: var(--leaf); font-weight: 400; }
.benefits__hint {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-style: italic;
}

.benefits__list {
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.benefit {
  border-top: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 1px solid var(--line); }

.benefit details { padding: 0; }
.benefit summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 36px 4px;
  cursor: pointer;
  transition: padding-left .4s var(--ease);
}
.benefit summary::-webkit-details-marker { display: none; }
.benefit summary:hover { padding-left: 12px; }

.benefit__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--leaf);
  line-height: 1;
}
.benefit__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}
.benefit__plus {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform .45s var(--ease-bounce), background .3s var(--ease);
}
.benefit details[open] .benefit__plus {
  transform: rotate(45deg);
  background: var(--leaf);
}

.benefit__expand {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 0 4px 40px 4px;
  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease) .05s, transform .55s var(--ease) .05s;
}
.benefit details[open] .benefit__expand {
  animation: bombIn .65s var(--ease) forwards;
}
@keyframes bombIn {
  0%   { opacity: 0; transform: translateY(20px) scale(.96); }
  60%  { opacity: 1; transform: translateY(0) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.benefit__media {
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 20px 40px -20px rgba(20,53,36,.25);
}
.benefit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit__copy p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.benefit__copy p:last-child { margin-bottom: 0; }
.benefit__copy strong {
  color: var(--ink);
  font-weight: 700;
}
.benefit__copy em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  font-weight: 400;
  letter-spacing: -0.01em;
}

@media (max-width: 800px) {
  .benefit summary { padding: 28px 4px; gap: 16px; }
  .benefit__expand {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
  .benefit__plus { width: 36px; height: 36px; font-size: 18px; }
}

/* ─────────────────────────────────────────
   RECETAS / CURIOSIDADES (editorial)
   ───────────────────────────────────────── */

.recipes {
  background: var(--cream);
  padding: clamp(120px, 14vw, 180px) var(--pad);
  border-top: 1px solid var(--line);
}
.recipes__head {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}
.recipes__title {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 22px;
}
.recipes__title em { color: var(--leaf); font-weight: 400; }
.recipes__sub {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 480px;
  margin: 0 auto;
}

.recipes__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recipe {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .55s var(--ease), border-color .35s var(--ease), box-shadow .55s var(--ease);
  display: flex;
  flex-direction: column;
}
.recipe:hover {
  transform: translateY(-6px);
  border-color: var(--leaf);
  box-shadow: 0 20px 40px -20px rgba(17, 17, 17, .15);
}
.recipe__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.recipe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.recipe:hover .recipe__media img { transform: scale(1.05); }

.recipe__body {
  padding: 26px 28px 30px;
}
.recipe__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
  margin-bottom: 14px;
}
.recipe h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.recipe p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.recipes__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 50px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .04);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}
.recipes__more em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  letter-spacing: -0.01em;
}
.recipes__more:hover {
  background: rgba(17, 17, 17, .08);
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 800px) {
  .recipes__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   BUY
   ───────────────────────────────────────── */

.buy {
  padding: clamp(100px, 14vw, 180px) var(--pad);
  background: var(--cream);
}
.buy__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.buy__media {
  position: relative;
  border-radius: 36px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
}
.buy__hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.buy__media:hover .buy__hero {
  transform: scale(1.03);
}

.buy__copy h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 36px;
}
.buy__copy h2 em { color: var(--leaf); font-weight: 400; }

.buy__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.buy__price-now {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.buy__price-was {
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
}
.buy__price-tag {
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}

.buy__perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.buy__perks li {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.buy__perks span {
  width: 22px; height: 22px;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .buy__inner { grid-template-columns: 1fr; gap: 40px; }
  .buy__media { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */

.faq { padding: clamp(100px, 14vw, 180px) var(--pad); background: var(--bg); }
.faq__head { max-width: 880px; margin: 0 auto 60px; text-align: center; }
.faq__head h2 {
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.045em;
  font-weight: 700;
  line-height: 1;
}
.faq__head h2 em { color: var(--leaf); font-weight: 400; }

.faq__list { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 30px;
  font-weight: 300;
  color: var(--leaf);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary { color: var(--forest); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */

.foot {
  background: var(--forest-deep);
  color: rgba(255,255,255,.75);
  padding: 0 var(--pad) 30px;
  overflow: hidden;
}
.foot__bigtype {
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
}
.foot__claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--lime);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  opacity: .85;
}
.foot__big {
  display: inline-block;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.foot__big em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  -webkit-text-fill-color: var(--lime);
  background: none;
  letter-spacing: -0.02em;
}
.foot__sub {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 20px;
  color: rgba(255,255,255,.45);
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: -0.01em;
}

.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot__brand p { color: rgba(255,255,255,.5); font-size: 15px; line-height: 1.5; }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.foot__cols h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.foot__cols a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255,255,255,.55);
  transition: color .25s var(--ease);
}
.foot__cols a:hover { color: var(--lime); }

.foot__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; gap: 12px; }
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────── */

.reveal,
.reveal-up,
.reveal-line {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease) var(--d, 0s),
    transform 1.1s var(--ease) var(--d, 0s);
  will-change: transform, opacity;
}
.reveal-up { transform: translateY(60px); }
.reveal-line {
  display: block;
  transform: translateY(80px);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger statement lines automatically */
.statement__title .reveal-line:nth-child(1) { --d: 0s; }
.statement__title .reveal-line:nth-child(2) { --d: .12s; }
.statement__title .reveal-line:nth-child(3) { --d: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-line {
    opacity: 1; transform: none; transition: none;
  }
  .reveal-line > * { transform: none; }
  .marquee__track { animation: none; }
  .hero__media img { animation: none; transform: scale(1); }
  .hero__title .line > span { transform: translateY(0); animation: none; }
  .hero__eyebrow, .hero__sub, .hero__cta { opacity: 1; animation: none; }
}

/* ─────────────────────────────────────────
   CART DRAWER
   ───────────────────────────────────────── */

.cart {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.cart[aria-hidden="false"] { pointer-events: auto; }

.cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .55);
  opacity: 0;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cart[aria-hidden="false"] .cart__backdrop { opacity: 1; }

.cart__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(480px, 100vw);
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  box-shadow: -30px 0 60px -20px rgba(0, 0, 0, .25);
}
.cart[aria-hidden="false"] .cart__panel { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.cart__head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cart__head-count {
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.cart__close {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(10,10,10,.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cart__close:hover { background: rgba(10,10,10,.1); transform: rotate(90deg); }

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}

.cart__empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 40px 0;
}
.cart__empty-icon {
  color: var(--leaf);
  margin-bottom: 8px;
  opacity: .5;
}
.cart__empty-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cart__empty-sub {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.cart__items {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.cart__item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  animation: slideUp .4s var(--ease);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cart__item-img {
  width: 90px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--bg-soft);
}
.cart__item-info { min-width: 0; }
.cart__item-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.cart__item-desc {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.cart__item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.cart__item-qty button {
  width: 30px; height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .2s var(--ease);
}
.cart__item-qty button:hover { background: rgba(10,10,10,.05); }
.cart__item-qty button:disabled { opacity: .4; cursor: not-allowed; }
.cart__item-qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.cart__item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  text-align: right;
}
.cart__item-price {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.cart__item-remove {
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s var(--ease);
}
.cart__item-remove:hover { color: #9a2a2a; }

.cart__foot {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.cart__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.cart__row--muted { color: var(--muted); }
.cart__free { color: var(--leaf); font-weight: 600; }
.cart__row--total {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cart__checkout {
  width: 100%;
  justify-content: center;
}
.cart__perks {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 540px) {
  .cart__head { padding: 18px 20px; }
  .cart__body { padding: 0 20px; }
  .cart__foot { padding: 20px; }
  .cart__item { grid-template-columns: 70px 1fr auto; gap: 14px; }
  .cart__item-img { width: 70px; height: 90px; }
}

/* ─────────────────────────────────────────
   CHECKOUT OVERLAY
   ───────────────────────────────────────── */

.checkout {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: var(--cream);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.checkout[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.checkout__nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(245, 245, 240, .85);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.checkout__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.checkout__logo .nav__logo-mark { color: var(--forest); }
.checkout__logo em { color: var(--leaf); font-style: normal; }

.checkout__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(10,10,10,.05);
  transition: background .25s var(--ease);
}
.checkout__back:hover { background: rgba(10,10,10,.1); }

.checkout__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px var(--pad) 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.checkout__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.checkout__step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.checkout__step-title span {
  width: 26px; height: 26px;
  background: var(--forest);
  color: var(--lime);
  font-size: 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.field:last-child { margin-bottom: 0; }
.field > span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.field > span em {
  font-style: normal;
  opacity: .7;
}
.field input,
.field select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, .12);
}
.field input.has-error {
  border-color: #c33;
  box-shadow: 0 0 0 3px rgba(204, 51, 51, .1);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.field-row .field { margin-bottom: 0; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 540px) {
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
}

.payment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
}
.payment-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.payment-card__name {
  font-weight: 600;
  font-size: 15px;
}
.payment-card__brands {
  display: inline-flex;
  gap: 6px;
}
.payment-card__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}
.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
  flex-shrink: 0;
}
.checkbox a { text-decoration: underline; text-underline-offset: 2px; color: var(--ink); }

.checkout__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.checkout__submit[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.checkout__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  justify-content: center;
  width: 100%;
}

/* ── Order summary ── */
.checkout__summary {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
}
.checkout__summary-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.checkout__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.checkout__items li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
}
.checkout__items img {
  width: 60px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-soft);
  position: relative;
}
.checkout__items-info {
  min-width: 0;
}
.checkout__items-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.checkout__items-qty {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.checkout__items-price {
  font-size: 14px;
  font-weight: 700;
}

.checkout__promo {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.checkout__promo input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  background: var(--bg);
  outline: none;
}
.checkout__promo input:focus { border-color: var(--leaf); }
.checkout__promo button {
  padding: 0 18px;
  border-radius: 10px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background .25s var(--ease);
}
.checkout__promo button:hover { background: var(--forest); }

.checkout__totals {
  margin-bottom: 24px;
}
.checkout__totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink-soft);
}
.checkout__totals dt { font-weight: 400; }
.checkout__totals dd { font-weight: 500; }
.checkout__totals-final {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 16px !important;
  font-size: 18px !important;
  font-weight: 700;
}
.checkout__totals-final dt,
.checkout__totals-final dd { font-weight: 700; letter-spacing: -0.02em; }

.checkout__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .checkout__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px var(--pad) 60px;
  }
  .checkout__summary {
    position: static;
    order: -1;
  }
}

/* ─────────────────────────────────────────
   THANKS MODAL
   ───────────────────────────────────────── */

.thanks {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(10, 10, 10, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.thanks[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.thanks__inner {
  background: var(--cream);
  border-radius: 28px;
  padding: 60px 50px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  transform: scale(.92);
  transition: transform .5s var(--ease-bounce);
}
.thanks[aria-hidden="false"] .thanks__inner { transform: scale(1); }

.thanks__icon {
  color: var(--leaf);
  margin-bottom: 20px;
  display: inline-flex;
}
.thanks__icon svg { animation: thanksDraw .9s var(--ease) .15s both; }
@keyframes thanksDraw {
  from { transform: scale(.5) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

.thanks h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.thanks__sub {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.thanks__sub strong { color: var(--ink); font-weight: 600; }
.thanks__order {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.thanks__order strong {
  color: var(--ink);
  font-weight: 700;
  background: var(--lime);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
}

/* ─────────────────────────────────────────
   Body scroll lock when modal open
   ───────────────────────────────────────── */
body.is-locked {
  overflow: hidden;
}

/* ─────────────────────────────────────────
   COUPON
   ───────────────────────────────────────── */

.checkout__promo-msg {
  font-size: 12px;
  margin: -14px 0 18px;
  min-height: 16px;
  color: var(--leaf);
  line-height: 1.4;
}
.checkout__promo-msg.is-error { color: #c33; }

[data-discount-row] dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.discount-chip {
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.discount-remove {
  font-size: 16px;
  line-height: 1;
  color: var(--muted);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(10,10,10,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.discount-remove:hover { background: #c33; color: #fff; }
[data-checkout-discount] { color: var(--leaf); font-weight: 600; }

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
   ───────────────────────────────────────── */

.wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 8px;
  text-decoration: none;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 36px -8px rgba(37, 211, 102, .7);
}
.wa__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  flex-shrink: 0;
}
.wa__bubble {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0 18px 0 14px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width .5s var(--ease), opacity .35s var(--ease), padding .5s var(--ease);
}
.wa:hover .wa__bubble,
.wa.is-tease .wa__bubble {
  max-width: 200px;
  opacity: 1;
}
.wa.is-tease .wa__bubble { animation: waTease 4s var(--ease); }
@keyframes waTease {
  0%, 100% { max-width: 0; opacity: 0; padding: 0; }
  20%, 70% { max-width: 200px; opacity: 1; padding: 0 18px 0 14px; }
}
/* Hide when any modal open */
body.is-locked .wa { opacity: 0; pointer-events: none; transform: translateY(20px); }

@media (max-width: 540px) {
  .wa { bottom: 16px; right: 16px; }
  .wa__bubble { display: none; }
}

/* ─────────────────────────────────────────
   FOOTER socials + newsletter
   ───────────────────────────────────────── */

.foot__social {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
}
.foot__social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.foot__social a:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.foot__news {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 50px 0;
}
.foot__news-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.foot__news-inner h4 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.foot__news-sub { color: rgba(255,255,255,.55); font-size: 14px; max-width: 380px; }

.news-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}
.news-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus {
  border-color: var(--lime);
  background: rgba(255,255,255,.1);
}
.news-form input.has-error { border-color: #f87171; }
.news-form button {
  padding: 14px 24px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.news-form button:hover { background: #a8c66a; transform: translateY(-1px); }
.news-form__msg {
  flex-basis: 100%;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.news-form__msg.is-error { color: #f87171; }

@media (max-width: 800px) {
  .foot__news-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────────────────────────────────
   REGION POPUP (Aesop-style)
   ───────────────────────────────────────── */

.region {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  background: rgba(31, 77, 54, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.region[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.region__panel {
  background: var(--lime-soft);
  background: linear-gradient(180deg, #e2ecc4 0%, #d6e8a8 100%);
  border-radius: 28px;
  padding: 56px 44px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(.94);
  transition: transform .6s var(--ease-bounce);
  box-shadow: 0 30px 80px -20px rgba(20, 53, 36, .45);
}
.region[aria-hidden="false"] .region__panel { transform: scale(1); }

.region__leaf {
  color: var(--forest);
  display: inline-flex;
  margin-bottom: 22px;
  opacity: .75;
}

.region__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 8px;
}
.region__sub {
  color: var(--forest);
  opacity: .65;
  font-size: 14px;
  margin-bottom: 30px;
}

.region__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.region__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.region__field span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: .7;
  font-weight: 600;
}
.region__field select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(20,53,36,.18);
  background: rgba(255,255,255,.6);
  font-family: inherit;
  font-size: 15px;
  color: var(--forest);
  outline: none;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F4D36' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.region__field select:focus {
  border-color: var(--forest);
  background: rgba(255,255,255,.85);
}

.region__submit {
  margin-top: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.region__submit:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

@media (max-width: 540px) {
  .region__panel { padding: 44px 28px; }
}

/* ─────────────────────────────────────────
   SIDE DRAWER MENU (mobile-first)
   ───────────────────────────────────────── */

.navmenu {
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
}
.navmenu[aria-hidden="false"] { pointer-events: auto; }

.navmenu__close-bg {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .4s var(--ease);
  cursor: pointer;
}
.navmenu[aria-hidden="false"] .navmenu__close-bg { opacity: 1; }

.navmenu__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), transform .35s var(--ease);
  z-index: 5;
}
.navmenu__close:hover {
  background: rgba(255,255,255,.18);
  transform: rotate(90deg);
}

.navmenu__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 420px);
  background: var(--forest);
  padding: 70px 28px 32px;
  display: block;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,.35);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.navmenu[aria-hidden="false"] .navmenu__inner { transform: translateX(0); }

.navmenu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0 0 28px;
}
.navmenu__list li {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.navmenu__list li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.navmenu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: #fff;
  padding: 16px 0;
  transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.navmenu__list a::after {
  content: '→';
  font-size: 15px;
  opacity: .45;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  color: var(--lime);
}
.navmenu__list a:hover {
  color: var(--lime);
  padding-left: 6px;
}
.navmenu__list a:hover::after {
  opacity: 1;
  transform: translateX(2px);
}
.navmenu__list-cta {
  color: var(--lime) !important;
  font-weight: 600 !important;
}
.navmenu__list-cta::after { opacity: 1 !important; color: var(--lime) !important; }

/* Stagger entrance */
.navmenu__list li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: 0s;
}
.navmenu[aria-hidden="false"] .navmenu__list li {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.15s + var(--i, 0) * 0.05s);
}

.navmenu__meta {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.navmenu__claim {
  font-size: 14px;
  color: var(--lime);
  font-style: italic;
  letter-spacing: -0.005em;
}
.navmenu__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.navmenu__contact a { color: rgba(255,255,255,.85); }
.navmenu__contact a:hover { color: var(--lime); }

.navmenu__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.navmenu__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.navmenu__social a:hover { background: var(--lime); color: var(--ink); }

@media (min-width: 900px) {
  .navmenu__list a { font-size: 18px; }
  .navmenu__inner { padding-top: 80px; }
}

/* ─────────────────────────────────────────
   STICKY CTA (mobile)
   ───────────────────────────────────────── */

.sticky-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: rgba(20, 53, 36, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
}
.sticky-buy[aria-hidden="false"] {
  transform: translateY(0);
}
.sticky-buy__price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sticky-buy .btn {
  padding: 12px 22px;
  font-size: 14px;
}
/* hide on desktop */
@media (min-width: 721px) {
  .sticky-buy { display: none; }
}
/* hide while modals open */
body.is-locked .sticky-buy { transform: translateY(110%); }

/* ─────────────────────────────────────────
   COOKIES BANNER (RGPD)
   ───────────────────────────────────────── */

.cookies {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .55s var(--ease) .3s, opacity .55s var(--ease) .3s;
}
.cookies[aria-hidden="false"] {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.cookies__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 920px;
  width: 100%;
  padding: 22px 26px;
  background: rgba(20, 53, 36, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  box-shadow: 0 20px 60px -10px rgba(17, 17, 17, .5);
  color: rgba(255,255,255,.85);
}

.cookies__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.cookies__title .serif { color: var(--lime); font-size: 16px; }

.cookies__text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  max-width: 60ch;
}
.cookies__text a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookies__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cookies__btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.cookies__btn--ghost {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.08);
}
.cookies__btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.cookies__btn--accept {
  background: var(--lime);
  color: var(--ink);
}
.cookies__btn--accept:hover {
  background: #a8c66a;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .cookies { left: 14px; right: 14px; bottom: 14px; }
  .cookies__panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .cookies__actions { justify-content: stretch; }
  .cookies__btn { flex: 1; padding: 12px 14px; font-size: 12px; }
}

/* On mobile, hide WhatsApp + sticky-buy while cookies banner is shown */
@media (max-width: 720px) {
  body.has-cookies .wa { opacity: 0; pointer-events: none; transform: translateY(20px); }
  body.has-cookies .sticky-buy { transform: translateY(110%); }
}

/* ─────────────────────────────────────────
   COOKIES CONFIG MODAL (granular)
   ───────────────────────────────────────── */

.cookies-config {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.cookies-config[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookies-config__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 53, 36, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cookies-config__panel {
  position: relative;
  background: var(--cream);
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  padding: 32px 32px 26px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
  transform: scale(.95);
  transition: transform .45s var(--ease-bounce);
  max-height: 90vh;
  overflow-y: auto;
}
.cookies-config[aria-hidden="false"] .cookies-config__panel { transform: scale(1); }

.cookies-config__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.cookies-config__head h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cookies-config__head h2 .serif {
  color: var(--leaf);
  font-weight: 400;
}
.cookies-config__close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,53,36,.06);
  color: var(--ink);
  flex-shrink: 0;
  transition: background .25s var(--ease), transform .35s var(--ease);
}
.cookies-config__close:hover { background: rgba(20,53,36,.12); transform: rotate(90deg); }

.cookies-config__intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.cookies-config__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.cookies-config__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.cookies-config__row:last-child { border-bottom: 1px solid var(--line); }
.cookies-config__row > div { flex: 1; min-width: 0; }
.cookies-config__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.cookies-config__tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(20,53,36,.06);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.cookies-config__desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.cookies-config__toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}
.cookies-config__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookies-config__toggle span {
  position: absolute;
  inset: 0;
  background: rgba(20,53,36,.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.cookies-config__toggle span::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 999px;
  transition: transform .3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.cookies-config__toggle input:checked + span {
  background: var(--leaf);
}
.cookies-config__toggle input:checked + span::after {
  transform: translateX(16px);
}
.cookies-config__toggle.is-locked span {
  background: var(--leaf);
  cursor: not-allowed;
  opacity: .7;
}
.cookies-config__toggle.is-locked span::after { transform: translateX(16px); }

.cookies-config__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ─────────────────────────────────────────
   A11Y — skip link + focus visible
   ───────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 10px 18px;
  background: var(--forest);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(-200%);
  transition: transform .25s var(--ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* Visible focus ring on every interactive element */
:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-offset: 0;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ─────────────────────────────────────────
   PÁGINAS SATÉLITE (about / contacto / legales)
   ───────────────────────────────────────── */

.page {
  background: var(--bg);
  min-height: calc(100vh - 200px);
}

.page-hero {
  background: var(--forest-deep);
  color: #fff;
  padding: 160px var(--pad) 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(31,77,54,.45), transparent 70%),
    radial-gradient(40% 40% at 80% 80%, rgba(183,215,122,.08), transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  color: var(--lime);
  margin-bottom: 24px;
}
.page-hero__title {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 24px;
}
.page-hero__title em {
  color: var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.page-hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-content {
  padding: clamp(80px, 10vw, 140px) var(--pad);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
  margin: 56px 0 18px;
  line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--leaf);
}
.prose h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 32px 0 12px;
}
.prose p { margin-bottom: 18px; }
.prose ul {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--leaf);
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--leaf);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s var(--ease);
}
.prose a:hover { color: var(--forest); }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 56px 0;
}
.prose__updated {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 40px;
}

/* Contact form */
.contact {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact__aside h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.contact__aside p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
  font-size: 15px;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact__channel:last-child { border-bottom: 1px solid var(--line); }
.contact__channel svg {
  color: var(--leaf);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__channel-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.contact__channel a, .contact__channel span {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  display: block;
}
.contact__channel a:hover { color: var(--leaf); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form .field-row { margin-bottom: 0; }
.contact__form textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  min-height: 140px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact__form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, .12);
}
.contact__form button {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .contact { grid-template-columns: 1fr; gap: 30px; }
}

/* About page */
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-grid:nth-child(even) > div:first-child { order: 2; }
.about-grid__media {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
}
.about-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-grid h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.05;
}
.about-grid h3 em {
  color: var(--leaf);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.about-grid p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-grid__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .about-grid:nth-child(even) > div:first-child { order: 0; }
}

/* ─────────────────────────────────────────
   MOBILE POLISH (≤540px)
   ───────────────────────────────────────── */

@media (max-width: 540px) {
  /* Hero (mobile)  */
  .hero__inner { padding: 28px 24px 50px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); margin-bottom: 18px; }
  .hero__sub { font-size: 14px; margin-bottom: 28px; max-width: 90vw; }
  .hero__rating { margin-bottom: 18px; padding: 6px 14px; font-size: 11px; }
  .hero__rating em { font-size: 12px; }
  .hero__cta { gap: 10px; justify-content: center; }
  .hero__cta .btn { padding: 13px 22px; font-size: 14px; }
  .hero__scroll { display: none; }
  .hero__product img { max-width: 280px; }

  /* Trust strip menos apretado */
  .trust__inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent);
            mask-image: linear-gradient(90deg, #000 90%, transparent);
    padding-right: 24px;
  }
  .trust__item { white-space: nowrap; flex-shrink: 0; }

  /* Statement spacing */
  .statement { padding: 80px 24px 90px; }
  .statement__title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 28px; }
  .statement__copy { font-size: 15px; }

  /* Sticky-zoom captions */
  .zoom__cap { font-size: 18px; padding: 0 24px; }

  /* Bigtype */
  .bigtype { padding: 80px 24px; }
  .bigtype__head { font-size: clamp(40px, 10vw, 64px); margin-bottom: 40px; }
  .bigtype__copy p { font-size: 15px; }

  /* Stats: compact strip on mobile */
  .stats { padding: 50px 24px; }

  /* Benefits */
  .benefits { padding: 80px 24px; }
  .benefits__title { font-size: clamp(40px, 10vw, 64px); }
  .bcard__body { padding: 24px 22px 28px; }
  .bcard h3 { font-size: 24px; }

  /* Quotes */
  .quotes { padding: 80px 24px; }
  .quotes__title { font-size: clamp(36px, 9vw, 56px); }
  .quote { padding: 32px 28px 26px; }
  .quote p { font-size: 18px; }

  /* Foodscroll */
  .foodscroll { padding: 80px 0; }
  .foodscroll__head { padding: 0 24px; margin-bottom: 32px; }
  .foodscroll__head h2 { font-size: clamp(32px, 8vw, 48px); }
  .foodscroll__track { padding: 0 24px; }
  .food-card { width: 78vw; }

  /* Editorial split */
  .editorial { padding: 80px 24px; }
  .editorial__copy h2 { font-size: clamp(40px, 10vw, 64px); margin-bottom: 24px; }
  .editorial__p { font-size: 15px; }

  /* Recipes */
  .recipes { padding: 80px 24px; }
  .recipes__title { font-size: clamp(36px, 9vw, 56px); }

  /* Dimensions */
  .dims { padding: 80px 24px; }
  .dims__copy h2 { font-size: clamp(36px, 9vw, 56px); margin-bottom: 28px; }
  .dims__num { font-size: 24px; }

  /* Buy */
  .buy { padding: 80px 24px; }
  .buy__copy h2 { font-size: clamp(36px, 9vw, 56px); margin-bottom: 24px; }
  .buy__price-now { font-size: 36px; }
  .buy__perks li { font-size: 15px; }

  /* FAQ */
  .faq { padding: 80px 24px; }
  .faq__head { margin-bottom: 36px; }
  .faq__head h2 { font-size: clamp(32px, 8vw, 48px); }
  .faq__item summary { font-size: 16px; gap: 14px; }
  .faq__item p { font-size: 15px; }

  /* Footer */
  .foot { padding: 0 24px 24px; }
  .foot__bigtype { padding: 60px 0 40px; }
  .foot__big { font-size: clamp(72px, 22vw, 140px); }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot__news { padding: 36px 0; }
  .foot__news-inner h4 { font-size: 22px; }

  /* Page-hero (about/contact/legal) */
  .page-hero { padding: 130px 24px 60px; }
  .page-hero__title { font-size: clamp(44px, 12vw, 64px); }
  .page-hero__sub { font-size: 15px; }
  .page-content { padding: 60px 24px; }
  .prose h2 { font-size: clamp(24px, 6vw, 32px); margin-top: 40px; }

  /* Cookies banner narrower on mobile */
  .cookies__panel { padding: 18px 22px; }
  .cookies__title .serif { font-size: 15px; }
  .cookies__text { font-size: 12px; }
  .cookies__btn { font-size: 12px; padding: 10px 14px; }

  /* Sticky CTA bigger touch target */
  .sticky-buy {
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  }
  .sticky-buy .btn { padding: 14px 22px; }
}

/* Tap-target friendly buttons everywhere on mobile */
@media (hover: none) {
  .btn, .nav__cart, .nav__menu, .nav__logo {
    min-height: 44px;
  }
}

/* ─────────────────────────────────────────
   404 ERROR PAGE
   ───────────────────────────────────────── */

.err {
  min-height: calc(100vh - 60px);
  background: var(--forest-deep);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.err::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(31,77,54,.55), transparent 70%),
    radial-gradient(50% 50% at 80% 80%, rgba(183,215,122,.08), transparent 70%);
}
.err__inner { position: relative; max-width: 540px; }
.err__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 30vw, 240px);
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.err__title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.err__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.err__sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.err__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   TOAST (added-to-cart feedback)
   ───────────────────────────────────────── */

.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  z-index: 110;
  transform: translateX(-50%) translateY(-20px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 10px 30px -8px rgba(20,53,36,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .45s var(--ease-bounce), visibility .35s var(--ease);
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast__check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─────────────────────────────────────────
   SOCIAL PROOF (live purchase notifications)
   ───────────────────────────────────────── */

.proof {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 92;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  padding: 12px 16px 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 30px -8px rgba(20,53,36,.15);
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .45s var(--ease), transform .55s var(--ease-bounce), visibility .45s var(--ease);
  visibility: hidden;
  pointer-events: none;
}
.proof.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.proof__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.proof__copy {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.35;
}
.proof__copy strong { color: var(--ink); font-weight: 600; }
.proof__time {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
@media (max-width: 540px) {
  .proof {
    left: 12px;
    right: 12px;
    bottom: 96px; /* sit above sticky CTA */
    max-width: none;
  }
}
body.is-locked .proof,
body.has-cookies .proof { opacity: 0; pointer-events: none; visibility: hidden; }

/* ─────────────────────────────────────────
   CONTACT form polish
   ───────────────────────────────────────── */

.field__counter {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.field__counter.is-near { color: #b08160; }
.field__counter.is-over { color: #c33; }

.contact__form button[disabled],
.checkout__submit[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* ─────────────────────────────────────────
   POST share bar
   ───────────────────────────────────────── */

.share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 50px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.share__label { font-weight: 500; margin-right: 4px; }
.share__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(20,53,36,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
}
.share__btn:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}
.share__btn--copy.is-copied {
  background: var(--lime);
  color: var(--forest);
}

/* ─────────────────────────────────────────
   THANKS / order success page
   ───────────────────────────────────────── */

.thanks-page {
  min-height: calc(100vh - 60px);
  background: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px var(--pad) 80px;
}
.thanks-page__inner { max-width: 540px; }
.thanks-page__icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: thanksDraw .8s var(--ease-bounce);
}
.thanks-page .eyebrow {
  margin-bottom: 14px;
}
.thanks-page__title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}
.thanks-page__title em { color: var(--leaf); font-weight: 400; }
.thanks-page__sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.thanks-page__sub strong { color: var(--ink); font-weight: 600; }
.thanks-page__order {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.thanks-page__order strong {
  background: var(--lime);
  color: var(--forest);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.thanks-page__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.thanks-page__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  font-size: 14px;
  color: var(--ink-soft);
}
.thanks-page__perks li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.thanks-page__perks a { color: var(--leaf); text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────
   ANNOUNCE BAR (sits above the fixed nav)
   ───────────────────────────────────────── */

:root { --announce-h: 40px; }

body { padding-top: var(--announce-h); }
body.no-announce { padding-top: 0; }

.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 105;
  background: var(--forest-deep);
  color: rgba(255,255,255,.86);
  height: var(--announce-h);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

.announce__inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12.5px;
  letter-spacing: 0.005em;
  position: relative;
}
.announce__icon {
  color: var(--lime);
  display: inline-flex;
  flex-shrink: 0;
}
.announce__track {
  position: relative;
  display: grid;
  text-align: center;
  flex: 0 1 auto;
}
.announce__msg {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  visibility: hidden;
  white-space: nowrap;
}
.announce__msg em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
  letter-spacing: -0.005em;
  font-size: 1.06em;
}
.announce__msg.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.announce__close {
  position: absolute;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color .2s var(--ease), background .2s var(--ease);
  flex-shrink: 0;
}
.announce__close:hover { color: #fff; background: rgba(255,255,255,.08); }

/* Push the fixed nav below the announce bar.
   The drawer menu sits on top of everything, full viewport. */
.nav { top: var(--announce-h); }
body.no-announce .nav { top: 0; }

@media (max-width: 540px) {
  :root { --announce-h: 38px; }
  .announce__inner { font-size: 11.5px; gap: 10px; padding: 0 14px; }
  .announce__icon svg { width: 12px; height: 12px; }
}

/* ─────────────────────────────────────────
   BUNDLE selector
   ───────────────────────────────────────── */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.bundle {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle__opt {
  position: relative;
  cursor: pointer;
  display: block;
}
.bundle__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bundle__inner {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  background: #fff;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.bundle__opt:hover .bundle__inner {
  border-color: var(--leaf);
  transform: translateY(-1px);
}
.bundle__opt input:checked + .bundle__inner {
  border-color: var(--forest);
  background: linear-gradient(180deg, #fff, var(--bg));
  box-shadow: 0 0 0 3px rgba(31,77,54,.08);
}
.bundle__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}
.bundle__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bundle__price {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.bundle__was {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 13px;
  margin-left: 6px;
}
.bundle__desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.bundle__desc strong {
  color: var(--leaf);
  font-weight: 700;
}
.bundle__badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--forest);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.bundle__badge--alt {
  background: var(--lime);
  color: var(--forest);
}

/* ─────────────────────────────────────────
   CART drawer item stagger
   ───────────────────────────────────────── */

.cart__item {
  animation-delay: calc(var(--idx, 0) * 60ms);
}

/* ─────────────────────────────────────────
   EXIT-INTENT MODAL
   ───────────────────────────────────────── */

.exit {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.exit[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.exit__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,53,36,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.exit__panel {
  position: relative;
  background: var(--cream);
  border-radius: 28px;
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.35);
  transform: scale(.94);
  transition: transform .5s var(--ease-bounce);
}
.exit[aria-hidden="false"] .exit__panel { transform: scale(1); }

.exit__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.exit__close:hover { transform: rotate(90deg); background: #fff; }

.exit__media {
  background: var(--bg-soft);
  overflow: hidden;
}
.exit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exit__copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exit__title {
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.05;
  margin: 14px 0 12px;
}
.exit__title em { color: var(--leaf); font-weight: 400; }
.exit__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.exit__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit__form input {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .25s var(--ease);
}
.exit__form input:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(31,77,54,.1); }
.exit__form input.has-error { border-color: #c33; }
.exit__form button { justify-content: center; }
.exit__msg {
  font-size: 12px;
  color: var(--leaf);
  min-height: 16px;
}
.exit__msg.is-error { color: #c33; }

.exit__decline {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  cursor: pointer;
  align-self: flex-start;
  transition: color .2s var(--ease);
}
.exit__decline:hover { color: var(--ink); }

@media (max-width: 720px) {
  .exit__panel { grid-template-columns: 1fr; }
  .exit__media { aspect-ratio: 16/9; }
  .exit__copy { padding: 32px 28px; }
}

/* ─────────────────────────────────────────
   TABLET breakpoint (768-1024)
   ───────────────────────────────────────── */

@media (min-width: 721px) and (max-width: 1024px) {
  .hero__title { font-size: clamp(60px, 9vw, 100px); }
  .hero__sub { font-size: 16px; }
  .statement__title { font-size: clamp(48px, 8vw, 80px); }
  .bigtype__head, .stats__head, .benefits__title, .quotes__title,
  .recipes__title, .compare__head h2 {
    font-size: clamp(48px, 8vw, 80px);
  }
  .zoom__cap { font-size: clamp(20px, 2.6vw, 28px); padding: 0 32px; }
  .editorial__inner, .dims__inner, .buy__inner, .bigtype__grid {
    gap: 50px;
  }
  .foodscroll__head h2 { font-size: clamp(40px, 7vw, 64px); }
  .food-card { width: clamp(280px, 38vw, 380px); }
  .recipes__grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .quotes__row, .reviews-block__grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   BLOG (recetas + reviews)
   ───────────────────────────────────────── */

.blog-hero {
  background: var(--forest-deep);
  color: #fff;
  padding: 140px var(--pad) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(31,77,54,.5), transparent 70%),
    radial-gradient(40% 40% at 85% 75%, rgba(183,215,122,.08), transparent 70%);
}
.blog-hero__inner { position: relative; max-width: 800px; margin: 0 auto; }
.blog-hero__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 18px;
}
.blog-hero__title em { color: var(--lime); font-family: var(--serif); font-style: italic; font-weight: 400; }
.blog-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Breadcrumb */
.crumbs {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--pad);
  font-size: 12px;
  color: var(--muted);
}
.crumbs__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--leaf); transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--forest); }
.crumbs__sep { color: var(--line); }
.crumbs__current { color: var(--ink); }

/* Blog list grid */
.blog-list {
  background: var(--bg);
  padding: 80px var(--pad) 100px;
}
.blog-list__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.blog-list__head {
  margin-bottom: 50px;
}
.blog-list__head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.blog-list__head h2 em { color: var(--leaf); font-family: var(--serif); font-style: italic; font-weight: 400; }
.blog-list__head p { color: var(--muted); font-size: 15px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}
.blog-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease), border-color .35s var(--ease), box-shadow .55s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--leaf);
  box-shadow: 0 20px 40px -20px rgba(20,53,36,.18);
}
.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.blog-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
  width: fit-content;
}
.blog-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.25;
}
.blog-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog post article */
.post {
  background: var(--bg);
  padding: 60px var(--pad) 100px;
}
.post__inner {
  max-width: 720px;
  margin: 0 auto;
}
.post__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.post__meta-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20,53,36,.06);
  color: var(--leaf);
}
.post__title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 24px;
}
.post__title em { color: var(--leaf); font-family: var(--serif); font-style: italic; font-weight: 400; }

.post__hero {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-soft);
  margin-bottom: 50px;
}
.post__hero img { width: 100%; height: 100%; object-fit: cover; }

.post__content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.post__content h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.post__content h2 em { color: var(--leaf); font-family: var(--serif); font-style: italic; font-weight: 400; }
.post__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 10px;
  color: var(--ink);
}
.post__content p { margin-bottom: 18px; }
.post__content strong { color: var(--ink); font-weight: 700; }
.post__content em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.post__content ul, .post__content ol {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.post__content ul li, .post__content ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  counter-increment: ol;
}
.post__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--leaf);
}
.post__content ol li::before {
  content: counter(ol) '.';
  position: absolute;
  left: 0; top: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}

/* CTA inside post */
.post__cta {
  margin: 56px 0 0;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: #fff;
  text-align: center;
}
.post__cta h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--lime);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.post__cta p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* Related posts */
.related {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 0 var(--pad);
}
.related h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Reviews block (in blog page) */
.reviews-block {
  background: var(--cream);
  padding: 100px var(--pad);
  border-top: 1px solid var(--line);
}
.reviews-block__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.reviews-block__head {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-block__head h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.reviews-block__head h2 em { color: var(--leaf); font-family: var(--serif); font-style: italic; font-weight: 400; }
.reviews-block__head p { color: var(--muted); font-size: 14px; }

.reviews-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
}
@media (max-width: 800px) { .reviews-block__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .reviews-block__grid { grid-template-columns: 1fr; } }
