/* WellFoods ? motion landing
   Brand: lime orbit logo ? slate Foods ? scroll cinema like CHL */

:root {
  --lime: #8ec63f;
  --lime-bright: #a8d93a;
  --lime-deep: #6ba82e;
  --forest: #3d6b24;
  --slate: #5a6572;
  --ink: #1c2420;
  /* Soft sage plate for wave sections — light theme family, not night panels */
  --ink-plate: #e8f0e0;
  --paper: #f3f7ef;
  --mist: #eaf3e4;
  --honey: #f0b429;
  --white: #ffffff;
  --nav-w: 248px;
  --nav-inset: 0.9rem;
  --nav-offset: calc(var(--nav-w) + var(--nav-inset) + 0.75rem);
  /* WellFoods rhythm tokens (Bootstrap-inspired, not --bs-*) */
  --wf-space-1: 0.35rem;
  --wf-space-2: 0.65rem;
  --wf-space-3: 1rem;
  --wf-space-4: 1.5rem;
  --wf-space-5: 2.5rem;
  --wf-section-y: clamp(3rem, 7vw, 5.5rem);
  --wf-section-x: clamp(1.5rem, 4vw, 4rem);
  --wf-type-hero: clamp(2.4rem, 6vw, 4.6rem);
  --wf-type-h2: clamp(2.2rem, 5.5vw, 4.5rem);
  --wf-type-body: clamp(0.95rem, 1.1vw, 1.05rem);
  /* Shared wave masks for light plate sections (#about, #world).
     Overlap only the wave height so paper/mist neighbors show through. */
  --wave-h: clamp(64px, 8vw, 112px);
  --wave-mask-top: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 112' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 68 360 2 540 38C720 74 900 10 1080 38C1260 66 1380 14 1440 28V112H0Z'/%3E%3C/svg%3E");
  --wave-mask-bottom: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 112' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1440V28C1380 14 1260 66 1080 38C900 10 720 74 540 38C360 2 180 68 0 28V0Z'/%3E%3C/svg%3E");
  --about-wave-h: var(--wave-h);
  --about-wave-mask: var(--wave-mask-bottom);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

@property --ih-canvas {
  syntax: "<color>";
  inherits: true;
  initial-value: #ebe4d4;
}

@property --ih-glow {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(196, 168, 110, 0.38);
}

@property --ih-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #8a7048;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.55s var(--ease-out);
}

body.is-tint-catalog {
  background: #eaf3e4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Drawer open: lock page scroll (offcanvas-style, ≤1100 only via .nav-open) */
@media (max-width: 1100px) {
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ??? Loader ??? */
/* Premium brand splash — logo mark reveal (MOTION ~6) */
.loader {
  --loader-mark: clamp(168px, 34vmin, 280px);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 58% 46% at 50% 42%, rgba(168, 217, 58, 0.34), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(107, 168, 46, 0.12), transparent 55%),
    var(--paper);
  color: var(--ink);
  animation: loaderFallbackOut 0.55s var(--ease-out) 3.2s forwards;
}

.loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.35rem, 3.2vmin, 2rem);
  text-align: center;
  animation: loaderIn 0.95s var(--ease-out) both;
}

.loader__stage {
  position: relative;
  width: var(--loader-mark);
  height: var(--loader-mark);
  display: grid;
  place-items: center;
}

.loader__glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 217, 58, 0.42) 0%, rgba(142, 198, 63, 0.16) 42%, transparent 70%);
  filter: blur(8px);
  animation: loaderGlow 2.4s ease-in-out infinite;
  pointer-events: none;
}

.loader__orbit-ring {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(168, 217, 58, 0.55);
  border-right-color: rgba(107, 168, 46, 0.18);
  animation: loaderOrbit 7.5s linear infinite;
  pointer-events: none;
}

.loader__orbit-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: rgba(142, 198, 63, 0.35);
  border-left-color: rgba(168, 217, 58, 0.12);
  animation: loaderOrbit 11s linear infinite reverse;
}

.loader__mark-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  animation: loaderMarkIn 1.05s var(--ease-out) 0.08s both;
  will-change: transform, opacity;
}

.loader__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(61, 107, 36, 0.18));
}

.loader__shimmer {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.08) 56%,
    transparent 64%
  );
  transform: translateX(-120%) rotate(8deg);
  animation: loaderShimmer 2.2s var(--ease-out) 0.55s both;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.loader__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: min(11rem, 42vw);
  animation: loaderMetaIn 0.8s var(--ease-out) 0.35s both;
}

.loader__track {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(90, 101, 114, 0.16);
  overflow: hidden;
}

.loader__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s linear;
  will-change: transform;
}

.loader__pct {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--slate);
  opacity: 0.72;
}

@keyframes loaderIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderMarkIn {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderMetaIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes loaderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderShimmer {
  from {
    transform: translateX(-120%) rotate(8deg);
  }
  to {
    transform: translateX(120%) rotate(8deg);
  }
}

body.is-ready .loader {
  pointer-events: none;
  animation: loaderOut 0.7s var(--ease-out) forwards;
}

body.is-ready .loader__mark-wrap {
  animation: loaderMarkOut 0.7s var(--ease-out) forwards;
}

body.is-ready .loader__meta {
  animation: loaderMetaOut 0.45s var(--ease-out) forwards;
}

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes loaderMarkOut {
  to {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes loaderMetaOut {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes loaderFallbackOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .loader {
    --loader-mark: clamp(148px, 46vw, 200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__inner,
  .loader__mark-wrap,
  .loader__meta,
  .loader__glow,
  .loader__orbit-ring,
  .loader__orbit-ring::after,
  .loader__shimmer {
    animation: none !important;
  }

  /* Never leave the splash stuck when motion is reduced */
  .loader {
    animation: loaderFallbackOut 0.35s linear 2.8s forwards !important;
  }

  .loader__inner,
  .loader__mark-wrap,
  .loader__meta {
    opacity: 1;
    transform: none;
  }

  .loader__glow {
    opacity: 0.7;
  }

  .loader__shimmer {
    display: none;
  }

  body.is-ready .loader {
    animation: loaderOut 0.25s linear forwards !important;
  }
}

/* Side nav — CHL soft white panel, WellFoods brand tokens */
.side-nav {
  position: fixed;
  left: var(--nav-inset);
  top: var(--nav-inset);
  bottom: var(--nav-inset);
  width: var(--nav-w);
  z-index: 100;
  padding: 1.65rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 2.15rem;
  box-shadow: 10px 0 36px rgba(28, 36, 32, 0.08);
  transform: translateX(calc(-100% - var(--nav-inset) - 1rem));
  transition: transform 0.7s var(--ease-out);
}

/* Desktop only: slide nav in after loader. Mobile uses .nav-open */
@media (min-width: 1101px) {
  body.is-ready .side-nav {
    transform: translateX(0);
  }
}

.side-nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.15rem 0.35rem 0.35rem;
  flex-shrink: 0;
}

.side-nav__logo img {
  width: min(168px, 86%);
  height: auto;
  max-height: none;
}

.side-nav__body {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  justify-content: center;
  padding: 0 0.15rem;
}

.side-nav__catalog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.78rem 0.85rem 0.78rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(142, 198, 63, 0.14);
  color: var(--forest);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.side-nav__catalog:hover,
.side-nav__catalog.is-active {
  background: rgba(142, 198, 63, 0.24);
  color: var(--ink);
}

.side-nav__catalog-go {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(61, 107, 36, 0.12);
  position: relative;
}

.side-nav__catalog-go::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--forest);
  border-top: 2px solid var(--forest);
  transform: translate(-60%, -50%) rotate(45deg);
}

.side-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 0.15rem 0.35rem 0.35rem;
}

.side-nav__list a {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest);
  transition: color 0.25s var(--ease-out);
  display: inline-block;
}

.side-nav__list a:hover,
.side-nav__list a.is-active {
  color: var(--ink);
}

.side-nav__list a.is-active {
  font-weight: 800;
}

.side-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-shrink: 0;
}

.side-nav__chips {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.side-nav__chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.75rem 0.42rem 0.42rem;
  border-radius: 999px;
  background: rgba(142, 198, 63, 0.12);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.side-nav__chip:hover {
  background: rgba(142, 198, 63, 0.22);
  color: var(--ink);
}

.side-nav__chip img {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}

.side-nav__meta {
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--slate);
  opacity: 0.7;
}

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 0.85rem 1.1rem;
  background: rgba(243, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 107, 36, 0.08);
  align-items: center;
  justify-content: space-between;
}

.mobile-bar img {
  height: 28px;
}

.burger {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Main — full-bleed section backgrounds scroll behind floating nav */
.page {
  margin-left: 0;
}

.section {
  position: relative;
  min-height: 100dvh;
  padding: var(--wf-section-y) var(--wf-section-x) var(--wf-section-y)
    calc(var(--nav-offset) + var(--wf-section-x));
  overflow: hidden;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--wf-type-h2);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 14ch;
}

.section__lead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 36ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease-out), background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--lime-bright);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(28, 36, 32, 0.18);
  margin-left: 0.65rem;
}

.btn--ghost:hover {
  background: rgba(28, 36, 32, 0.05);
}

/* ??? Hero ??? */
.hero {
  padding: 0;
  display: grid;
  background:
    radial-gradient(ellipse 85% 65% at 72% 38%, #dff0c0 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 18% 78%, #d4eaa0 0%, transparent 52%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(243, 247, 239, 0.92), transparent 70%),
    var(--paper);
  position: relative;
  z-index: 0;
}

.hero__slider {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 4rem);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: inherit;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  max-width: 11ch;
}

.hero__title em {
  font-style: normal;
  color: var(--lime-deep);
}

.hero__text {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--slate);
  max-width: 34ch;
}

.hero__visual {
  position: relative;
  height: min(68vh, 560px);
  display: grid;
  place-items: center;
}

.hero__bloom {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 217, 58, 0.55), transparent 68%);
  filter: blur(8px);
}

.hero__orbit {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(107, 168, 46, 0.35);
}

.hero__orbit--2 {
  width: 68%;
  border-style: solid;
  border-color: rgba(142, 198, 63, 0.25);
}

.hero__product {
  position: relative;
  z-index: 2;
  width: min(72%, 380px);
  border-radius: 50% 50% 46% 54% / 42% 48% 52% 58%;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(61, 107, 36, 0.12);
  transform-origin: center;
}

.hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 6;
  pointer-events: auto;
}

.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 36, 32, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero__dot.is-active {
  background: var(--lime-deep);
  transform: scale(1.25);
}

.hero__scroll {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.55;
}

/* ??? Light wave sections (#about, #world) ???
   Mask lives on ::before (sage plate only). Text/links stay unmasked so
   GSAP transforms do not freeze a masked compositor layer while scrolling. */
.about,
.world {
  background: transparent;
  color: var(--ink);
  margin-top: calc(-1 * var(--wave-h));
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--wave-h));
  padding-bottom: calc(clamp(3rem, 6vw, 5rem) + var(--wave-h));
  overflow: visible;
  z-index: 1;
  isolation: isolate;
}

.about::before,
.world::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% 35%, rgba(168, 217, 58, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 72%, rgba(107, 168, 46, 0.1), transparent 55%),
    var(--ink-plate);
  -webkit-mask-image: var(--wave-mask-top), linear-gradient(#fff 0 0), var(--wave-mask-bottom);
  -webkit-mask-size: 100% var(--wave-h), 100% calc(100% - 2 * var(--wave-h) + 2px), 100% var(--wave-h);
  -webkit-mask-position: top, center, bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-over;
  mask-image: var(--wave-mask-top), linear-gradient(#fff 0 0), var(--wave-mask-bottom);
  mask-size: 100% var(--wave-h), 100% calc(100% - 2 * var(--wave-h) + 2px), 100% var(--wave-h);
  mask-position: top, center, bottom;
  mask-repeat: no-repeat;
  mask-composite: add;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about .section__eyebrow {
  color: var(--lime-deep);
}

.about .section__lead {
  color: var(--slate);
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
  align-items: start;
}

.about__stat {
  min-width: 0;
}

.about__stat-value {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--lime-bright), var(--lime-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__stat-value--text {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
}

.about__stat-label {
  margin-top: 0.45rem;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  line-height: 1.35;
  color: var(--slate);
  max-width: 18ch;
}

.about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about__links a {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 32, 0.12);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease-out);
}

.about__links a:hover {
  background: rgba(168, 217, 58, 0.15);
  border-color: var(--lime);
  transform: translateY(-2px);
}

/* ??? Catalog ??? */
.catalog {
  background:
    radial-gradient(ellipse 70% 40% at 80% 10%, rgba(168, 217, 58, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 35% at 10% 90%, rgba(232, 240, 224, 0.9), transparent 50%),
    var(--paper);
  /* Sit under about's bottom wave so paper shows through the cut */
  margin-top: calc(-1 * var(--wave-h));
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--wave-h));
  position: relative;
  z-index: 0;
}

.catalog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.catalog__carousel {
  position: relative;
}

.catalog__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.catalog__hint {
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 600;
}

.catalog__buttons {
  display: flex;
  gap: 0.5rem;
}

.catalog__control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(61, 107, 36, 0.18);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 0.2s var(--ease-out), background-color 0.2s, border-color 0.2s;
}

.catalog__control:hover {
  background: var(--lime-bright);
  border-color: var(--lime-bright);
  transform: translateY(-2px);
}

.catalog__control:active {
  transform: translateY(0) scale(0.96);
}

.catalog__control:focus-visible,
.catalog__viewport:focus-visible {
  outline: 3px solid rgba(107, 168, 46, 0.55);
  outline-offset: 3px;
}

.catalog__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.catalog__viewport.is-dragging {
  cursor: grabbing;
}

.catalog__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  padding-bottom: 0.25rem;
}

.catalog__card {
  flex: 0 0 min(78vw, 320px);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(61, 107, 36, 0.08);
}

.catalog__media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.catalog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.catalog__card:hover .catalog__media img {
  transform: scale(1.06);
}

.catalog__body {
  padding: 1.35rem 1.4rem 1.6rem;
}

.catalog__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.catalog__name {
  margin-top: 0.4rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.catalog__desc {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.45;
}

/* ??? Production ??? */
.production {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(212, 236, 176, 0.55), transparent 55%),
    linear-gradient(135deg, #f2f8ea, #e4f0d6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 0;
}

.production__visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 420px;
}

.production__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.production__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(243, 247, 239, 0.92);
  color: var(--ink);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(28, 36, 32, 0.1);
  max-width: 220px;
}

.production__badge strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--lime-deep);
}

.production__list {
  margin-top: 1.75rem;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.production__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--slate);
}

.production__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(142, 198, 63, 0.25);
}

/* ??? Production page (CHL-style tabs) ??? */
.prod-page__intro {
  padding-bottom: 0;
  background: var(--paper);
}

.prod-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 12ch;
}

.prod-page__lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 42ch;
}

.prod-tabs {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem 0.35rem;
  padding: 0.45rem 0.55rem;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: 0 8px 28px rgba(28, 36, 32, 0.07);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.prod-tabs__btn {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.prod-tabs__btn:hover {
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.08);
}

.prod-tabs__btn:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 2px;
}

.prod-tabs__btn.is-active {
  color: var(--lime-deep);
}

.prod-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-deep);
}

.prod-panels {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 4rem) 0;
  background: var(--paper);
}

.prod-panel {
  opacity: 1;
  transition: opacity 0.2s var(--ease-out);
}

.prod-panel[hidden] {
  display: none !important;
}

.prod-panel.is-fading-out {
  opacity: 0;
}

.prod-panel.is-fading-in {
  opacity: 0;
}

.prod-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.prod-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 22ch;
}

.prod-panel__text {
  margin-top: 1rem;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 38ch;
}

.prod-panel__list {
  margin-top: 1.35rem;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.prod-panel__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.prod-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
}

.prod-panel__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prod-panel__visual {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(28, 36, 32, 0.08);
}

.prod-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-panel__extra {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(28, 36, 32, 0.08);
}

.prod-panel__extra-title {
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.prod-flow__list {
  margin-top: 2rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.prod-flow__step {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(142, 198, 63, 0.55);
}

.prod-flow__mark {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lime-deep);
}

.prod-flow__step h3,
.prod-flow__step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.prod-flow__step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--slate);
}

.prod-proof {
  margin-top: 1.75rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.prod-proof li {
  display: grid;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(142, 198, 63, 0.45);
}

.prod-proof strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prod-proof span {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--slate);
}

.prod-trust {
  margin-top: 1.75rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.prod-trust__item {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1.1rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(28, 36, 32, 0.05);
}

.prod-trust__mark {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lime-deep);
}

.prod-trust__item strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prod-trust__item span {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--slate);
}

.prod-cta {
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(212, 236, 176, 0.5), transparent 55%),
    linear-gradient(160deg, #eaf3e4, #f3f7ef);
}

@media (prefers-reduced-motion: reduce) {
  .prod-panel {
    transition: none;
  }
}

/* ??? World ???
   Wave sage plate: shared ::before with .about (see above). */
.world .section__eyebrow {
  color: var(--lime-deep);
}

.world .section__lead {
  color: var(--slate);
  max-width: 42ch;
}

.world__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.world__item {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(28, 36, 32, 0.06);
  box-shadow: 0 10px 28px rgba(28, 36, 32, 0.06);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.world__item:hover {
  background: rgba(168, 217, 58, 0.1);
  box-shadow: 0 16px 36px rgba(61, 107, 36, 0.1);
  transform: translateY(-6px);
}

.world__item h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.world__item p {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate);
}

.world__item span {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime-deep);
}

/* ??? Awards ??? */
.awards {
  background:
    radial-gradient(ellipse 60% 35% at 50% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    var(--mist);
  /* Sit under world's bottom wave so mist shows through the cut */
  margin-top: calc(-1 * var(--wave-h));
  padding-top: calc(clamp(3rem, 6vw, 5rem) + var(--wave-h));
  position: relative;
  z-index: 0;
}

.awards__row {
  margin-top: 2.5rem;
  /* Reserve space for GSAP drift (+10px on even cards) so CTA never collides */
  padding-bottom: 0.85rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.award {
  min-width: 0;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(61, 107, 36, 0.08);
}

.award__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-deep));
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--ink);
}

.award strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  letter-spacing: -0.02em;
}

.award span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
  color: var(--slate);
}

.awards .btn {
  margin-top: 2.5rem;
}

/* ??? News ??? */
.news {
  background:
    radial-gradient(ellipse 55% 40% at 15% 20%, rgba(168, 217, 58, 0.1), transparent 50%),
    var(--paper);
}

.news__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.news__card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(61, 107, 36, 0.07);
  display: flex;
  flex-direction: column;
}

.news__card--featured .news__media {
  height: 280px;
}

.news__media {
  height: 160px;
  overflow: hidden;
}

.news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.news__title {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.news__card--featured .news__title {
  font-size: 1.45rem;
}

/* ??? Contacts / FAQ ??? */
.contact {
  background:
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(168, 217, 58, 0.16), transparent 55%),
    linear-gradient(180deg, var(--paper), #e5f1d4);
  min-height: auto;
  padding-bottom: 5rem;
}

.contact__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact__block h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.contact__block p,
.contact__block a {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.55;
}

.contact__block a:hover {
  color: var(--forest);
}

.faq {
  margin-top: 1rem;
}

.faq details {
  border-bottom: 1px solid rgba(28, 36, 32, 0.1);
  padding: 1rem 0;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lime-deep);
}

.faq details[open] summary::after {
  content: "?";
}

.faq p {
  margin-top: 0.65rem;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ??? Footer ??? */
.footer {
  background:
    radial-gradient(ellipse 55% 40% at 12% 0%, rgba(168, 217, 58, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 100%, rgba(107, 168, 46, 0.08), transparent 50%),
    var(--mist);
  color: var(--slate);
  margin-left: 0;
  padding: 4rem clamp(1.5rem, 4vw, 4rem) 2rem;
  padding-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
}

.footer__brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28ch;
}

.footer h4 {
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer a:hover {
  color: var(--lime-deep);
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.coop-link {
  color: var(--lime-deep);
  font-weight: 700;
}

/* ??? Reveal helpers ??? */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-x {
  opacity: 0;
  transform: translateX(-40px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.86);
}

/* ??? Responsive breakpoints ???
   Desktop ?1101: fixed left nav (CHL)
   Tablet ?1100: hamburger + drawer
   Mobile ?720: stacked hero, tighter type
   Small ?480: single-column density
*/

@media (max-width: 1100px) {
  :root {
    --nav-w: 0px;
    --nav-inset: 0.75rem;
    --nav-offset: 0px;
    --wf-section-y: clamp(2.5rem, 6vw, 4rem);
    --wf-section-x: clamp(1.1rem, 4vw, 2rem);
    --wf-type-h2: clamp(1.85rem, 4.5vw, 2.6rem);
  }

  .side-nav {
    transform: translateX(calc(-100% - var(--nav-inset) - 1.5rem)) !important;
    left: var(--nav-inset);
    top: var(--nav-inset);
    bottom: var(--nav-inset);
    width: min(300px, calc(88vw - var(--nav-inset)));
    background: #fff;
    border-radius: 2rem;
    box-shadow: 18px 0 42px rgba(28, 36, 32, 0.14);
  }

  body.nav-open .side-nav {
    transform: translateX(0) !important;
  }

  .mobile-bar {
    display: flex;
  }

  .page,
  .footer {
    margin-left: 0;
  }

  .section {
    padding-top: 5.5rem;
    padding-left: clamp(1.1rem, 4vw, 2rem);
    padding-right: clamp(1.1rem, 4vw, 2rem);
  }

  .hero {
    padding-top: 0;
  }


  .hero__slider {
    padding: 5.5rem clamp(1.1rem, 4vw, 2rem) 3rem;
    min-height: 100dvh;
  }

  .hero__slide {
    position: relative;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    inset: auto;
  }

  .hero__slide:not(.is-active) {
    display: none;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.25rem);
    max-width: 14ch;
  }

  .hero__text {
    max-width: 40ch;
  }

  .hero__visual {
    height: min(42vh, 340px);
    order: -1;
  }

  .hero__product {
    width: min(58%, 280px);
  }

  .hero__dots {
    left: clamp(1.1rem, 4vw, 2rem);
    bottom: 1.25rem;
  }

  .hero__scroll {
    display: none;
  }

  .about,
  .production,
  .world__grid,
  .news__grid,
  .contact__grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .prod-flow__list {
    grid-template-columns: 1fr 1fr;
  }

  .prod-proof,
  .prod-trust {
    grid-template-columns: 1fr 1fr;
  }

  .prod-panels {
    padding-left: clamp(1.1rem, 4vw, 2rem);
    padding-right: clamp(1.1rem, 4vw, 2rem);
  }

  .about {
    gap: 2rem;
    min-height: auto;
  }

  .about__stats {
    gap: 1rem 1.1rem;
  }

  .about__stat-value {
    font-size: clamp(2.5rem, 12vw, 3.75rem);
  }

  .about__stat-value--text {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .about__stat-label {
    max-width: 20ch;
  }

  .catalog__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .world__grid {
    grid-template-columns: 1fr 1fr;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .news__card--featured .news__media {
    height: 200px;
  }

  .awards__row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .award {
    grid-column: span 2;
  }

  /* Bottom row: center the last two cards */
  .award:nth-child(4) {
    grid-column: 2 / 4;
  }

  .award:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (max-width: 720px) {
  :root {
    --wf-section-y: clamp(2rem, 8vw, 3.25rem);
    --wf-section-x: clamp(1rem, 4vw, 1.35rem);
    --wf-type-hero: clamp(1.85rem, 9vw, 2.5rem);
    --wf-type-h2: clamp(1.65rem, 7vw, 2.2rem);
    --wf-type-body: 0.98rem;
  }

  .hero__kicker {
    font-size: 0.7rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    max-width: 12ch;
    line-height: 1.05;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn--ghost {
    margin-left: 0;
    margin-top: 0.65rem;
  }

  .hero__copy .btn:first-of-type {
    margin-top: 1.5rem;
  }

  .about__stats {
    width: 100%;
    max-width: 28rem;
  }

  .world__grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    max-width: 16ch;
  }

  .catalog__card {
    flex: 0 0 min(85vw, 280px);
  }

  .catalog__controls {
    margin-bottom: 0.85rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .production__visual {
    min-height: 280px;
  }

  .prod-flow__list {
    grid-template-columns: 1fr;
  }

  .prod-panel__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .prod-panel__visual {
    order: -1;
    aspect-ratio: 16 / 10;
    border-radius: 1.15rem;
  }

  .prod-panel__title {
    max-width: 18ch;
  }

  .prod-proof,
  .prod-trust {
    grid-template-columns: 1fr;
  }

  .prod-tabs {
    margin-left: -0.15rem;
    margin-right: -0.15rem;
  }

  .prod-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .awards__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award,
  .award:nth-child(4),
  .award:nth-child(5) {
    grid-column: auto;
  }

  .award:nth-child(5) {
    grid-column: 1 / -1;
    width: calc((100% - 1rem) / 2);
    justify-self: center;
  }
}

@media (max-width: 480px) {
  :root {
    --wf-section-y: clamp(1.75rem, 7vw, 2.75rem);
    --wf-space-5: 1.75rem;
  }

  .about__stat-value {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .about__stat-value--text {
    font-size: clamp(1.9rem, 9.5vw, 2.6rem);
  }

  .about__stat-label {
    font-size: 0.78rem;
    max-width: 16ch;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    gap: 1.5rem;
  }

  .awards__row {
    grid-template-columns: 1fr;
  }

  .award:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

}

/* Drawer overlay when menu open */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 36, 32, 0.35);
  backdrop-filter: blur(2px);
}

.nav-backdrop[hidden] {
  display: none !important;
}

@media (min-width: 1101px) {
  .nav-backdrop {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .catalog__controls {
    display: none;
  }

  .catalog__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .catalog__card {
    scroll-snap-align: start;
  }
}


/* product-images-local */
.hero__product img,
.catalog__media img,
.production__visual img,
.prod-panel__visual img,
.news__media img,
.product-card__media img {
  display: block;
  background: #e8f2dc;
}

/* ??? Catalog page (catalog.html) ??? */
.catalog-page {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.catalog-page__hero {
  min-height: min(72dvh, 640px);
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(5rem, 12vw, 7rem) clamp(1.5rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  padding-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
  background:
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(168, 217, 58, 0.32), transparent 62%),
    radial-gradient(ellipse 40% 35% at 12% 80%, rgba(142, 198, 63, 0.14), transparent 55%),
    linear-gradient(165deg, #f7faf4 0%, var(--paper) 55%, var(--mist) 100%);
}

.catalog-page__brand {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime-deep);
}

.catalog-page__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  max-width: 12ch;
}

.catalog-page__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 38ch;
}

.catalog-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.catalog-page__filters {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem clamp(1.5rem, 4vw, 4rem);
  padding-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
  background: rgba(243, 247, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 36, 32, 0.06);
}

.catalog-page__chip {
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 32, 0.12);
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s var(--ease-out), border-color 0.25s, color 0.25s, transform 0.15s;
}

.catalog-page__chip:hover {
  border-color: var(--lime-deep);
}

.catalog-page__chip:active {
  transform: translateY(1px);
}

.catalog-page__chip.is-active {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
  color: var(--white);
}

.catalog-page__section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem) 0;
  padding-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
  scroll-margin-top: 4.5rem;
}

.catalog-page__section[hidden] {
  display: none !important;
}

.catalog-page__section-head {
  margin-bottom: 1.75rem;
}

.catalog-page__section-head .section__title {
  max-width: 16ch;
}

.catalog-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 1101px) {
  .catalog-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid rgba(28, 36, 32, 0.06);
  border-radius: 1.25rem;
  overflow: hidden;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1.25rem 1.35rem 1.45rem;
}

.product-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.product-card__name {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.product-card__desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--slate);
}

.product-card__cta {
  margin-top: 0.35rem;
  justify-self: start;
}

.catalog-page__cta {
  margin: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem) 0;
  margin-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(168, 217, 58, 0.28), transparent 55%),
    var(--ink-plate);
}

.catalog-page__cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}

.catalog-page__cta p {
  color: var(--slate);
  max-width: 42ch;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .catalog-page__filters {
    top: 64px;
  }
}

@media (max-width: 720px) {
  .catalog-page__grid {
    grid-template-columns: 1fr;
  }

  .catalog-page__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .catalog-page__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalog-page__filters::-webkit-scrollbar {
    display: none;
  }

  .catalog-page__chip {
    flex: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-page__chip {
    transition: none;
  }
}

/* ??? Partner lead modal ??? */
body.partner-modal-open {
  overflow: hidden;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.partner-modal[hidden] {
  display: none !important;
}

.partner-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0.42);
  backdrop-filter: blur(3px);
}

.partner-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(92dvh, 720px);
  overflow: auto;
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(168, 217, 58, 0.22), transparent 55%),
    var(--white);
  border: 1px solid rgba(28, 36, 32, 0.08);
  box-shadow: 0 24px 56px rgba(28, 36, 32, 0.18);
  padding: 1.75rem 1.5rem 1.6rem;
}

.partner-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate);
  transition: background 0.2s, color 0.2s;
}

.partner-modal__close:hover {
  background: rgba(28, 36, 32, 0.06);
  color: var(--ink);
}

.partner-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 0.55rem;
}

.partner-modal__title {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 0.55rem;
  padding-right: 2rem;
}

.partner-modal__lead {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.partner-form {
  display: grid;
  gap: 0.95rem;
}

.partner-form__field {
  display: grid;
  gap: 0.4rem;
}

.partner-form__field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.partner-form__field input[type="text"],
.partner-form__field input[type="email"],
.partner-form__field input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem;
  border: 1.5px solid rgba(28, 36, 32, 0.14);
  background: #f7faf4;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.partner-form__field input::placeholder {
  color: rgba(90, 101, 114, 0.72);
}

.partner-form__field input:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 168, 46, 0.18);
}

.partner-form__field input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.partner-form__error {
  font-size: 0.8rem;
  color: #b42318;
  line-height: 1.35;
}

.partner-form__check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 0.15rem;
}

.partner-form__error + .partner-form__check,
.partner-form__check + .partner-form__check {
  margin-top: 0.55rem;
}

.partner-form__check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--lime-deep);
}

.partner-form__check input[aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.partner-form__check label {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--slate);
}

.partner-form__check a {
  color: var(--lime-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partner-form__status {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--slate);
}

.partner-form__submit {
  margin-top: 0.25rem;
  width: 100%;
  justify-content: center;
}

.partner-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.product-card__cta.btn--ghost {
  margin-left: 0;
  margin-top: 0.75rem;
}

.catalog-page__actions .btn {
  margin-top: 0;
  margin-left: 0;
}

.partner-modal__success .btn {
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .partner-modal {
    padding: 0.75rem;
    align-items: end;
  }

  .partner-modal__dialog {
    width: 100%;
    border-radius: 1.25rem 1.25rem 0.85rem 0.85rem;
    padding: 1.5rem 1.15rem 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-modal__close,
  .partner-form__field input {
    transition: none;
  }
}

/* ??? Cart button ??? */
.mobile-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease-out);
}

.cart-btn:hover {
  background: rgba(142, 198, 63, 0.14);
}

.cart-btn:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 2px;
}

.cart-btn__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--lime-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15rem;
  text-align: center;
}

.cart-btn--nav {
  width: 100%;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 1.15rem;
  background: rgba(142, 198, 63, 0.14);
  border: 0;
  color: var(--forest);
  font-weight: 700;
  font-size: 0.92rem;
}

.cart-btn--nav:hover {
  background: rgba(142, 198, 63, 0.24);
}

.cart-btn--nav .cart-btn__count {
  position: static;
  min-width: 1.4rem;
  height: 1.4rem;
  line-height: 1.4rem;
}

.side-nav__cart {
  margin: 0;
  padding: 0;
}

@media (min-width: 1101px) {
  .mobile-bar .cart-btn {
    display: none;
  }
}

/* ??? Product card interaction ??? */
.product-card {
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.product-card:hover {
  box-shadow: 0 14px 36px rgba(28, 36, 32, 0.1);
  transform: translateY(-2px);
}

.product-card:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .product-card {
    transition: none;
  }
  .product-card:hover {
    transform: none;
  }
}

/* ??? Product quick-view modal ??? */
body.product-modal-open,
body.cart-drawer-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.product-modal[hidden] {
  display: none !important;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0.45);
  backdrop-filter: blur(3px);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92dvh, 820px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  border-radius: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(28, 36, 32, 0.08);
  box-shadow: 0 28px 64px rgba(28, 36, 32, 0.2);
}

.product-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate);
  background: rgba(243, 247, 239, 0.92);
  border: 0;
  cursor: pointer;
}

.product-modal__close:hover {
  color: var(--ink);
  background: var(--mist);
}

.product-modal__gallery {
  background: var(--mist);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 280px;
}

.product-modal__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-modal__track::-webkit-scrollbar {
  display: none;
}

.product-modal__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  aspect-ratio: 4 / 3;
}

.product-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: rgba(243, 247, 239, 0.9);
}

.product-modal__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 32, 0.1);
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal__arrow:hover {
  border-color: var(--lime-deep);
  color: var(--lime-deep);
}

.product-modal__dots {
  display: flex;
  gap: 0.4rem;
}

.product-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(28, 36, 32, 0.2);
  cursor: pointer;
  padding: 0;
}

.product-modal__dot.is-active {
  background: var(--lime-deep);
  width: 18px;
}

.product-modal__info {
  padding: 1.75rem 1.5rem 1.5rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.product-modal__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.product-modal__title {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  padding-right: 2rem;
}

.product-modal__desc {
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.product-modal__label,
.product-page__label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.product-modal__packs,
.product-page__packs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-modal__pack,
.product-page__pack {
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 32, 0.12);
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.product-modal__pack:hover,
.product-page__pack:hover {
  border-color: var(--lime-deep);
}

.product-modal__pack.is-active,
.product-page__pack.is-active {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
  color: var(--white);
}

.product-modal__actions,
.product-page__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-modal__actions .btn,
.product-page__actions .btn {
  margin: 0;
}

/* ??? Cart drawer ??? */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.cart-drawer[hidden] {
  display: none !important;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0.4);
  backdrop-filter: blur(2px);
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: -16px 0 48px rgba(28, 36, 32, 0.16);
  padding: 1.25rem 1.15rem 1.35rem;
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-drawer__head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: var(--white);
  font-size: 1.4rem;
  color: var(--slate);
  cursor: pointer;
}

.cart-drawer__empty {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 0.5rem 0 1rem;
}

.cart-drawer__list {
  list-style: none;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding-right: 0.15rem;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(28, 36, 32, 0.06);
}

.cart-drawer__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.65rem;
  background: var(--mist);
}

.cart-drawer__name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.cart-drawer__pack {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.15rem;
}

.cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.cart-drawer__qty button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 32, 0.12);
  background: var(--paper);
  cursor: pointer;
  font-weight: 700;
}

.cart-drawer__qty span {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-drawer__remove {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--slate);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 999px;
}

.cart-drawer__remove:hover {
  background: rgba(28, 36, 32, 0.06);
  color: var(--ink);
}

.cart-drawer__foot {
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 36, 32, 0.08);
  display: grid;
  gap: 0.85rem;
}

.cart-drawer__note {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--slate);
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 230;
  transform: translateX(-50%);
  max-width: min(92vw, 420px);
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(28, 36, 32, 0.25);
}

.cart-toast[hidden] {
  display: none !important;
}

/* ??? Product detail page ??? */
.product-page {
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  padding-left: calc(var(--nav-offset) + clamp(1.5rem, 4vw, 4rem));
}

.product-page__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.product-page__crumb a {
  color: var(--lime-deep);
  font-weight: 600;
  text-decoration: none;
}

.product-page__crumb a:hover {
  text-decoration: underline;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.product-page__stage {
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 4 / 3;
}

.product-page__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page__thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  overflow-x: auto;
}

.product-page__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 66px;
  padding: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--mist);
  cursor: pointer;
}

.product-page__thumb.is-active {
  border-color: var(--lime-deep);
}

.product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.product-page__title {
  margin-top: 0.35rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  max-width: 16ch;
}

.product-page__lead {
  margin-top: 0.85rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 38ch;
}

.product-page__trust {
  margin-top: 1.5rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.product-page__trust li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.4;
}

.product-page__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lime);
}

.product-page__details {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(28, 36, 32, 0.08);
}

.product-page__details-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.product-page__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.product-page__cols h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.product-page__cols p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-page__benefits {
  margin-top: 1.75rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-page__benefits li {
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: 1rem;
  border-top: 2px solid rgba(142, 198, 63, 0.55);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.product-page__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(168, 217, 58, 0.28), transparent 55%),
    var(--ink-plate);
}

.product-page__cta h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.product-page__cta p {
  color: var(--slate);
  margin-bottom: 1rem;
  max-width: 42ch;
  line-height: 1.5;
}

.product-page__missing {
  margin-left: 0;
  min-height: 50dvh;
  display: grid;
  place-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  padding-left: calc(var(--nav-offset) + 2rem);
}

@media (max-width: 1100px) {
  .product-page__missing {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .product-modal {
    padding: 0;
    align-items: end;
  }

  .product-modal__dialog {
    width: 100%;
    max-height: min(94dvh, 900px);
    grid-template-columns: 1fr;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .product-modal__gallery {
    min-height: 220px;
  }

  .product-modal__actions .btn,
  .product-page__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-page__grid,
  .product-page__cols,
  .product-page__benefits {
    grid-template-columns: 1fr;
  }

  .product-page__title {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-modal__pack,
  .product-page__pack,
  .cart-btn {
    transition: none;
  }
}

/* ——— Ingredients B2B deal page (price-first funnel) ——— */
.ingredients-page .section {
  min-height: 0;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

/* Beat .ingredients-page .section { min-height:0 } and catalog overlap (z-index:2, -wave-h) */
main.ingredients-page > section.ingredients-hero {
  --ih-canvas: #ebe4d4;
  --ih-glow: rgba(196, 168, 110, 0.38);
  --ih-accent: #8a7048;
  /*
    Photo = right ~1/2, wavy diagonal seam (marker):
    top ~40% → bottom ~31%. Seam kept left of the photo-grid inset
    so large cells are never clipped by the mask / marquee.
  */
  --ih-photo-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M400 0C440 85 325 155 360 245C395 335 305 415 340 510C375 600 285 690 320 785C350 870 285 940 310 1000H1000V0Z'/%3E%3C/svg%3E");
  --ih-marquee-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H400C440 85 325 155 360 245C395 335 305 415 340 510C375 600 285 690 320 785C350 870 285 940 310 1000H0Z'/%3E%3C/svg%3E");
  isolation: isolate;
  overflow: hidden;
  position: relative;
  /* Above catalog negative-margin pull so the slide is not covered by white paper */
  z-index: 3;
  /* Full-viewport floor; grow with content on short/zoomed viewports (no height lock) */
  box-sizing: border-box;
  min-height: 100vh !important;
  min-height: 100svh !important;
  min-height: 100dvh !important;
  padding-top: clamp(1.75rem, 4.2vw, 3.5rem);
  padding-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  background-color: var(--ih-canvas);
  background-image:
    radial-gradient(ellipse 48% 58% at 86% 22%, var(--ih-glow), transparent 68%),
    radial-gradient(ellipse 38% 46% at 12% 92%, color-mix(in srgb, var(--lime) 18%, transparent), transparent 72%);
  transition:
    background-color 700ms var(--ease-out),
    --ih-canvas 700ms var(--ease-out),
    --ih-glow 700ms var(--ease-out),
    --ih-accent 700ms var(--ease-out);
}

/* Keep legacy selector in sync for any nested refs */
.ingredients-page .ingredients-hero {
  z-index: 3;
}

/* Photo mosaic — fixed 3×3 (right ~55–58%, bleed to viewport edge) */
.ingredients-hero__photo-pane {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background-color: transparent;
  transition: background-color 700ms var(--ease-out);
}

.ingredients-hero__photo-pane::after {
  content: none;
}

.ingredients-hero__photo-grid {
  --ih-grid-gap: 5px;
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 50%;
  bottom: 0;
  width: auto;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  transform: none;
  box-sizing: border-box;
  display: grid;
  /* ~235 / 160 / 160 · rows ~150 / 150 / 192 */
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1.28fr;
  gap: var(--ih-grid-gap);
  pointer-events: auto;
}

.ingredients-hero__photo-grid.is-dimming .ingredients-hero__cell:not(:hover):not(:focus-visible) {
  opacity: 0.72;
}

.ingredients-hero__cell {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: color-mix(in srgb, var(--ink) 8%, var(--ih-canvas));
  isolation: isolate;
  outline: none;
  opacity: 1;
  box-shadow: none;
  transform-style: preserve-3d;
  transition: opacity 280ms var(--ease-out);
}

/* Main tile spans 2×2; remaining thumbs auto-fill around it (DOM order + Flip) */
.ingredients-hero__cell--main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  z-index: 1;
}

.ingredients-hero__cell[data-photo-tone="coconut-oil"] {
  display: none !important;
}

.ingredients-hero__cell.is-active {
  z-index: 2;
}

.ingredients-hero__cell:focus-visible {
  z-index: 3;
  outline: 2px solid var(--lime-deep);
  outline-offset: -2px;
}

.ingredients-hero__cell picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ingredients-hero__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* Caption chip — main tile only */
.ingredients-hero__origin {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 1.6rem 0.75rem 0.55rem;
  font-family: Manrope, Montserrat, system-ui, sans-serif;
  font-size: clamp(0.58rem, 0.85vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.ingredients-hero__cell--main .ingredients-hero__origin {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .ingredients-hero__cell.is-kenburns img {
    animation: ingredientsHeroKenBurns 12s ease-in-out infinite alternate;
  }
}

@keyframes ingredientsHeroKenBurns {
  from {
    transform: translate3d(0, 0, 0) scale(1.008);
  }
  to {
    transform: translate3d(-0.5%, -0.35%, 0) scale(1.016);
  }
}

.ingredients-hero__marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
  opacity: 0.26;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 18%,
    #000 52%,
    transparent 72%
  );
}

.ingredients-hero__marquee-row {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  line-height: 0.86;
}

.ingredients-hero__marquee-track {
  display: flex;
  width: max-content;
  gap: 0.18em;
  will-change: transform;
  animation: ingredientsMarqueeLtr 48s linear infinite;
}

.ingredients-hero__marquee-row[data-marquee-dir="rtl"] .ingredients-hero__marquee-track {
  animation-name: ingredientsMarqueeRtl;
  animation-duration: 54s;
}

.ingredients-hero__marquee-row:nth-child(3n) .ingredients-hero__marquee-track {
  animation-duration: 44s;
}

.ingredients-hero__marquee-row:nth-child(3n + 1) .ingredients-hero__marquee-track {
  animation-duration: 50s;
}

.ingredients-hero__marquee-row:nth-child(3n + 2) .ingredients-hero__marquee-track {
  animation-duration: 58s;
}

.ingredients-hero__marquee-word {
  flex: 0 0 auto;
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 5.5%, transparent);
  white-space: nowrap;
}

.ingredients-hero__marquee-sep {
  flex: 0 0 auto;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: color-mix(in srgb, var(--lime) 18%, transparent);
  line-height: 1;
  align-self: center;
}

.ingredients-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(14rem, 24vw, 26rem);
  height: clamp(14rem, 24vw, 26rem);
  right: clamp(-10rem, -6vw, -3rem);
  top: 48%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ih-accent) 14%, transparent);
  transform: translateY(-50%);
  transition: background-color 700ms var(--ease-out);
}

.ingredients-hero__copy {
  position: relative;
  z-index: 2;
  /* Stay left of photo-grid (left:50%) — 1440×900 with side-nav must not overlap mosaic */
  max-width: min(100%, 46%, 34rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
  align-self: center;
  min-width: 0;
  /* Let hover reach photo cells under the copy; restore on CTA */
  pointer-events: none;
}

.ingredients-hero__actions,
.ingredients-hero__actions a,
.ingredients-hero__actions button,
.ingredients-hero__contact,
.ingredients-hero__contact a,
.ingredients-hero__trust {
  pointer-events: auto;
}

.ingredients-hero__eyebrow,
.ingredients-hero__title,
.ingredients-hero__lead,
.ingredients-hero__actions,
.ingredients-hero__contact,
.ingredients-hero__trust {
  animation: ingredientsHeroRise 760ms var(--ease-out) both;
}

.ingredients-hero__eyebrow {
  animation-delay: 90ms;
}

.ingredients-hero__title {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
  font-size: clamp(2.35rem, 3.4vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
  max-width: 100%;
  animation-delay: 150ms;
  will-change: transform, opacity;
}

.ingredients-hero__line {
  display: block;
  /* Wrap so long RU lines never paint over the absolute photo mosaic */
  white-space: normal;
  max-width: 100%;
}

/* Wide desktop: slightly larger type once copy has room left of the seam */
@media (min-width: 1601px) {
  .ingredients-hero__title {
    font-size: clamp(2.75rem, 4.2vw, 4.35rem);
  }

  .ingredients-hero__copy {
    max-width: min(100%, 36rem);
  }
}

.ingredients-hero__accent {
  color: var(--lime-deep);
}

.ingredients-hero__lead {
  margin-top: 1rem;
  max-width: 40ch;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.55;
  color: var(--slate);
  animation-delay: 220ms;
}

.ingredients-hero__actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  animation-delay: 290ms;
}

.ingredients-hero__actions .btn {
  margin-top: 0;
  margin-left: 0;
}

.ingredients-hero__actions .btn span {
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.ingredients-hero__actions .btn:hover span {
  transform: translateX(0.25rem);
}

.ingredients-hero__actions .btn--ghost {
  background: transparent;
  border: 1.5px solid var(--lime);
  color: var(--lime-deep);
}

.ingredients-hero__actions .btn--ghost:hover {
  background: rgba(142, 198, 63, 0.12);
  border-color: var(--lime-bright);
  color: var(--lime-deep);
  transform: translateY(-2px);
}

.ingredients-hero__max-icon {
  flex-shrink: 0;
}

.ingredients-hero__contact {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--slate);
  animation-delay: 340ms;
}

.ingredients-hero__tel {
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(28, 36, 32, 0.35);
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.ingredients-hero__tel:hover {
  color: var(--lime-deep);
  border-bottom-color: rgba(107, 168, 46, 0.55);
}

.ingredients-hero__contact-sep {
  color: rgba(90, 101, 114, 0.45);
  font-weight: 500;
}

.ingredients-hero__mail {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 36, 32, 0.3);
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.ingredients-hero__mail:hover {
  color: var(--lime-deep);
  border-bottom-color: rgba(107, 168, 46, 0.55);
}

.ingredients-hero__trust {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  max-width: 42rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 600;
  color: #5a6572;
  animation-delay: 390ms;
}

/* Desktop scroll affordance */
.ingredients-hero__scroll {
  display: none;
}

@media (min-width: 1101px) {
  main.ingredients-page > section.ingredients-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 5rem;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in srgb, var(--ih-canvas) 55%, transparent) 42%,
      color-mix(in srgb, var(--ih-canvas) 88%, var(--ih-accent) 12%) 100%
    );
  }

  .ingredients-hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    position: absolute;
    left: clamp(1.5rem, 3.5vw, 2.75rem);
    bottom: 1.35rem;
    z-index: 5;
    margin: 0;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.65rem 0.35rem;
    border: 0;
    border-radius: 0.65rem;
    background: color-mix(in srgb, var(--ih-canvas) 72%, var(--white) 28%);
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--ink) 8%, transparent),
      0 0.35rem 1rem color-mix(in srgb, var(--ink) 6%, transparent);
    color: var(--lime-deep);
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition:
      opacity 320ms var(--ease-out),
      transform 320ms var(--ease-out),
      color 220ms var(--ease-out),
      box-shadow 220ms var(--ease-out);
    animation: ingredientsHeroScrollIn 720ms var(--ease-out) 520ms both;
  }

  .ingredients-hero__scroll:hover {
    color: var(--ink);
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--lime) 45%, transparent),
      0 0.45rem 1.15rem color-mix(in srgb, var(--ink) 8%, transparent);
    transform: translateY(-1px);
  }

  .ingredients-hero__scroll:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--lime) 65%, transparent);
    outline-offset: 3px;
    opacity: 1;
  }

  .ingredients-hero__scroll-label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
    color: color-mix(in srgb, var(--slate) 88%, var(--ink));
  }

  .ingredients-hero__scroll-line {
    display: block;
    width: 2px;
    height: 1.1rem;
    background: currentColor;
    opacity: 0.85;
    border-radius: 1px;
  }

  .ingredients-hero__scroll-chevron {
    display: flex;
    line-height: 0;
    color: var(--lime-deep);
  }

  .ingredients-hero.is-scroll-cue-dismissed .ingredients-hero__scroll {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  @media (prefers-reduced-motion: no-preference) {
    .ingredients-hero__scroll-chevron {
      animation: ingredientsHeroScrollNudge 2.2s ease-in-out infinite;
    }

    .ingredients-hero.is-scroll-cue-dismissed .ingredients-hero__scroll-chevron {
      animation: none;
    }
  }
}

@keyframes ingredientsHeroScrollIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ingredientsHeroScrollNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Product stage — hidden shell; tone data lives in shots for JS */
.ingredients-hero__stage {
  display: none;
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  width: min(100%, 22rem);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem 0.5rem calc(0.85rem + var(--wave-h) * 0.2);
  transform: none;
  /* Shots hidden — do not steal hover from bottom photo cells */
  pointer-events: none;
}

.ingredients-hero__stage a,
.ingredients-hero__stage button {
  pointer-events: auto;
}

.ingredients-hero__halo,
.ingredients-hero__shots {
  display: none;
}

.ingredients-hero__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 1.4rem, 0) scale(0.92);
  transition:
    opacity 420ms var(--ease-out),
    transform 520ms var(--ease-out),
    visibility 0s linear 420ms;
}

.ingredients-hero__shot.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.ingredients-hero__frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Soft organic "seed" frame — compact, not a full-bleed card */
  border-radius: 2rem 2.75rem 1.85rem 3.35rem;
  background: color-mix(in srgb, var(--ih-canvas) 70%, var(--white));
  box-shadow:
    0 0 0 0.55rem color-mix(in srgb, var(--ih-glow) 55%, transparent),
    0 1.35rem 2.8rem rgba(28, 36, 32, 0.16);
  animation: ingredientsHeroFloat 5.2s ease-in-out 1.1s infinite;
  will-change: transform;
}

.ingredients-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 700ms var(--ease-out);
}

.ingredients-hero__shot.is-active .ingredients-hero__frame img {
  transform: scale(1);
}

@keyframes ingredientsHeroRise {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ingredientsMarqueeLtr {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ingredientsMarqueeRtl {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ingredientsHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

.ingredients-section__title {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}

.ingredients-section__lead {
  margin-top: 0.55rem;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--slate);
}

/* Selector must beat .ingredients-page .section or wave padding is dropped
   and the catalog title overlaps the hero wave cut. */
.ingredients-page .ingredients-catalog {
  background: var(--paper);
  /* Sit under hero's bottom wave so paper shows through the cut */
  margin-top: calc(-1 * var(--wave-h));
  /* Clear wave, then a short breath — keep title near the cut */
  padding-top: calc(var(--wave-h) + clamp(0.85rem, 2.2vw, 1.35rem));
  padding-bottom: calc(var(--wave-h) + clamp(1.5rem, 3.5vw, 2.5rem));
  position: relative;
  z-index: 2;
}

.ingredients-catalog__inner {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.ingredients-sku-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  container-type: inline-size;
  container-name: sku-grid;
}

.ingredients-sku {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(28, 36, 32, 0.06);
  overflow: hidden;
  box-shadow: none;
  padding: 0;
  gap: 0;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  container-type: inline-size;
  container-name: sku-card;
}

.ingredients-sku__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.ingredients-sku__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.ingredients-sku:focus-within {
  border-color: rgba(107, 168, 46, 0.34);
  box-shadow: 0 0.75rem 1.7rem rgba(28, 36, 32, 0.09);
}

@media (hover: hover) and (pointer: fine) {
  .ingredients-sku:hover {
    border-color: rgba(107, 168, 46, 0.34);
    box-shadow: 0 0.75rem 1.7rem rgba(28, 36, 32, 0.09);
  }

  .ingredients-sku:hover .ingredients-sku__media img {
    transform: scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-sku {
    transition: none;
  }

  .ingredients-sku__media img {
    transition: none;
  }

  .ingredients-sku:hover .ingredients-sku__media img {
    transform: none;
  }
}

.ingredients-sku__body {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  min-height: 0;
  height: 100%;
  padding: 0.95rem 1rem 1.05rem;
}

.ingredients-sku__head {
  display: grid;
  gap: 0.15rem;
}

.ingredients-sku__title {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}

.ingredients-sku__spec {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--lime-deep);
}

.ingredients-sku__docs {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lime-deep);
}

.ingredients-sku__compact {
  display: grid;
  gap: 0.3rem;
  margin: 0.1rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(28, 36, 32, 0.08);
}

.ingredients-sku__compact > div {
  display: grid;
  grid-template-columns: 6.6rem minmax(0, 1fr);
  gap: 0.4rem;
  align-items: baseline;
}

/* Narrow card column → stack compact rows / full-width CTAs */
@container sku-card (max-width: 21.999rem) {
  .ingredients-sku__compact > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .ingredients-sku__actions .btn,
  .ingredients-sku__price {
    width: 100%;
    justify-content: center;
  }

  .ingredients-sku__body {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

.ingredients-sku__compact dt {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}

.ingredients-sku__compact dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.ingredients-sku__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.1rem;
}

.ingredients-sku__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--lime);
  color: var(--lime-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.ingredients-sku__actions .btn {
  margin-top: 0;
  margin-left: 0;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 720px) {
  .ingredients-sku__price {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}

/* #why — CSS sticky presentation deck (no GSAP pin / fixed) */
.ingredients-why-shell {
  position: relative;
  display: block;
  width: 100%;
  margin-top: calc(-1 * var(--wave-h));
}

.ingredients-page .ingredients-why {
  --why-pad-y: var(--wave-h);
  --why-stage-h: max(18rem, calc(100dvh - 2 * var(--why-pad-y)));
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background: transparent;
  margin-top: calc(-1 * var(--wave-h));
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--why-pad-y);
  padding-bottom: var(--why-pad-y);
  overflow: visible;
}

.ingredients-why-shell .ingredients-why {
  margin-top: 0;
}

.ingredients-page .ingredients-why.is-why-sticky {
  position: sticky;
  top: 0;
}

.ingredients-page .ingredients-why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 48% 55% at 8% 18%, rgba(184, 214, 110, 0.42), transparent 58%),
    radial-gradient(ellipse 36% 42% at 96% 88%, rgba(142, 198, 63, 0.22), transparent 62%),
    #e5efdc;
  -webkit-mask-image: var(--wave-mask-top), linear-gradient(#fff 0 0), var(--wave-mask-bottom);
  -webkit-mask-size: 100% var(--wave-h), 100% calc(100% - 2 * var(--wave-h) + 2px), 100% var(--wave-h);
  -webkit-mask-position: top, center, bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-over;
  mask-image: var(--wave-mask-top), linear-gradient(#fff 0 0), var(--wave-mask-bottom);
  mask-size: 100% var(--wave-h), 100% calc(100% - 2 * var(--wave-h) + 2px), 100% var(--wave-h);
  mask-position: top, center, bottom;
  mask-repeat: no-repeat;
  mask-composite: add;
}

.ingredients-page .ingredients-why.is-why-pinned {
  z-index: 2;
  background: #e5efdc;
}

.ingredients-page .ingredients-why.is-why-pinned::before {
  -webkit-mask-image: none;
  mask-image: none;
}

.ingredients-why__deck {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
  width: min(100%, 72rem);
  margin-inline: auto;
  height: var(--why-stage-h);
  min-height: 0;
  max-height: 100%;
  flex: 1 1 auto;
  touch-action: pan-y;
}

.ingredients-why__stage {
  position: relative;
  width: 100%;
  height: var(--why-stage-h);
  max-height: 100%;
  touch-action: pan-y;
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(255, 255, 255, 0.55), transparent 70%),
    #dce8d0;
  box-shadow: 0 1.25rem 2.2rem rgba(28, 36, 32, 0.12);
}

.ingredients-why__glow {
  position: absolute;
  inset: 12% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 198, 63, 0.28), transparent 68%);
  pointer-events: none;
  z-index: 0;
  transform: scale(0.92);
  opacity: 0.85;
  transition: transform 0.55s var(--ease-out), opacity 0.55s var(--ease-out);
}

.ingredients-why__stage.is-swapping .ingredients-why__glow {
  transform: scale(1.06);
  opacity: 1;
}

.ingredients-why__props {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ingredients-why__prop {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 1.75rem);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 28px, 0) scale(0.94) rotate(2.5deg);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.55s var(--ease-out),
    visibility 0s linear 0.45s;
  will-change: transform, opacity;
}

.ingredients-why__prop.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transition-delay: 0s, 0s, 0s;
}

.ingredients-why__prop.is-exit {
  opacity: 0;
  visibility: visible;
  transform: translate3d(0, -22px, 0) scale(0.92) rotate(-2deg);
  transition-delay: 0s, 0s, 0s;
}

.ingredients-why__prop picture,
.ingredients-why__prop img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.ingredients-why__prop[data-prop="docs"].is-active img {
  animation: why-docs-fan 0.7s var(--ease-out) both;
}

.ingredients-why__prop[data-prop="sack"].is-active img {
  animation: why-sack-settle 0.65s var(--ease-out) both;
}

.ingredients-why__prop[data-prop="price"].is-active img {
  animation: why-price-lock 0.55s var(--ease-out) both;
}

.ingredients-why__prop[data-prop="sample"].is-active img {
  animation: why-sample-rise 0.6s var(--ease-out) both;
}

@keyframes why-docs-fan {
  from { transform: rotate(-3deg) scale(0.96); }
  to { transform: rotate(0deg) scale(1); }
}

@keyframes why-sack-settle {
  0% { transform: translateY(-10px) scale(0.97); }
  70% { transform: translateY(3px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes why-price-lock {
  0% { transform: scale(0.95); }
  55% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes why-sample-rise {
  from { transform: translateY(14px) scale(0.96); }
  to { transform: translateY(0) scale(1); }
}

.ingredients-why__panel {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.85rem;
  min-height: 0;
  height: 100%;
}

.ingredients-why__dots {
  grid-row: 1 / span 2;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  height: min(16rem, 70%);
  pointer-events: auto;
}

.ingredients-why__dots::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(107, 168, 46, 0.3),
    transparent
  );
  pointer-events: none;
}

.ingredients-why__dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 36px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ingredients-why__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c5d4b8;
  transform: translate(-50%, -50%);
  transition:
    width 0.28s var(--ease-out),
    height 0.28s var(--ease-out),
    border-radius 0.28s ease,
    background 0.28s ease;
}

.ingredients-why__dot.is-active::before,
.ingredients-why__dot[aria-selected="true"]::before {
  width: 0.38rem;
  height: 1.35rem;
  border-radius: 2px;
  background: var(--lime-deep);
}

.ingredients-why__dot.is-next::before {
  background: var(--lime);
}

.ingredients-why__dot:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: -4px;
}

.ingredients-why__slides {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  height: min(72%, calc(var(--why-stage-h) * 0.72));
  align-self: center;
}

.ingredients-why__item {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0.5rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.45s var(--ease-out),
    visibility 0s linear 0.4s;
}

.ingredients-why__item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s, 0s, 0s;
}

.ingredients-why__item[hidden] {
  display: grid;
}

.ingredients-why__kicker {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.4dvh + 0.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ingredients-why__title {
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(1.55rem, 4.8dvh, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.ingredients-why__note {
  margin: 0;
  max-width: 34ch;
  color: var(--slate);
  font-size: clamp(0.92rem, 1.6dvh + 0.2vw, 1.05rem);
  line-height: 1.45;
}

.ingredients-why__cta {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
}

@media (hover: hover) and (pointer: fine) {
  .ingredients-why__stage:hover .ingredients-why__prop.is-active img {
    transform: translateY(-4px);
    transition: transform 0.35s var(--ease-out);
  }
}

@media (max-width: 1100px) {
  .ingredients-page .ingredients-why {
    height: auto;
    min-height: 0;
    max-height: none;
    padding-top: calc(var(--why-pad-y) + 1.1rem);
    padding-bottom: calc(var(--why-pad-y) + 1.35rem);
  }

  .ingredients-why__deck {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
  }

  .ingredients-why__stage {
    height: min(64vw, 20rem);
  }

  .ingredients-why__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    row-gap: 0.85rem;
  }

  .ingredients-why__dots {
    grid-row: 1;
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 0.2rem;
    position: relative;
    z-index: 4;
  }

  .ingredients-why__dots::before {
    top: 50%;
    bottom: auto;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      transparent,
      rgba(107, 168, 46, 0.3),
      transparent
    );
  }

  .ingredients-why__dot {
    width: 40px;
    height: 40px;
  }

  .ingredients-why__dot.is-active::before,
  .ingredients-why__dot[aria-selected="true"]::before {
    width: 1.25rem;
    height: 0.38rem;
  }

  .ingredients-why__slides {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 11.5rem;
  }

  .ingredients-why__item {
    position: relative;
    inset: auto;
  }

  .ingredients-why__item:not(.is-active) {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .ingredients-why__item.is-active {
    pointer-events: auto;
  }

  .ingredients-why__cta {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }

  .ingredients-why__item[hidden] {
    display: none;
  }
}

@media (max-width: 720px) {
  .ingredients-why__stage {
    height: min(72vw, 17rem);
    border-radius: 1.1rem;
  }

  .ingredients-why__prop {
    padding: 0.75rem;
  }

  .ingredients-why__title {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-why__prop,
  .ingredients-why__glow,
  .ingredients-why__item,
  .ingredients-why__dot::before {
    transition: none !important;
    animation: none !important;
  }

  .ingredients-why__prop,
  .ingredients-why__item {
    transform: none;
  }

  .ingredients-why__prop.is-active img,
  .ingredients-why__prop[data-prop].is-active img {
    animation: none !important;
  }

  .ingredients-why__stage:hover .ingredients-why__prop.is-active img {
    transform: none;
  }

  .ingredients-page .ingredients-why {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .ingredients-why__slides {
    height: auto;
    display: grid;
    gap: 1.25rem;
  }

  .ingredients-why__item,
  .ingredients-why__item[hidden],
  .ingredients-why__item:not(.is-active) {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    display: grid;
  }

  .ingredients-why__item[hidden] {
    display: grid !important;
  }
}

/* #trust — B2B proof deck */
.ingredients-page .ingredients-trust {
  position: relative;
  /* Above pinned theaters; #process sits next */
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 46% 50% at 6% 0%, rgba(168, 217, 58, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 42% at 96% 88%, rgba(142, 198, 63, 0.12), transparent 60%),
    var(--paper);
  /* Sit under why's bottom wave so paper shows through the cut */
  margin-top: calc(-1 * var(--wave-h));
  padding-top: calc(var(--wave-h) + clamp(1.5rem, 3.5vw, 2.4rem));
  padding-bottom: clamp(2rem, 4.5vw, 3.1rem);
  overflow: visible;
}

.ingredients-trust__inner {
  width: min(100%, 58rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.6rem, 3.5vw, 2.4rem);
}

.ingredients-trust__head .ingredients-section__lead {
  max-width: 42ch;
}

/* Scroll-reveal stagger — opacity/transform only (design skill 5.C / 6.A) */
.ingredients-trust [data-trust-reveal] {
  --trust-base: 0ms;
  --trust-i: 0;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.6s var(--trust-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.6s var(--trust-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    var(--trust-base) + (var(--trust-i) * var(--trust-stagger, 50ms))
  );
}

.ingredients-trust.is-trust-live [data-trust-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-trust__metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  padding: clamp(1rem, 2.2vw, 1.35rem) 0;
  border-top: 1px solid rgba(28, 36, 32, 0.08);
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
}

.ingredients-trust__metric {
  min-width: 0;
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.ingredients-trust__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  background: linear-gradient(180deg, var(--lime-bright), var(--lime-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.ingredients-trust__label {
  font-size: clamp(0.78rem, 1.35vw, 0.92rem);
  line-height: 1.35;
  color: var(--slate);
  max-width: 14ch;
}

.ingredients-trust__legal-title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.ingredients-trust__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.ingredients-trust__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem 0 0.15rem;
  border-top: 2px solid rgba(142, 198, 63, 0.42);
}

.ingredients-trust__check {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: rgba(142, 198, 63, 0.18);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.28);
  position: relative;
  flex-shrink: 0;
}

.ingredients-trust__check::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.3rem;
  width: 0.34rem;
  height: 0.58rem;
  border-right: 2px solid var(--lime-deep);
  border-bottom: 2px solid var(--lime-deep);
  transform: rotate(40deg);
}

.ingredients-trust__point strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.ingredients-trust__point span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--slate);
  max-width: 36ch;
}

.ingredients-trust__seal {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(168, 217, 58, 0.18), rgba(142, 198, 63, 0.08)),
    #eaf3e4;
  border: 1px solid rgba(107, 168, 46, 0.22);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
  max-width: 54ch;
}

@media (max-width: 900px) {
  .ingredients-trust__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredients-trust__points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ingredients-trust__metrics {
    gap: 1rem 0.85rem;
  }

  .ingredients-trust__value {
    font-size: clamp(2.1rem, 12vw, 2.6rem);
  }

  .ingredients-trust__seal {
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-trust [data-trust-reveal],
  .ingredients-trust.is-trust-static [data-trust-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* #process — 4-step calm path (after trust, before delivery) */
.ingredients-page .ingredients-process {
  --process-progress: 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 48% 52% at 94% 6%, rgba(168, 217, 58, 0.18), transparent 58%),
    radial-gradient(ellipse 42% 46% at 4% 92%, rgba(142, 198, 63, 0.12), transparent 60%),
    #eaf3e4;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
  overflow: visible;
}

.ingredients-process-shell {
  position: relative;
  display: block;
  width: 100%;
}

.ingredients-page .ingredients-process.is-process-pinned {
  z-index: 2;
}

.ingredients-page .ingredients-process.is-process-sticky {
  position: sticky;
  top: 0;
}

.ingredients-process__inner {
  width: min(100%, 58rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.5rem, 3.2vw, 2.25rem);
}

.ingredients-process__head .ingredients-section__lead {
  max-width: 46ch;
}

.ingredients-process__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.4vw, 0.95rem);
  position: relative;
  counter-reset: none;
}

.ingredients-process__track::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(107, 168, 46, 0.08),
    rgba(142, 198, 63, 0.42) 18%,
    rgba(142, 198, 63, 0.42) 82%,
    rgba(107, 168, 46, 0.08)
  );
  transform: scaleX(0.08);
  transform-origin: left center;
  opacity: 0.55;
  pointer-events: none;
  transition: transform 1.1s var(--ease-out);
}

.ingredients-process.is-process-live:not(.is-process-scrub) .ingredients-process__track::before {
  transform: scaleX(1);
}

.ingredients-process.is-process-scrub .ingredients-process__track::before {
  /* Discrete step progress — compositor-friendly, no per-frame JS transforms */
  transform: scaleX(max(0.06, var(--process-progress, 0)));
  transition: transform 0.4s var(--ease-out);
}

.ingredients-process__step {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0.55rem;
  min-width: 0;
  padding: 1.05rem 1rem 1.15rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(28, 36, 32, 0.07);
  box-shadow: 0 10px 28px rgba(28, 36, 32, 0.04);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    filter 0.35s var(--ease-out);
  transition-delay: calc(var(--step-i, 0) * 90ms);
}

.ingredients-process__step.is-in,
.ingredients-process.is-process-live.prefers-static .ingredients-process__step {
  opacity: 1;
  transform: none;
}

.ingredients-process.is-process-scrub .ingredients-process__step {
  transition-delay: 0s;
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-wait {
  opacity: 0.34;
  filter: saturate(0.55);
  transform: translateY(12px) scale(0.975);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-done {
  opacity: 0.86;
  filter: none;
  transform: none;
  border-color: rgba(107, 168, 46, 0.18);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-on {
  opacity: 1;
  filter: none;
  transform: translateY(-5px);
  border-color: rgba(107, 168, 46, 0.38);
  box-shadow:
    0 16px 34px rgba(28, 36, 32, 0.08),
    0 0 0 1px rgba(168, 217, 58, 0.18);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-on .ingredients-process__icon {
  background: rgba(142, 198, 63, 0.3);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.34);
  transform: scale(1.07);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-on .ingredients-process__num {
  color: var(--lime-deep);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-wait .ingredients-process__arrow {
  opacity: 0.22;
  transform: scale(0.9);
}

.ingredients-process.is-process-scrub .ingredients-process__step.is-on .ingredients-process__arrow,
.ingredients-process.is-process-scrub .ingredients-process__step.is-done .ingredients-process__arrow {
  opacity: 1;
  background: #f3f7ef;
  box-shadow:
    inset 0 0 0 1px rgba(107, 168, 46, 0.4),
    0 0 0 3px rgba(168, 217, 58, 0.16);
}

.ingredients-process__icon {
  transition:
    transform 0.35s var(--ease-out),
    background 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.ingredients-process__arrow {
  transition:
    opacity 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.ingredients-process__step:hover {
  border-color: rgba(107, 168, 46, 0.28);
  box-shadow: 0 14px 32px rgba(28, 36, 32, 0.07);
}

.ingredients-process__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.ingredients-process__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lime-deep);
  font-variant-numeric: tabular-nums;
}

.ingredients-process__icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.16);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.22);
  flex-shrink: 0;
}

.ingredients-process__icon svg {
  display: block;
}

.ingredients-process__title {
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 14ch;
  text-wrap: balance;
}

.ingredients-process__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--slate);
  max-width: 28ch;
}

.ingredients-process__arrow {
  position: absolute;
  top: 1.35rem;
  right: -0.55rem;
  z-index: 2;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #eaf3e4;
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.28);
  pointer-events: none;
}

.ingredients-process__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0.28rem;
  height: 0.28rem;
  border-right: 1.7px solid var(--lime-deep);
  border-bottom: 1.7px solid var(--lime-deep);
  transform: translate(-60%, -50%) rotate(-45deg);
}

.ingredients-process__step:last-child .ingredients-process__arrow {
  display: none;
}

.ingredients-process__cta {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  transition-delay: 0.38s;
}

.ingredients-process.is-process-scrub .ingredients-process__cta {
  transition-delay: 0s;
}

.ingredients-process__cta.is-in,
.ingredients-process.is-process-live.prefers-static .ingredients-process__cta {
  opacity: 1;
  transform: none;
}

.ingredients-process__btn {
  margin-top: 0;
}

.ingredients-process__hint {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--slate);
}

@media (max-width: 1100px) {
  .ingredients-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .ingredients-process__track::before,
  .ingredients-process__arrow {
    display: none;
  }

  .ingredients-process__text {
    max-width: 36ch;
  }
}

@media (max-width: 720px) {
  .ingredients-process__track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.15rem;
  }

  .ingredients-process__track::before {
    display: block;
    top: 1.2rem;
    bottom: 1.2rem;
    left: 1.15rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(107, 168, 46, 0.1),
      rgba(142, 198, 63, 0.45) 18%,
      rgba(142, 198, 63, 0.45) 82%,
      rgba(107, 168, 46, 0.1)
    );
    transform: scaleY(0.18);
    transform-origin: top center;
  }

  .ingredients-process.is-process-live:not(.is-process-scrub) .ingredients-process__track::before {
    transform: scaleY(1);
  }

  .ingredients-process.is-process-scrub .ingredients-process__track::before {
    transform: scaleY(max(0.06, var(--process-progress, 0)));
    transition: none;
  }

  .ingredients-process.is-process-scrub .ingredients-process__step.is-wait,
  .ingredients-process.is-process-scrub .ingredients-process__step.is-on,
  .ingredients-process.is-process-scrub .ingredients-process__step.is-done {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .ingredients-process.is-process-scrub .ingredients-process__step.is-on {
    transform: translateY(0);
  }

  .ingredients-process.is-process-scrub .ingredients-process__step.is-wait {
    transform: translateY(8px);
  }

  .ingredients-process__step {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    padding: 1rem 0.85rem 1.15rem 0.35rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ingredients-process__step:hover {
    border-color: transparent;
    box-shadow: none;
  }

  .ingredients-process__top {
    grid-column: 1;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    margin: 0;
    padding-top: 0.1rem;
  }

  .ingredients-process__title {
    grid-column: 2;
    max-width: none;
  }

  .ingredients-process__text {
    grid-column: 2;
    max-width: 42ch;
  }

  .ingredients-process__arrow {
    display: none;
  }

  .ingredients-process__cta {
    justify-items: stretch;
  }

  .ingredients-process__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ingredients-process__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.62rem;
  }

  .ingredients-process__title {
    font-size: 1.02rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-process__track::before,
  .ingredients-process__step,
  .ingredients-process__cta,
  .ingredients-process__icon,
  .ingredients-process__arrow {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
    animation: none;
  }

  .ingredients-process.is-process-scrub .ingredients-process__track::before {
    transform: scaleX(1);
  }
}

/* #delivery — geography + honest shipping */
.ingredients-page .ingredients-delivery {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 50% 48% at 8% 8%, rgba(168, 217, 58, 0.17), transparent 58%),
    radial-gradient(ellipse 44% 44% at 96% 90%, rgba(142, 198, 63, 0.13), transparent 60%),
    var(--paper);
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
  overflow: visible;
}

.ingredients-delivery__inner {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.1rem);
}

.ingredients-delivery__head .ingredients-section__lead {
  max-width: 48ch;
}

.ingredients-delivery__map {
  margin: 0;
  display: grid;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.ingredients-delivery.is-delivery-live .ingredients-delivery__map,
.ingredients-delivery.is-delivery-live.prefers-static .ingredients-delivery__map {
  opacity: 1;
  transform: none;
}

.ingredients-delivery__map-frame.wf-stage {
  --lime: #BED933;
  --green: #7BC142;
  --green-deep: #4E9A32;
  --stroke: #FFFFFF;
  --graphite: #3E5967;
  --muted: #8A9BA6;
  --offwhite: #F4F6F0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #F4F6F0;
  border: 1px solid #E4EADB;
  box-shadow: 0 20px 50px -28px rgba(62, 89, 103, 0.4);
  font-family: "Manrope", "Montserrat", system-ui, sans-serif;
  color: var(--graphite);
}

.ingredients-delivery__map-frame.wf-stage svg,
.ingredients-delivery__svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.ingredients-delivery .country {
  fill: url(#wfLand);
  stroke: #FFFFFF;
  stroke-width: 0.8;
  stroke-linejoin: round;
  transition: filter 0.25s;
  cursor: pointer;
}

.ingredients-delivery .country:hover {
  filter: brightness(1.06) saturate(1.05);
}

.ingredients-delivery .clabel {
  fill: #2F4A2A;
  font-family: Manrope, Montserrat, sans-serif;
  font-weight: 800;
  text-anchor: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 3px;
  letter-spacing: 0.02em;
}

.ingredients-delivery .route {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 1.5 5;
  opacity: 0.9;
  animation: wf-march 18s linear infinite;
}

@keyframes wf-march {
  to { stroke-dashoffset: -260; }
}

.ingredients-delivery .hub-dot {
  fill: #FFFFFF;
  stroke: #4E9A32;
  stroke-width: 1.6;
}

.ingredients-delivery .hub-lbl {
  fill: #2F4A2A;
  font-family: Manrope, Montserrat, sans-serif;
  font-weight: 700;
  font-size: 11px;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(244, 246, 240, 0.85);
  stroke-width: 2.6px;
  dominant-baseline: middle;
}

.ingredients-delivery .hub {
  cursor: pointer;
}

.ingredients-delivery .pin-ring {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
}
.ingredients-delivery .pin-core { fill: #4E9A32; }

.ingredients-delivery .wh .pulse {
  fill: #BED933;
  opacity: 0.55;
  transform-box: fill-box;
  transform-origin: center;
  animation: wf-pulse 2.6s ease-out infinite;
}

@keyframes wf-pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}

.ingredients-delivery .wh {
  cursor: pointer;
}

.ingredients-delivery .wf-tip {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s, transform 0.16s;
  background: var(--offwhite);
  border: 1px solid rgba(80, 159, 51, 0.2);
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(62, 89, 103, 0.22);
  padding: 10px 13px;
  max-width: 230px;
  font-size: 13px;
  line-height: 1.45;
}

.ingredients-delivery .wf-tip.show {
  opacity: 1;
  transform: translateY(0);
}

.ingredients-delivery .wf-tip b {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--green-deep);
  margin-bottom: 3px;
}

.ingredients-delivery .wf-tip .meta {
  color: var(--graphite);
  font-weight: 500;
}

.ingredients-delivery .wf-tip a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  pointer-events: auto;
  background: linear-gradient(135deg, var(--lime), var(--green-deep));
}

.ingredients-delivery .wf-legend {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 6;
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #E4EADB;
  border-radius: 12px;
  padding: 8px 14px;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  color: #3E5967;
  font-weight: 600;
}

.ingredients-delivery .wf-legend .sw {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -2px;
}

.ingredients-delivery .wf-legend .sw.zone {
  background: linear-gradient(135deg, #BED933, #4E9A32);
}

.ingredients-delivery .wf-legend .sw.hub {
  background: #fff;
  border: 2px solid #4E9A32;
  border-radius: 50%;
}

.ingredients-delivery__map-caption {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--ink);
}

.ingredients-delivery__modes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

.ingredients-delivery__mode {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  min-width: 0;
  padding: 1.1rem 1.05rem 1.15rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(28, 36, 32, 0.07);
  box-shadow: 0 10px 28px rgba(28, 36, 32, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out),
    border-color 0.25s,
    box-shadow 0.25s;
  transition-delay: calc(0.2s + var(--mode-i, 0) * 90ms);
}

.ingredients-delivery__mode.is-in,
.ingredients-delivery.is-delivery-live.prefers-static .ingredients-delivery__mode {
  opacity: 1;
  transform: none;
}

.ingredients-delivery__mode:hover {
  border-color: rgba(107, 168, 46, 0.28);
  box-shadow: 0 14px 32px rgba(28, 36, 32, 0.07);
}

.ingredients-delivery__mode-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.16);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.22);
  flex-shrink: 0;
}

.ingredients-delivery__mode-icon svg {
  display: block;
}

.ingredients-delivery__mode-title {
  margin: 0 0 0.35rem;
  min-height: calc(1.25em * 2);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}

.ingredients-delivery__mode-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--slate);
  max-width: 34ch;
}

.ingredients-delivery__timing {
  list-style: none;
  margin: 0;
  padding: 0.95rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(28, 36, 32, 0.08);
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
}

.ingredients-delivery__time {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
  transition-delay: calc(0.42s + var(--time-i, 0) * 80ms);
}

.ingredients-delivery__time.is-in,
.ingredients-delivery.is-delivery-live.prefers-static .ingredients-delivery__time {
  opacity: 1;
  transform: none;
}

.ingredients-delivery__time-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  background: linear-gradient(180deg, var(--lime-bright), var(--lime-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.ingredients-delivery__time-label {
  font-size: clamp(0.82rem, 1.4vw, 0.94rem);
  line-height: 1.35;
  color: var(--slate);
  max-width: 22ch;
}

.ingredients-delivery__min {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(168, 217, 58, 0.18), rgba(142, 198, 63, 0.08)),
    #eaf3e4;
  border: 1px solid rgba(107, 168, 46, 0.22);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
  width: 100%;
  max-width: none;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: 0.52s;
}

.ingredients-delivery__min.is-in,
.ingredients-delivery.is-delivery-live.prefers-static .ingredients-delivery__min {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  .ingredients-delivery__modes {
    grid-template-columns: 1fr;
  }

  .ingredients-delivery__timing {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ingredients-delivery__mode-text {
    max-width: none;
  }

  .ingredients-delivery .wf-legend {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    gap: 10px;
    padding: 6px 9px;
  }

  .ingredients-delivery .hub-lbl {
    font-size: 9px;
  }

  .ingredients-delivery .clabel {
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .ingredients-delivery__map-frame.wf-stage {
    border-radius: 1.05rem;
  }

  .ingredients-delivery__mode {
    padding: 0.95rem 0.9rem 1rem;
  }

  .ingredients-delivery__min {
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
  }

  .ingredients-delivery .wf-legend {
    flex-wrap: wrap;
    max-width: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-delivery__map,
  .ingredients-delivery__mode,
  .ingredients-delivery__time,
  .ingredients-delivery__min {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .ingredients-delivery .route,
  .ingredients-delivery .wh .pulse {
    animation: none;
  }

  .ingredients-delivery .country {
    transition: none;
  }
}

/* #cases — segment proof bento (after delivery, before #faq) */
.ingredients-page .ingredients-cases {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 46% 50% at 92% 4%, rgba(168, 217, 58, 0.2), transparent 58%),
    radial-gradient(ellipse 40% 44% at 4% 96%, rgba(142, 198, 63, 0.12), transparent 60%),
    #eaf3e4;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
  overflow: visible;
}

.ingredients-cases__inner {
  width: min(100%, 58rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.5rem, 3.2vw, 2.25rem);
}

.ingredients-cases__head .ingredients-section__lead {
  max-width: 46ch;
}

.ingredients-cases [data-cases-reveal] {
  --cases-base: 0ms;
  --cases-i: 0;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.45s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.45s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    var(--cases-base) + (var(--cases-i) * var(--cases-stagger, 120ms))
  );
}

.ingredients-cases.is-cases-live [data-cases-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-cases__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
  container-type: inline-size;
  container-name: cases-grid;
}

.ingredients-cases__card {
  --cases-i: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 1.25rem 1.15rem 1.3rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(28, 36, 32, 0.07);
  box-shadow: 0 12px 30px rgba(28, 36, 32, 0.045);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.4s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.4s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    border-color 0.28s ease-out,
    box-shadow 0.28s ease-out;
  transition-delay: calc(60ms + var(--cases-i) * var(--cases-stagger, 120ms));
  container-type: inline-size;
  container-name: cases-card;
}

.ingredients-cases__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.15rem 1.15rem 0 0;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease-out;
  z-index: 1;
  pointer-events: none;
}

.ingredients-cases.is-cases-live .ingredients-cases__card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-cases.is-cases-live .ingredients-cases__card:hover {
  border-color: rgba(107, 168, 46, 0.34);
  box-shadow: 0 18px 36px rgba(28, 36, 32, 0.09);
  transform: translate3d(0, -6px, 0);
}

.ingredients-cases.is-cases-live .ingredients-cases__card:hover::before {
  transform: scaleX(1);
}

.ingredients-cases.is-cases-live .ingredients-cases__card:hover .ingredients-cases__mark {
  transform: scale(1.1);
  background: rgba(142, 198, 63, 0.32);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.4);
}

.ingredients-cases__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
}

.ingredients-cases__mark {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.18);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.28);
  flex-shrink: 0;
  transition:
    transform 0.28s ease-out,
    background 0.28s ease-out,
    box-shadow 0.28s ease-out;
}

.ingredients-cases__mark svg {
  display: block;
}

.ingredients-cases__profile {
  margin: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}

.ingredients-cases__facts {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.ingredients-cases__fact {
  --fact-i: 0;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.55rem;
  align-items: baseline;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.35s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.35s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    160ms + (var(--cases-i) * var(--cases-stagger, 120ms)) + (var(--fact-i) * 70ms)
  );
}

@container cases-card (max-width: 20rem) {
  .ingredients-cases__fact {
    grid-template-columns: 4.6rem 1fr;
  }
}

@container cases-card (max-width: 16rem) {
  .ingredients-cases__fact {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.ingredients-cases.is-cases-live .ingredients-cases__fact {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-cases__fact dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.ingredients-cases__fact dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}

.ingredients-cases__note {
  margin: 0;
  margin-top: auto;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--slate);
  max-width: 34ch;
}

.ingredients-cases__cta {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  padding-top: 0.15rem;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.4s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.4s var(--cases-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: 0.48s;
}

.ingredients-cases.is-cases-live .ingredients-cases__cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-cases__cta-line {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}

.ingredients-cases__btn {
  margin-top: 0;
}

.ingredients-cases__btn span {
  display: inline-block;
  transition: transform 0.28s ease-out;
}

.ingredients-cases__btn:hover span {
  transform: translateX(4px);
}

.ingredients-cases.is-cases-live:not(.is-cases-static) .ingredients-cases__btn {
  animation: cases-cta-pulse 2.8s ease-out 0.7s infinite;
}

@keyframes cases-cta-pulse {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(107, 168, 46, 0.18);
  }
  50% {
    box-shadow: 0 12px 28px rgba(107, 168, 46, 0.32);
  }
}

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

@media (max-width: 720px) {
  .ingredients-cases__cta {
    justify-items: stretch;
  }

  .ingredients-cases__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ingredients-cases__card {
    padding: 1.05rem 1rem 1.1rem;
    border-radius: 1rem;
  }

  .ingredients-cases__card::before {
    border-radius: 1rem 1rem 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-cases [data-cases-reveal],
  .ingredients-cases__card,
  .ingredients-cases__card::before,
  .ingredients-cases__fact,
  .ingredients-cases__cta,
  .ingredients-cases__mark,
  .ingredients-cases__btn span,
  .ingredients-cases.is-cases-static [data-cases-reveal],
  .ingredients-cases.is-cases-static .ingredients-cases__card,
  .ingredients-cases.is-cases-static .ingredients-cases__fact,
  .ingredients-cases.is-cases-static .ingredients-cases__cta {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .ingredients-cases.is-cases-live:not(.is-cases-static) .ingredients-cases__btn {
    animation: none;
  }

  .ingredients-cases.is-cases-live .ingredients-cases__card:hover,
  .ingredients-cases.is-cases-live .ingredients-cases__card:hover .ingredients-cases__mark {
    transform: none;
  }
}

/* #reviews — human voice proof (after cases, before #faq) */
.ingredients-page .ingredients-reviews {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 42% 48% at 8% 8%, rgba(168, 217, 58, 0.22), transparent 56%),
    radial-gradient(ellipse 38% 42% at 96% 92%, rgba(142, 198, 63, 0.14), transparent 58%),
    linear-gradient(180deg, #f3f7ef 0%, #eef5e8 100%);
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
  overflow: visible;
}

.ingredients-reviews__inner {
  width: min(100%, 58rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.5rem, 3.2vw, 2.25rem);
}

.ingredients-reviews__head .ingredients-section__lead {
  max-width: 48ch;
}

.ingredients-reviews [data-reviews-reveal] {
  --reviews-base: 0ms;
  --reviews-i: 0;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.5s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.5s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    var(--reviews-base) + (var(--reviews-i) * var(--reviews-stagger, 110ms))
  );
}

.ingredients-reviews.is-reviews-live [data-reviews-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-reviews__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
  container-type: inline-size;
  container-name: reviews-grid;
}

.ingredients-reviews__card {
  --reviews-i: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  height: 100%;
  padding: 1.45rem 1.2rem 1.25rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 55%, rgba(243, 247, 239, 0.9));
  border: 1px solid rgba(28, 36, 32, 0.07);
  box-shadow: 0 12px 30px rgba(28, 36, 32, 0.045);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  transition:
    opacity 0.5s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.5s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    border-color 0.28s ease-out,
    box-shadow 0.28s ease-out;
  transition-delay: calc(70ms + var(--reviews-i) * var(--reviews-stagger, 110ms));
  container-type: inline-size;
  container-name: reviews-card;
}

.ingredients-reviews__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 1.15rem 0 0 1.15rem;
  background: linear-gradient(180deg, var(--lime-bright), var(--lime-deep));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(180ms + var(--reviews-i) * var(--reviews-stagger, 110ms));
  z-index: 1;
  pointer-events: none;
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__card::before {
  transform: scaleY(1);
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover {
  border-color: rgba(107, 168, 46, 0.34);
  box-shadow: 0 18px 38px rgba(28, 36, 32, 0.09);
  transform: translate3d(0, -6px, 0) scale(1);
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover .ingredients-reviews__avatar {
  transform: scale(1.08);
  background: rgba(142, 198, 63, 0.34);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.42);
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover .ingredients-reviews__quote {
  color: rgba(107, 168, 46, 0.42);
  transform: scale(1.06);
}

.ingredients-reviews__quote {
  position: absolute;
  top: 0.35rem;
  right: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(142, 198, 63, 0.28);
  pointer-events: none;
  user-select: none;
  transform-origin: top right;
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.9);
  transition:
    opacity 0.55s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.55s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    color 0.28s ease-out;
  transition-delay: calc(160ms + var(--reviews-i) * var(--reviews-stagger, 110ms));
  z-index: 0;
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__quote {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ingredients-reviews__text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(0.95rem, 1.55vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--ink);
  max-width: 36ch;
  quotes: none;
}

.ingredients-reviews__author {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.15rem;
}

.ingredients-reviews__avatar {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.18);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.28);
  flex-shrink: 0;
  transition:
    transform 0.28s ease-out,
    background 0.28s ease-out,
    box-shadow 0.28s ease-out;
}

.ingredients-reviews__meta {
  min-width: 0;
}

.ingredients-reviews__name {
  display: block;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
}

.ingredients-reviews__role {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--slate);
}

.ingredients-reviews__anchor {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  margin-top: auto;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--lime-deep);
  background: rgba(142, 198, 63, 0.14);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.2);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.4s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.4s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(240ms + var(--reviews-i) * var(--reviews-stagger, 110ms));
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__anchor {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-reviews__anchor-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lime-deep);
  flex-shrink: 0;
}

.ingredients-reviews__cta {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  padding-top: 0.15rem;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.45s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.45s var(--reviews-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: 0.52s;
}

.ingredients-reviews.is-reviews-live .ingredients-reviews__cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-reviews__cta-line {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}

.ingredients-reviews__btn {
  margin-top: 0;
}

.ingredients-reviews__btn span {
  display: inline-block;
  transition: transform 0.28s ease-out;
}

.ingredients-reviews__btn:hover span {
  transform: translateX(4px);
}

.ingredients-reviews.is-reviews-live:not(.is-reviews-static) .ingredients-reviews__btn {
  animation: reviews-cta-pulse 2.8s ease-out 0.8s infinite;
}

@keyframes reviews-cta-pulse {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(107, 168, 46, 0.18);
  }
  50% {
    box-shadow: 0 12px 28px rgba(107, 168, 46, 0.32);
  }
}

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

@media (max-width: 720px) {
  .ingredients-reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    gap: 0.85rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .ingredients-reviews__card {
    flex: 0 0 min(86vw, 22.5rem);
    scroll-snap-align: start;
    min-height: 100%;
  }

  .ingredients-reviews__cta {
    justify-items: stretch;
  }

  .ingredients-reviews__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ingredients-reviews__card {
    flex-basis: min(92vw, 21rem);
    padding: 1.2rem 1rem 1.1rem;
    border-radius: 1rem;
  }

  .ingredients-reviews__card::before {
    border-radius: 1rem 0 0 1rem;
  }
}

@container reviews-card (max-width: 21.999rem) {
  .ingredients-reviews__quote {
    right: 0.65rem;
    font-size: 3.2rem;
  }

  .ingredients-reviews__text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-reviews [data-reviews-reveal],
  .ingredients-reviews__card,
  .ingredients-reviews__card::before,
  .ingredients-reviews__quote,
  .ingredients-reviews__anchor,
  .ingredients-reviews__cta,
  .ingredients-reviews__avatar,
  .ingredients-reviews__btn span,
  .ingredients-reviews.is-reviews-static [data-reviews-reveal],
  .ingredients-reviews.is-reviews-static .ingredients-reviews__card,
  .ingredients-reviews.is-reviews-static .ingredients-reviews__quote,
  .ingredients-reviews.is-reviews-static .ingredients-reviews__anchor,
  .ingredients-reviews.is-reviews-static .ingredients-reviews__cta {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .ingredients-reviews.is-reviews-live:not(.is-reviews-static) .ingredients-reviews__btn {
    animation: none;
  }

  .ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover,
  .ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover .ingredients-reviews__avatar,
  .ingredients-reviews.is-reviews-live .ingredients-reviews__card:hover .ingredients-reviews__quote {
    transform: none;
  }
}

/* #faq — sales accordion (after reviews, before docs) */
.ingredients-page .ingredients-faq {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 48% 42% at 8% 0%, rgba(168, 217, 58, 0.18), transparent 56%),
    radial-gradient(ellipse 38% 48% at 96% 88%, rgba(142, 198, 63, 0.12), transparent 58%),
    linear-gradient(180deg, #f3f7ef 0%, #eef5e8 100%);
  padding-top: clamp(1.85rem, 4.2vw, 2.85rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  overflow: visible;
}

.ingredients-faq__inner {
  width: min(100%, 46rem);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}

.ingredients-faq__head .ingredients-section__lead {
  max-width: 44ch;
}

.ingredients-faq [data-faq-reveal] {
  --faq-base: 0ms;
  --faq-i: 0;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.6s var(--faq-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.6s var(--faq-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    var(--faq-base) + (var(--faq-i) * var(--faq-stagger, 55ms))
  );
}

.ingredients-faq.is-faq-live [data-faq-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-faq__list {
  display: grid;
  gap: 0;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(28, 36, 32, 0.08);
  box-shadow:
    0 14px 34px rgba(28, 36, 32, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.ingredients-faq__item {
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
}

.ingredients-faq__item:last-child {
  border-bottom: 0;
}

.ingredients-faq__q {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.ingredients-faq__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  transition:
    background-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out);
  touch-action: manipulation;
}

.ingredients-faq__trigger:hover {
  background: rgba(142, 198, 63, 0.08);
}

.ingredients-faq__trigger:active {
  transform: translateY(1px);
}

.ingredients-faq__trigger:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: -2px;
}

.ingredients-faq__item.is-open .ingredients-faq__trigger {
  background: rgba(142, 198, 63, 0.1);
}

.ingredients-faq__q-text {
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-wrap: balance;
}

.ingredients-faq__icon {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  background: rgba(142, 198, 63, 0.16);
  box-shadow: inset 0 0 0 1px rgba(107, 168, 46, 0.28);
  transition:
    background-color 0.28s var(--ease-out),
    transform 0.35s var(--faq-ease, cubic-bezier(0.16, 1, 0.3, 1));
}

.ingredients-faq__item.is-open .ingredients-faq__icon {
  background: rgba(142, 198, 63, 0.28);
  transform: rotate(180deg);
}

.ingredients-faq__icon-h,
.ingredients-faq__icon-v {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 2px;
  border-radius: 1px;
  background: var(--lime-deep);
  transform: translate(-50%, -50%);
}

.ingredients-faq__icon-v {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.32s var(--faq-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    opacity 0.24s var(--ease-out);
}

.ingredients-faq__item.is-open .ingredients-faq__icon-v {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  opacity: 0;
}

.ingredients-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s var(--faq-ease, cubic-bezier(0.16, 1, 0.3, 1));
}

.ingredients-faq__item.is-open .ingredients-faq__panel {
  grid-template-rows: 1fr;
}

.ingredients-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.ingredients-faq__panel-inner p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  max-width: 58ch;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--slate);
}

.ingredients-faq__cta {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  padding: 1.1rem 1.2rem 1.15rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(155deg, rgba(168, 217, 58, 0.22), rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.7)),
    #f3f7ef;
  border: 1px solid rgba(107, 168, 46, 0.22);
  box-shadow:
    0 12px 28px rgba(28, 36, 32, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ingredients-faq__cta-line {
  margin: 0;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  max-width: 34ch;
}

.ingredients-faq__btn {
  margin-top: 0;
}

@media (max-width: 720px) {
  .ingredients-faq__trigger {
    padding: 0.95rem 1rem;
    gap: 0.75rem;
  }

  .ingredients-faq__panel-inner p {
    padding: 0 1rem 1.05rem;
  }

  .ingredients-faq__cta {
    justify-items: stretch;
    padding: 1rem;
  }

  .ingredients-faq__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ingredients-faq__list,
  .ingredients-faq__cta {
    border-radius: 1rem;
  }

  .ingredients-faq__q-text {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-faq [data-faq-reveal],
  .ingredients-faq.is-faq-static [data-faq-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ingredients-faq__panel,
  .ingredients-faq__icon,
  .ingredients-faq__icon-v,
  .ingredients-faq__trigger {
    transition: none;
  }

  .ingredients-faq__trigger:active {
    transform: none;
  }
}

/* #lead — primary conversion close (after FAQ) */
.ingredients-page .ingredients-convert {
  position: relative;
  z-index: 2;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(ellipse 52% 48% at 92% 8%, rgba(168, 217, 58, 0.22), transparent 56%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(142, 198, 63, 0.14), transparent 58%),
    linear-gradient(180deg, #eef5e8 0%, #e6f0de 100%);
  padding-top: clamp(2rem, 4.8vw, 3.4rem);
  padding-bottom: clamp(2.4rem, 5.5vw, 3.8rem);
  overflow: hidden;
}

.ingredients-convert__inner {
  width: min(100%, 68rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.ingredients-convert [data-convert-reveal] {
  --convert-base: 0ms;
  --convert-i: 0;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.65s var(--convert-ease, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.65s var(--convert-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(
    var(--convert-base) + (var(--convert-i) * var(--convert-stagger, 48ms))
  );
}

.ingredients-convert.is-convert-live [data-convert-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ingredients-convert__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}

.ingredients-convert__lead {
  margin-top: 0.75rem;
  max-width: 36ch;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.5;
  color: var(--slate);
}

.ingredients-convert__lock {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  max-width: 38ch;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 168, 46, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
}

.ingredients-convert__lock-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  color: var(--forest);
  background: linear-gradient(160deg, rgba(168, 217, 58, 0.45), rgba(142, 198, 63, 0.22));
}

.ingredients-convert__triggers {
  list-style: none;
  margin-top: 1.35rem;
  display: grid;
  gap: 0.65rem;
}

.ingredients-convert__triggers li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.ingredients-convert__check {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background:
    linear-gradient(160deg, var(--lime-bright), var(--lime-deep));
  box-shadow: 0 0 0 3px rgba(142, 198, 63, 0.18);
  position: relative;
}

.ingredients-convert__check::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    no-repeat center / 0.55rem
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1.2 5.2 4.3 8.2 10.8 1.5' fill='none' stroke='%231c2420' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ingredients-convert__alt {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(28, 36, 32, 0.1);
}

.ingredients-convert__alt-title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ingredients-convert__channels {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ingredients-convert__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid rgba(28, 36, 32, 0.12);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition:
    transform 0.25s var(--ease-out),
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  touch-action: manipulation;
}

.ingredients-convert__channel:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 168, 46, 0.45);
  background: #fff;
}

.ingredients-convert__channel:active {
  transform: translateY(1px) scale(0.98);
}

.ingredients-convert__channel--mail {
  color: var(--lime-deep);
  border-color: rgba(107, 168, 46, 0.4);
  background: rgba(142, 198, 63, 0.12);
}

.ingredients-convert__channel--mail:hover {
  background: rgba(142, 198, 63, 0.2);
}

.ingredients-convert__panel {
  position: relative;
  padding: clamp(1.2rem, 2.8vw, 1.65rem);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(28, 36, 32, 0.08);
  box-shadow:
    0 22px 48px rgba(28, 36, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ingredients-convert__form {
  margin: 0;
}

.partner-form__field select,
.partner-form__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem;
  border: 1.5px solid rgba(28, 36, 32, 0.14);
  background: #f7faf4;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.partner-form__field textarea {
  min-height: 4.5rem;
  resize: vertical;
  line-height: 1.45;
}

.partner-form__field select:focus,
.partner-form__field textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 168, 46, 0.18);
}

.ingredients-convert__submit {
  margin-top: 0.35rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1.05rem 1.4rem;
}

.ingredients-convert__trust {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--slate);
  text-align: center;
  max-width: 34ch;
  margin-inline: auto;
}

.ingredients-convert__success {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 18rem;
}

.ingredients-convert__success[hidden] {
  display: none;
}

.ingredients-convert__success-title {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ingredients-convert__success-lead {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--slate);
  max-width: 34ch;
}

.ingredients-convert__success .btn {
  margin-top: 0.55rem;
  width: fit-content;
}

/* Floating WhatsApp — available on every block */
.ingredients-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.ingredients-fab.is-fab-live {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.ingredients-fab__btn {
  display: grid;
  place-items: center;
  width: 3.55rem;
  height: 3.55rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(160deg, #2fe074, #1faa55);
  box-shadow:
    0 14px 30px rgba(31, 170, 85, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  touch-action: manipulation;
}

.ingredients-fab__btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 18px 36px rgba(31, 170, 85, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ingredients-fab__btn:active {
  transform: translateY(1px) scale(0.97);
}

.ingredients-fab__btn:focus-visible {
  outline: 3px solid rgba(107, 168, 46, 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .ingredients-fab.is-fab-live .ingredients-fab__btn {
    animation: ingredientsFabPulse 2.8s var(--ease-out) 1.2s infinite;
  }
}

@keyframes ingredientsFabPulse {
  0%,
  100% {
    box-shadow:
      0 14px 30px rgba(31, 170, 85, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 14px 30px rgba(31, 170, 85, 0.35),
      0 0 0 10px rgba(47, 224, 116, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 900px) {
  .ingredients-convert__inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .ingredients-convert__title {
    max-width: 22ch;
  }

  .ingredients-convert__panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .ingredients-convert__channels {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ingredients-convert__channel {
    justify-content: center;
  }

  .ingredients-fab {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .ingredients-page .ingredients-convert {
    padding-top: 1.75rem;
    padding-bottom: 2.1rem;
  }

  .ingredients-convert__panel {
    padding: 1.1rem;
    border-radius: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-convert [data-convert-reveal],
  .ingredients-fab,
  .ingredients-fab__btn {
    transition: none !important;
    animation: none !important;
  }

  .ingredients-convert [data-convert-reveal],
  .ingredients-convert.is-convert-static [data-convert-reveal] {
    opacity: 1;
    transform: none;
  }

  .ingredients-fab,
  .ingredients-fab.is-fab-live {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  main.ingredients-page > section.ingredients-hero,
  .ingredients-page .ingredients-hero {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.85fr);
    gap: clamp(1.25rem, 3.5vw, 2.5rem);
    /* Clear fixed mobile-bar; keep full-viewport floor */
    padding-top: 5.5rem;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
  }

  .ingredients-hero__stage {
    width: min(100%, 18rem);
  }

  .ingredients-page .btn {
    min-height: 44px;
  }

  /* Clearance so SKU CTAs are not covered by the WhatsApp FAB */
  .ingredients-page .ingredients-catalog {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Tablet portrait: keep copy left of the photo-grid seam */
@media (max-width: 1100px) and (min-width: 721px) {
  .ingredients-hero__copy {
    max-width: min(100%, 34rem);
  }

  .ingredients-hero__title {
    font-size: clamp(1.85rem, 4.2vw, 2.45rem);
  }
}

@media (pointer: coarse) {
  .ingredients-page .btn {
    min-height: 44px;
  }
}

@media (max-width: 720px) {
  main.ingredients-page > section.ingredients-hero,
  .ingredients-page .ingredients-hero {
    --ih-photo-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H1000V320C920 355 840 290 760 330C680 370 600 300 520 340C440 380 360 310 280 350C200 390 120 325 0 360Z'/%3E%3C/svg%3E");
    --ih-marquee-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 360C120 325 200 390 280 350C360 310 440 380 520 340C600 300 680 370 760 330C840 290 920 355 1000 320V1000H0Z'/%3E%3C/svg%3E");
    /* Grow with content; do not clip contact/trust on short phones */
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    overflow-x: clip;
    overflow-y: visible;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 5.5rem;
    padding-bottom: 1.25rem;
    align-content: start;
    align-items: stretch;
  }

  /* Mosaic in normal flow above copy (WellFoods ≤720 contract) */
  .ingredients-hero__photo-pane {
    position: relative;
    inset: auto;
    height: auto;
    z-index: 1;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0.15rem;
  }

  .ingredients-hero__photo-pane::after {
    content: none;
  }

  .ingredients-hero__photo-grid {
    --ih-grid-gap: 4px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: clamp(14rem, 42dvh, 22rem);
    max-height: none;
    aspect-ratio: auto;
    transform: none;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1.28fr;
    gap: var(--ih-grid-gap);
  }

  .ingredients-hero__origin {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    padding: 1.1rem 0.45rem 0.35rem;
  }

  /* Unused carousel shell (shots already display:none) — drop dead height */
  .ingredients-hero__stage {
    display: none;
  }

  .ingredients-hero__copy {
    position: relative;
    z-index: 2;
    grid-column: auto;
    grid-row: auto;
    max-width: min(100%, 36rem);
    background: none;
    pointer-events: auto;
  }

  .ingredients-hero__title {
    font-size: clamp(1.75rem, 7.4vw, 2.65rem);
  }

  .ingredients-hero__line {
    white-space: normal;
  }

  .ingredients-hero__marquee-word {
    font-size: clamp(2.6rem, 16vw, 4.4rem);
  }

  .ingredients-hero__marquee-sep {
    font-size: clamp(1.4rem, 8vw, 2.4rem);
  }

  .ingredients-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ingredients-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Short viewports: allow hero overflow when content exceeds min-height floor */
@media (max-height: 740px) {
  main.ingredients-page > section.ingredients-hero,
  .ingredients-page .ingredients-hero {
    overflow-x: clip;
    overflow-y: visible;
  }
}

@media (max-width: 480px) {
  .ingredients-hero__lead {
    margin-top: 0.75rem;
  }

  .ingredients-hero__actions {
    margin-top: 1.1rem;
  }

  .ingredients-hero__contact {
    margin-top: 0.7rem;
  }

  .ingredients-hero__trust {
    margin-top: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-hero__eyebrow,
  .ingredients-hero__title,
  .ingredients-hero__lead,
  .ingredients-hero__actions,
  .ingredients-hero__contact,
  .ingredients-hero__trust,
  .ingredients-hero__frame,
  .ingredients-hero__marquee-track,
  .ingredients-hero__scroll,
  .ingredients-hero__scroll-chevron,
  .ingredients-hero__cell.is-kenburns img {
    animation: none !important;
  }

  .ingredients-hero__shot,
  .ingredients-hero__frame img,
  .ingredients-hero__cell,
  .ingredients-hero__cell img,
  .ingredients-hero__origin,
  .ingredients-page .ingredients-hero,
  .ingredients-hero::before,
  .ingredients-hero__halo {
    transition: none;
  }

  .ingredients-hero__frame img,
  .ingredients-hero__cell img {
    transform: none !important;
  }

  .ingredients-hero__marquee-track {
    transform: none;
  }

  .ingredients-hero__photo-grid.is-dimming .ingredients-hero__cell:not(:hover):not(:focus-visible) {
    opacity: 1;
  }

  .ingredients-stream .s-stream__dots-i::before {
    transition: none;
  }
}

/* ——— Ingredients details lead modal ——— */
body.details-modal-open {
  overflow: hidden;
}

.details-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.details-modal[hidden] {
  display: none !important;
}

.details-modal.is-open {
  pointer-events: auto;
}

.details-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 32, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
}

.details-modal.is-open .details-modal__backdrop {
  opacity: 1;
}

.details-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(92dvh, 740px);
  overflow: auto;
  border-radius: 1.4rem;
  background:
    radial-gradient(ellipse 78% 52% at 100% -8%, rgba(168, 217, 58, 0.26), transparent 56%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(142, 198, 63, 0.1), transparent 50%),
    var(--white);
  border: 1px solid rgba(28, 36, 32, 0.08);
  box-shadow:
    0 28px 64px rgba(28, 36, 32, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  padding: 1.85rem 1.55rem 1.65rem;
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.94);
  transition:
    opacity 360ms var(--ease-out),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.details-modal.is-open .details-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.details-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--slate);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}

.details-modal__close:hover {
  background: rgba(28, 36, 32, 0.06);
  color: var(--ink);
}

.details-modal__close:active {
  transform: scale(0.94);
}

.details-modal__close:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 2px;
}

.details-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 0.55rem;
}

.details-modal__title {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 0.55rem;
  padding-right: 2.4rem;
  color: var(--ink);
}

.details-modal__lead {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.details-modal__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  padding: 0.72rem 0.85rem;
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(142, 198, 63, 0.12), rgba(243, 247, 239, 0.9) 55%),
    var(--paper);
  border: 1px solid rgba(107, 168, 46, 0.18);
  color: var(--ink);
}

.details-modal__hours-icon {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--lime-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(107, 168, 46, 0.12);
}

.details-modal__hours-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.details-modal__hours-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.details-modal__hours-meta {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--slate);
}

.details-modal__success {
  display: grid;
  justify-items: start;
  text-align: left;
  padding-top: 0.35rem;
}

.details-modal__success .details-modal__eyebrow,
.details-modal__success .details-modal__title,
.details-modal__success .details-modal__lead,
.details-modal__success .details-modal__hours,
.details-modal__success .details-modal__success-btn {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.details-modal__success-mark {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0.15rem 0 1.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--lime-deep);
  background:
    radial-gradient(circle at 30% 28%, rgba(168, 217, 58, 0.42), transparent 58%),
    linear-gradient(145deg, rgba(142, 198, 63, 0.22), rgba(243, 247, 239, 0.95));
  border: 1px solid rgba(107, 168, 46, 0.22);
  box-shadow:
    0 10px 28px rgba(107, 168, 46, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  opacity: 0;
  transform: scale(0.72);
}

.details-modal__success-ring {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1.5px solid rgba(142, 198, 63, 0.35);
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

.details-modal__success-icon {
  position: relative;
  z-index: 1;
}

.details-modal__success-check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}

.details-modal__success.is-visible .details-modal__success-mark {
  animation: detailsSuccessMarkIn 520ms var(--ease-out) both;
}

.details-modal__success.is-visible .details-modal__success-ring {
  animation: detailsSuccessRing 720ms var(--ease-out) 120ms both;
}

.details-modal__success.is-visible .details-modal__success-check {
  animation: detailsSuccessCheck 480ms var(--ease-out) 180ms both;
}

.details-modal__success.is-visible .details-modal__eyebrow,
.details-modal__success.is-visible .details-modal__title,
.details-modal__success.is-visible .details-modal__lead,
.details-modal__success.is-visible .details-modal__hours,
.details-modal__success.is-visible .details-modal__success-btn {
  animation: detailsModalStagger 480ms var(--ease-out) both;
}

.details-modal__success.is-visible .details-modal__eyebrow {
  animation-delay: 220ms;
}

.details-modal__success.is-visible .details-modal__title {
  animation-delay: 280ms;
}

.details-modal__success.is-visible .details-modal__lead {
  animation-delay: 340ms;
}

.details-modal__success.is-visible .details-modal__hours {
  animation-delay: 400ms;
}

.details-modal__success.is-visible .details-modal__success-btn {
  animation-delay: 460ms;
}

.details-modal__success .details-modal__lead {
  margin-bottom: 1rem;
  max-width: 34ch;
}

.details-modal__success .details-modal__hours {
  width: 100%;
  margin-bottom: 1.25rem;
}

.details-modal__form [data-details-stagger] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.details-modal.is-open .details-modal__form [data-details-stagger] {
  animation: detailsModalStagger 480ms var(--ease-out) both;
  animation-delay: calc(140ms + var(--details-i, 0) * 55ms);
}

.details-modal__success .btn {
  margin-top: 0.15rem;
  width: 100%;
  justify-content: center;
}

.details-modal__success[hidden],
.details-modal__panel[hidden] {
  display: none !important;
}

@keyframes detailsModalStagger {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes detailsSuccessMarkIn {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes detailsSuccessRing {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  55% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes detailsSuccessCheck {
  from {
    stroke-dashoffset: 36;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 720px) {
  .details-modal {
    padding: 0.75rem;
    align-items: end;
  }

  .details-modal__dialog {
    width: 100%;
    border-radius: 1.3rem 1.3rem 0.9rem 0.9rem;
    padding: 1.55rem 1.2rem 1.4rem;
    transform: translate3d(0, 40px, 0) scale(0.98);
  }

  .details-modal.is-open .details-modal__dialog {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 480px) {
  .details-modal {
    padding: 0.5rem;
  }

  .details-modal__dialog {
    max-height: min(94dvh, 760px);
    padding: 1.4rem 1.05rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .details-modal__backdrop,
  .details-modal__dialog,
  .details-modal__close {
    transition: none !important;
  }

  .details-modal__dialog {
    transform: none;
    opacity: 1;
  }

  .details-modal:not(.is-open) .details-modal__dialog {
    opacity: 0;
  }

  .details-modal__form [data-details-stagger],
  .details-modal.is-open .details-modal__form [data-details-stagger],
  .details-modal__success.is-visible .details-modal__success-mark,
  .details-modal__success.is-visible .details-modal__success-ring,
  .details-modal__success.is-visible .details-modal__success-check,
  .details-modal__success.is-visible .details-modal__eyebrow,
  .details-modal__success.is-visible .details-modal__title,
  .details-modal__success.is-visible .details-modal__lead,
  .details-modal__success.is-visible .details-modal__hours,
  .details-modal__success.is-visible .details-modal__success-btn {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .details-modal__success-check {
    stroke-dashoffset: 0;
  }
}

/* Privacy policy page */
.privacy-page {
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 50% 40% at 8% 0%, rgba(168, 217, 58, 0.16), transparent 55%),
    var(--paper);
  color: var(--ink);
}

.privacy-top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 1.75rem);
  background: rgba(243, 247, 239, 0.92);
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.privacy-top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-top__brand img {
  display: block;
  width: 40px;
  height: 40px;
}

.privacy-top__download {
  flex-shrink: 0;
  text-decoration: none;
}

.privacy-doc {
  width: min(100% - 2rem, 46rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.privacy-doc__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.privacy-doc__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
}

.privacy-doc__head h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-wrap: balance;
}

.privacy-doc__lead {
  margin: 0 0 1.1rem;
  color: var(--slate);
  line-height: 1.45;
}

.privacy-doc__actions {
  margin: 0;
}

.privacy-doc__section {
  margin: 0 0 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(28, 36, 32, 0.07);
}

.privacy-doc__section h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.privacy-doc__section p {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 88%, var(--slate));
}

.privacy-doc__section p:last-child {
  margin-bottom: 0;
}

.privacy-doc__foot {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.55rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.privacy-doc__foot a {
  color: var(--lime-deep);
  font-weight: 700;
}

@media (max-width: 480px) {
  .privacy-top__brand span {
    font-size: 0.95rem;
  }

  .privacy-top__download {
    font-size: 0.85rem;
    padding-inline: 0.9rem;
  }
}

/* ——— Responsive polish (Bootstrap ideas → WellFoods contract) ——— */
.u-stack-sm {
  display: grid;
  gap: var(--wf-space-2);
}

.catalog__viewport,
.prod-tabs {
  max-width: 100%;
}

.catalog__track {
  min-width: 0;
}

.hero__product img,
.ingredients-hero__cell img,
.ingredients-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .catalog-page__hero {
    min-height: min(64dvh, 520px);
    padding-top: calc(5.5rem + var(--wf-space-3));
  }

  .catalog-page__actions {
    display: grid;
    gap: var(--wf-space-2);
    width: min(100%, 22rem);
  }

  .product-page__grid {
    gap: var(--wf-space-4);
  }

  .ingredients-fab {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
  }

  .ingredients-delivery__modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredients-page .ingredients-convert,
  .ingredients-page .ingredients-faq,
  .ingredients-page .ingredients-cases {
    padding-bottom: calc(var(--wf-space-5) + 3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .privacy-doc {
    padding-inline: var(--wf-section-x);
  }
}

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

  .product-page__stage {
    max-width: min(100%, 28rem);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .catalog-page__actions {
    width: 100%;
  }

  .catalog-page__actions .btn,
  .product-page__cta .btn,
  .ingredients-process__btn,
  .ingredients-faq__btn,
  .ingredients-cases__btn,
  .ingredients-why__cta .btn,
  .ingredients-convert__submit,
  .ingredients-convert__success .btn {
    width: 100%;
    justify-content: center;
  }

  .ingredients-convert__success .btn {
    width: 100%;
  }

  .ingredients-sku-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-delivery__modes {
    grid-template-columns: 1fr;
  }

  .privacy-top {
    flex-wrap: wrap;
    padding-inline: var(--wf-section-x);
  }

  .privacy-doc__head h1 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    max-width: 18ch;
  }

  .privacy-doc__section p,
  .privacy-doc__lead {
    font-size: var(--wf-type-body);
    max-width: 62ch;
  }

  .prod-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .prod-tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .ingredients-trust__metrics {
    grid-template-columns: 1fr;
  }

  .ingredients-hero__photo-grid {
    height: clamp(12.5rem, 38dvh, 18rem);
  }

  .ingredients-fab__btn {
    width: 3.15rem;
    height: 3.15rem;
  }

  .privacy-doc__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-height: 640px) and (max-width: 1100px) {
  main.ingredients-page > section.ingredients-hero,
  .ingredients-page .ingredients-hero {
    min-height: 0 !important;
  }
}
