/* =========================================================
   Home — Premium Hero (Medvi-inspired: dark block, big serif accent,
   overlapping category cards, scrolling marquee below)
   ========================================================= */
.hero-premium {
  position: relative;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(43,107,255,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--brand-900) 100%);
  color: #fff;
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: 0;
  text-align: center;
  /* overflow-x: clip prevents horizontal scroll from the wordmark watermark,
     but lets the hero-cards spill BELOW into the next section (their negative
     margin-bottom was being clipped when this was overflow: hidden). */
  overflow-x: clip;
}
.hero-premium::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 100% 100%, rgba(225,169,58,0.10), transparent 60%),
    radial-gradient(40% 50% at 0% 0%, rgba(91,141,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero-premium > .container { position: relative; z-index: 2; }

.hero-premium__caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero-premium__caption strong { color: #fff; font-weight: 800; }
.hero-premium__caption .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--honey-500);
  box-shadow: 0 0 0 4px rgba(225,169,58,0.18);
}

.hero-premium h1 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.6vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 28px auto 0;
  max-width: 16ch;
}
.hero-premium h1 .accent {
  color: var(--brand-400);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hero-premium__lead {
  color: rgba(255,255,255,0.74);
  font-size: var(--fs-md);
  line-height: 1.6;
  margin: 28px auto 0;
  max-width: 56ch;
}

.hero-premium__cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* Big background wordmark — premium watermark like Medvi */
.hero-premium__wordmark {
  position: absolute;
  left: 50%; bottom: 200px;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 22rem);
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  line-height: 1;
}

/* Category cards spilling out of the hero. Extra top margin gives the
   bursting portraits room to extend above the cards without colliding with
   the hero h1/CTAs. Narrower max-width than the page container so the
   cards stay compact and centered. */
.hero-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1320px;
  margin: clamp(96px, 11vw, 152px) auto -120px;
  padding: 0 var(--gutter);
}
@media (max-width: 980px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); margin-bottom: -80px; }
}
@media (max-width: 540px) {
  .hero-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
}

.hero-card {
  position: relative;
  background: var(--card-bg, var(--brand-100));
  border-radius: 18px;
  padding: 12px;
  display: flex; flex-direction: column;
  gap: 10px;
  color: var(--ink-900);
  /* overflow: visible so the lifestyle portrait can break out the top of the card */
  overflow: visible;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  text-decoration: none;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.22);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 32px 64px -16px rgba(0,0,0,0.3); }

.hero-card__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  /* Visual area is now the "frame" the image breaks out of — overflow allowed
     so the image can extend above. CSS bottle-art fallback stays centered. */
  overflow: visible;
  border-radius: 14px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.hero-card__visual .bottle-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52%; height: 90%;
  box-shadow: 0 20px 40px -10px rgba(11,23,51,0.35);
}
.hero-card__visual img {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;                    /* taller than frame — subject extends ~30% above */
  object-fit: cover;               /* fill the box, crop sides — restores the burst-out */
  object-position: center bottom;  /* head/product anchored to bottom; top extends above */
  display: block;
  border-radius: 14px;             /* image corners match the card's inner radius */
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
}
/* Card with a real photo: drop the inner-panel tint so the image reads as a
   single rectangle bursting out of the card, not nested inside a second frame. */
.hero-card.has-photo .hero-card__visual { background: transparent; }

/* Product-photography variant — packaging shots come on white backgrounds, so
   we want the whole product visible (not cover-cropped like the lifestyle tiles).
   Keep the soft tinted panel as the backdrop and contain the image inside it. */
.hero-card--product .hero-card__visual {
  background: var(--card-bg, var(--brand-50)) !important;
  overflow: hidden;
  border-radius: 14px;
}
.hero-card--product .hero-card__visual img {
  position: absolute;
  inset: 1%;
  width: 98%;
  height: 98%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  filter: drop-shadow(0 14px 22px rgba(11, 23, 51, 0.22));
}

/* Lifestyle cutout variant — the person/product breaks OUT of the top of the
   card (overflow visible). Used for transparent lifestyle PNGs. */
.hero-card--portrait { overflow: visible; }
.hero-card--portrait .hero-card__visual {
  overflow: visible;
  background: transparent;
}
.hero-card--portrait .hero-card__visual img {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: auto;                    /* natural aspect — never cropped */
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 16px 26px rgba(11, 23, 51, 0.20));
}

/* Title row — Medvi-style: name on the left, dark circular arrow on the right.
   Always visible because it sits BELOW the fixed-aspect visual, never overlapping. */
.hero-card__title {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 4px 4px 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.15;
  min-height: 38px;
}
.hero-card__title span {
  display: inline-block;
  max-width: calc(100% - 44px);
}
.hero-card__title svg {
  width: 32px; height: 32px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 50%;
  padding: 8px;
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.hero-card:hover .hero-card__title svg { transform: translateX(4px); }

@media (max-width: 1100px) {
  .hero-card__title { font-size: 16px; }
  .hero-card__title svg { width: 32px; height: 32px; padding: 8px; }
}
@media (max-width: 540px) {
  .hero-card { padding: 12px; border-radius: 18px; gap: 10px; }
  .hero-card__title { font-size: 14px; padding: 4px 4px 6px; min-height: 36px; }
  .hero-card__title svg { width: 28px; height: 28px; padding: 7px; }
}

/* Scrolling trust marquee — premium D2C strip */
.marquee {
  background: var(--canvas);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  margin-top: 156px;
}
@media (max-width: 980px) { .marquee { margin-top: 110px; } }
.marquee__track {
  display: flex;
  gap: 64px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--slate-700);
  flex-shrink: 0;
}
.marquee__item svg { width: 18px; height: 18px; color: var(--brand-600); }
.marquee__sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-200);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* =========================================================
   "The process is the proof" — Origins-inspired editorial banner
   ========================================================= */
.process {
  position: relative;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(43,107,255,0.18), transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(225,169,58,0.10), transparent 60%),
    var(--ink-900);
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}
.process__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 880px) { .process__head { grid-template-columns: 1fr; } }
.process h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, var(--fs-3xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 16ch;
}
.process h2 em {
  color: var(--brand-400);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.process__head p {
  color: rgba(255,255,255,0.74);
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 50ch;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  left: 4%; right: 4%; top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,141,255,0.4), transparent);
  z-index: 0;
}
@media (max-width: 980px) { .process__steps { grid-template-columns: repeat(4, 1fr); } .process__steps::before { display: none; } }
@media (max-width: 600px) { .process__steps { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 400px) { .process__steps { grid-template-columns: 1fr; gap: 14px; } }

.process-step {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.process-step__node {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 1.5px solid rgba(91,141,255,0.45);
  display: grid; place-items: center;
  color: var(--brand-400);
  position: relative;
}
.process-step__node strong {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.process-step__node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(91,141,255,0.22);
}
.process-step h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 14ch;
}
.process-step p {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =========================================================
   Certifications — visual badges row (Origins-style)
   ========================================================= */
.certs {
  background: var(--bone);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}
.certs__head { text-align: center; margin-bottom: 48px; }
.certs__head h2 {
  font-size: clamp(1.75rem, 3vw, var(--fs-2xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 24ch;
  margin: 16px auto 0;
}
.certs__head h2 em { font-family: var(--font-display); font-style: italic; color: var(--brand-700); font-weight: 400; }
.certs__head p { color: var(--slate-600); margin: 16px auto 0; max-width: 56ch; font-size: var(--fs-md); line-height: 1.6; }

.certs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 980px) { .certs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .certs__grid { grid-template-columns: repeat(2, 1fr); } }

.cert-badge {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.cert-badge__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid; place-items: center;
  position: relative;
}
.cert-badge__icon::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 18px;
  border: 1.5px dashed var(--brand-200);
}
.cert-badge__icon svg { width: 26px; height: 26px; }
.cert-badge h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.25;
  max-width: 14ch;
}
.cert-badge p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
}

/* =========================================================
   Home — Hero (legacy, kept for back-compat)
   ========================================================= */
.hero {
  position: relative;
  background: var(--bone);
  color: var(--ink-900);
  overflow: hidden;
  padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 8vw, 96px);
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 {
  color: var(--ink-900);
  font-size: clamp(2.6rem, 6.4vw, var(--fs-5xl));
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--brand-700);
  font-weight: 400;
}
.hero__lead {
  margin-top: 28px;
  color: var(--slate-600);
  font-size: var(--fs-md);
  line-height: 1.65;
  max-width: 50ch;
}
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__chips {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 13px; color: var(--slate-700);
  font-weight: 600;
}
.hero__chips span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__chips span svg {
  width: 18px; height: 18px; color: var(--brand-600);
}

.hero__meta {
  margin-top: 48px;
  display: flex; gap: clamp(20px, 3vw, 48px);
  padding-top: 28px;
  border-top: 1px solid rgba(11, 23, 51, 0.10);
}
.hero__meta div {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-500);
}
.hero__meta strong {
  display: block;
  color: var(--ink-900);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 4px;
  letter-spacing: -0.025em;
  text-transform: none;
  font-weight: 800;
}

/* Hero visual: product on a big blue blob */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-left: auto;
}
.hero__blob {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--brand-100) 0%, var(--brand-200) 60%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero__bottle {
  position: absolute;
  width: 56%;
  aspect-ratio: 1 / 1.6;
  border-radius: 22px 22px 38px 38px / 22px 22px 80px 80px;
  background: linear-gradient(160deg, var(--brand-700), var(--brand-900));
  box-shadow:
    inset -22px -16px 60px rgba(0,0,0,0.45),
    inset 22px 12px 40px rgba(255,255,255,0.10),
    0 50px 90px -30px rgba(6,37,90,0.5),
    0 0 0 1px rgba(43,107,255,0.18);
  overflow: hidden;
  z-index: 2;
}
.hero__bottle::before {
  content: ""; position: absolute;
  top: -7%; left: 50%; transform: translateX(-50%);
  width: 32%; height: 14%;
  background: linear-gradient(180deg, #1a2647, #0a1424);
  border-radius: 8px 8px 5px 5px;
}
.hero__bottle .label {
  position: absolute; left: 12%; right: 12%; top: 26%; bottom: 12%;
  background: #fff;
  border-radius: 6px;
  padding: 8% 8%;
  display: flex; flex-direction: column;
  text-align: center; align-items: center;
  color: var(--ink-900);
}
.hero__bottle .label .l-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand-700);
}
.hero__bottle .label .l-title {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.02; margin-top: 12px;
  letter-spacing: -0.025em;
}
.hero__bottle .label .l-rule { width: 30px; height: 3px; background: var(--brand-600); border-radius: 3px; margin: 14px 0; }
.hero__bottle .label .l-meta { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--slate-500); }
.hero__bottle--front { left: 12%; top: 10%; z-index: 3; }
.hero__bottle--back  {
  right: 4%; bottom: 4%; z-index: 1;
  width: 44%; transform: rotate(8deg);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  opacity: 0.85;
}

/* Floating ingredient chips around hero */
.hero__chip-float {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 14px 30px rgba(11, 23, 51, 0.15));
}
.hero__chip-float--1 { top: 12%; right: 6%; }
.hero__chip-float--2 { bottom: 18%; left: -2%; }

@media (max-width: 980px) { .hero__visual { display: none; } }

/* =========================================================
   Trust strip — clean white pills under hero
   ========================================================= */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: hidden;
  margin-top: -64px;
  position: relative; z-index: 4;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-item {
  padding: 22px 22px;
  display: flex; gap: 14px; align-items: center;
  border-right: 1px solid var(--line-soft);
}
.trust-item:nth-child(4n) { border-right: 0; }
@media (max-width: 760px) {
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 420px) {
  .trust-item { padding: 16px 18px; border-right: 0; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
}
.trust-item__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 12px;
  flex: 0 0 auto;
}
.trust-item__icon svg { width: 20px; height: 20px; }
.trust-item h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--ink-900); letter-spacing: -0.01em; }
.trust-item p { font-size: 12px; color: var(--slate-500); line-height: 1.45; }

/* =========================================================
   Section headers — bold left-aligned default
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; } }
.section-head h2 { max-width: 22ch; }
.section-head p { color: var(--slate-500); max-width: 40ch; margin-top: 14px; font-size: 15px; }

/* =========================================================
   Category tiles — D2C: bold colored card, big bottle
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .category-grid { grid-template-columns: 1fr; gap: 12px; } }

.cat-tile {
  position: relative;
  display: flex; flex-direction: column;
  aspect-ratio: 5 / 7;
  padding: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--ink-900);
  background: var(--cat-bg, var(--brand-100));
  transition: transform var(--t-base) var(--ease);
  text-decoration: none;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-tile__bottle {
  position: absolute;
  right: -10%; bottom: -8%;
  width: 70%; aspect-ratio: 1/1.5;
  border-radius: 14px 14px 28px 28px / 14px 14px 60px 60px;
  background: linear-gradient(160deg, rgba(11, 23, 51, 0.85), rgba(11, 23, 51, 1));
  box-shadow: inset -12px -8px 32px rgba(0,0,0,0.4), 0 30px 50px -18px rgba(0,0,0,0.4);
  transform: rotate(-8deg);
}

/* Photo variant — anchor product packaging replaces the abstract bottle.
   The image is alpha-cut so we drop the rectangular gradient and let the
   product float against the card tint.

   In-flow media region between the title and the CTA. Taking the photo
   out of absolute positioning means it can never overlap the eyebrow,
   title or "Shop now" link. `flex: 1` makes every tile reserve the same
   media box regardless of the product's aspect ratio; mixed ratios
   (tall bottles vs. wide boxes) all `contain` inside it, centred
   horizontally and sharing one bottom baseline. */
.cat-tile__photo {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 14px 0 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 22px rgba(11, 23, 51, 0.22));
  transition: transform var(--t-slow) var(--ease);
  pointer-events: none;
}
.cat-tile--photo:hover .cat-tile__photo {
  transform: translateY(-6px) scale(1.04);
}
@media (max-width: 700px) {
  .cat-tile__photo { margin: 10px 0 4px; }
}
.cat-tile__top { position: relative; z-index: 1; }
.cat-tile__top .eyebrow { color: var(--ink-900); opacity: 0.65; }
.cat-tile h3 {
  position: relative; z-index: 1;
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 8ch;
}
.cat-tile__cta {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-900);
  margin-top: auto;
  padding-top: 14px;
}
.cat-tile:hover .cat-tile__cta { color: var(--brand-700); }

/* =========================================================
   Product grid (Featured / Bestsellers)
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* =========================================================
   Editorial split (story / science)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--brand-200), var(--brand-100));
  overflow: hidden;
}
.split__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.split__bottle {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 40%; aspect-ratio: 1/1.7;
  border-radius: 20px 20px 36px 36px;
  background: linear-gradient(160deg, var(--brand-700), var(--brand-900));
  box-shadow: 0 30px 60px rgba(11,23,51,0.45);
}
.split__bottle::before {
  content: ""; position: absolute; top: -6%; left: 50%; transform: translateX(-50%);
  width: 36%; height: 12%;
  background: var(--ink-900); border-radius: 4px 4px 2px 2px;
}
.split__bottle::after {
  content: ""; position: absolute; left: 14%; right: 14%; top: 30%; bottom: 12%;
  background: #fff;
  border-radius: 4px;
}

.science-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 0; }
.science-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.science-list li:first-child { border-top: 1px solid var(--ink-900); }
.science-list .num {
  font-family: var(--font-sans);
  color: var(--brand-600);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.science-list h3, .science-list h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.015em; }
.science-list p { color: var(--slate-600); font-size: 14px; line-height: 1.6; }

/* =========================================================
   Ingredient spotlight section (Minimalist-inspired)
   ========================================================= */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(48px, 6vw, 96px);
  border-radius: var(--r-2xl);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .spotlight { grid-template-columns: 1fr; padding: 48px 32px; } }
@media (max-width: 480px) { .spotlight { padding: 32px 20px; border-radius: 18px; } }
.spotlight__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
  overflow: visible;
}
.spotlight__visual::before {
  content: "";
  position: absolute; inset: 12%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 30px 60px -10px rgba(11,23,51,0.15);
  pointer-events: none;
}
.spotlight__visual .bottle-art { width: 50%; height: 80%; position: relative; z-index: 1; }
.spotlight__photo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 1;
}
.spotlight__photo img {
  position: absolute; inset: 0;
  margin: auto;
  width: 66%; height: 66%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(11, 23, 51, 0.22));
}

/* SVG arrow lines connecting each callout to the bottle */
.spotlight__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.spotlight__lines path {
  stroke: var(--brand-600);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
  fill: none;
  stroke-linecap: round;
  opacity: 0.55;
  animation: spot-dash 24s linear infinite;
}
.spotlight__lines circle {
  fill: var(--brand-600);
  animation: spot-dot 2.4s ease-in-out infinite;
}
@keyframes spot-dash {
  to { stroke-dashoffset: -100; }
}
@keyframes spot-dot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
  .spotlight__lines path,
  .spotlight__lines circle { animation: none; }
}

/* Benefit callout pills */
.spotlight__callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.callout {
  position: absolute;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px -10px rgba(11, 23, 51, 0.20), 0 1px 2px rgba(11,23,51,0.06);
  border: 1px solid rgba(11, 23, 51, 0.05);
  max-width: 180px;
  opacity: 0;
  transform: translateY(8px);
  animation: calloutIn 600ms var(--ease-out) forwards;
  pointer-events: auto;
}
.callout--ink {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}
.callout--gold {
  background: var(--honey-500);
  color: var(--ink-900);
  border-color: var(--honey-500);
}

.callout--1 { top: 6%;   left: -4%;   animation-delay: 0.30s; }
.callout--2 { top: 4%;   right: -4%;  animation-delay: 0.50s; }
.callout--3 { bottom: 22%; left: -8%; animation-delay: 0.70s; }
.callout--4 { bottom: 8%;  right: -6%; animation-delay: 0.90s; }

/* Front-facing callout gets a stronger highlight; JS adds .is-active when its
   anchor is on the visible side of the rotating bottle. */
.callout.is-active {
  box-shadow: 0 18px 36px -10px rgba(26, 86, 219, 0.35), 0 0 0 1px rgba(43,107,255,0.30);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.callout.is-active .callout__num {
  box-shadow: 0 0 0 4px rgba(43, 107, 255, 0.18);
}
.callout.is-active.callout--gold .callout__num {
  box-shadow: 0 0 0 4px rgba(225, 169, 58, 0.25);
}

/* Active arrow line + dot are bolder when their anchor faces the viewer */
.spotlight__lines path[data-callout].is-active,
.spotlight__lines circle[data-callout].is-active { opacity: 0.9 !important; }

@media (max-width: 880px) {
  .callout { max-width: 150px; padding: 8px 12px; font-size: 11px; }
  .callout--1 { left: 0; }
  .callout--2 { right: 0; }
  .callout--3 { left: 0; }
  .callout--4 { right: 0; }
}

.callout__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.callout--ink .callout__num  { background: var(--brand-500); }
.callout--gold .callout__num { background: var(--ink-900); color: var(--honey-500); }

.callout__text { line-height: 1.2; }
.callout__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.callout--ink  .callout__text strong,
.callout--gold .callout__text strong { color: inherit; }
.callout__text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 3px;
}
.callout--ink  .callout__text small { color: rgba(255,255,255,0.6); }
.callout--gold .callout__text small { color: rgba(11,23,51,0.7); }

@keyframes calloutIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .callout { opacity: 1; transform: none; animation: none; }
}

/* Legacy chip wrappers — keep so old markup still renders if used elsewhere */
.spotlight__chips {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 4;
}
.spotlight__chip {
  position: absolute;
  background: var(--ink-900); color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: 0 14px 28px -8px rgba(11,23,51,0.3);
}
.spotlight__chip--1 { top: 8%; right: 4%; }
.spotlight__chip--2 { top: 38%; left: 0%; background: #fff; color: var(--ink-900); border: 1.5px solid var(--ink-900); }
.spotlight__chip--3 { bottom: 14%; right: 0%; background: var(--honey-500); color: var(--ink-900); }

.spotlight h2 { font-size: clamp(2rem, 4vw, var(--fs-2xl)); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.spotlight p { color: var(--slate-700); margin-top: 18px; max-width: 48ch; font-size: var(--fs-md); line-height: 1.6; }
.spotlight__list {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: grid; gap: 14px;
}
.spotlight__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-900); font-weight: 500;
}
.spotlight__list svg {
  width: 22px; height: 22px; color: var(--brand-600); flex-shrink: 0; margin-top: 1px;
}

/* =========================================================
   How it works (3 steps)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--brand-600);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.step p { color: var(--slate-600); font-size: 14px; line-height: 1.6; }

/* =========================================================
   Reviews wall — "Raving about us" (mixed text + video tiles)
   Horizontal scroll with snap on desktop, swipe-able on mobile.
   ========================================================= */
.reviews {
  background: var(--bone);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow-x: clip;     /* allow vertical content to grow but no horizontal scroll */
}
.reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .reviews__head { grid-template-columns: 1fr; } }
.reviews__head h2 {
  font-size: clamp(2rem, 4.4vw, var(--fs-3xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 18ch;
}
.reviews__head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-700);
  font-weight: 400;
}

.reviews__rating {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.reviews__rating .score {
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}
.reviews__rating .score small {
  color: var(--slate-400);
  font-size: 18px;
  font-weight: 600;
  margin-left: 2px;
}
.reviews__rating .stars { color: var(--honey-500); font-size: 16px; letter-spacing: 2px; line-height: 1; margin-bottom: 4px; }
.reviews__rating .meta { font-size: 12px; color: var(--slate-600); font-weight: 600; }
.reviews__rating .meta strong { color: var(--ink-900); }

/* Full-bleed masonry wall — cards size to their own content (CSS columns) */
.reviews-wall {
  columns: 5;
  column-gap: 16px;
  padding: 8px clamp(16px, 2.5vw, 32px) 8px;
  margin-top: 24px;
}
@media (max-width: 1500px) { .reviews-wall { columns: 4; } }
@media (max-width: 1180px) { .reviews-wall { columns: 3; } }
@media (max-width: 820px)  { .reviews-wall { columns: 2; } }
@media (max-width: 540px)  { .reviews-wall { columns: 1; } }

/* Reviews CTA row (Write a review + View all) */
.reviews__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews__cta .btn--disabled {
  background: var(--slate-100);
  color: var(--slate-500);
  border-color: var(--slate-200);
  cursor: not-allowed;
  position: relative;
}
.reviews__cta .btn--disabled:hover {
  background: var(--slate-100);
  color: var(--slate-500);
  transform: none;
  box-shadow: none;
}
.reviews__cta .btn--disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 8px 12px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
}
.reviews__cta .btn--disabled:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bottom "View all reviews" row */
.reviews__view-all {
  display: flex; justify-content: center;
  margin-top: 32px;
  padding: 0 var(--gutter);
}
.reviews__view-all a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: #fff;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  transition: all var(--t-fast);
}
.reviews__view-all a:hover {
  background: var(--ink-900);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(11,23,51,0.3);
}
.reviews__view-all a strong { font-weight: 800; color: var(--brand-700); }
.reviews__view-all a:hover strong { color: var(--honey-500); }
.reviews__view-all a svg { width: 16px; height: 16px; }

/* =========================================================
   Review submission modal
   ========================================================= */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 23, 51, 0.55);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
  padding: 24px;
}
.review-modal.is-open { opacity: 1; pointer-events: auto; }
.review-modal__panel {
  width: min(92vw, 480px);
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(16px) scale(0.96);
  transition: transform 240ms var(--ease-out);
  box-shadow: 0 40px 80px rgba(11, 23, 51, 0.4);
}
.review-modal.is-open .review-modal__panel { transform: none; }

.review-modal__header {
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.review-modal__header h2 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.review-modal__header p {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.review-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--slate-600);
  transition: background var(--t-fast);
}
.review-modal__close:hover { background: var(--mist); color: var(--ink-900); }
.review-modal__close svg { width: 18px; height: 18px; }

.review-modal__body {
  padding: 24px 26px 26px;
  overflow-y: auto;
  display: grid; gap: 18px;
}

.rating-picker {
  border: 0; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.rating-picker legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 4px;
  padding: 0;
}
.rating-stars {
  display: inline-flex; gap: 4px;
}
.rating-stars button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  font-size: 28px;
  line-height: 1;
  color: var(--slate-300);
  background: transparent;
  border-radius: 8px;
  transition: color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.rating-stars button:hover { color: var(--honey-500); transform: scale(1.1); background: var(--honey-50); }
.rating-stars button.is-on { color: var(--honey-500); }
.rating-stars button:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }

.review-modal__hint {
  background: var(--brand-50);
  border-left: 3px solid var(--brand-600);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--brand-700);
  font-weight: 600;
  line-height: 1.4;
}
.review-modal__hint svg { width: 14px; height: 14px; flex-shrink: 0; vertical-align: -2px; margin-right: 4px; }
.review-modal__hint strong { font-weight: 800; }

.review-modal__footer {
  padding: 18px 26px 22px;
  border-top: 1px solid var(--line);
  background: var(--canvas);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.review-modal__footer .meta { font-size: 11px; color: var(--slate-500); font-weight: 500; }

.review-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  margin: 0 0 16px;
  background: var(--rc-bg, #fff);
  border-radius: 18px;
  border: 1px solid rgba(11, 23, 51, 0.06);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  text-decoration: none;
  color: inherit;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(11, 23, 51, 0.22);
}

.review-card__inner { padding: 22px 22px 18px; }

/* Header row (avatar + name + verified) */
.review-card__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--av-1, var(--brand-400)), var(--av-2, var(--brand-700)));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.review-card__who { min-width: 0; }
.review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.review-card__verified {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 2px;
}
.review-card__verified svg { color: var(--success); width: 11px; height: 11px; flex-shrink: 0; }

.review-card__stars {
  color: var(--honey-500);
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 12px;
}

.review-card__quote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
}
.review-card__quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0;
  color: var(--brand-600);
  margin-right: 4px;
  vertical-align: -10px;
  font-weight: 500;
}

.review-card__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 23, 51, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--slate-600);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.review-card__product {
  display: inline-flex; align-items: center; gap: 6px;
  min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.review-card__product svg { width: 13px; height: 13px; color: var(--brand-600); flex-shrink: 0; }
.review-card__date {
  color: var(--slate-400);
  flex-shrink: 0;
  font-weight: 600;
  font-size: 10px;
}

/* ----- Video variant — compact thumbnail above body ----- */
.review-card--video { background: #fff; cursor: pointer; }
.review-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, var(--c1, var(--brand-700)), var(--c2, var(--ink-900)));
  overflow: hidden;
}
.review-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(255,255,255,0.28), transparent 50%),
    radial-gradient(circle at 78% 76%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.review-thumb__overlay {
  /* gentle vignette so text/badge stay legible */
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.review-thumb__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 9px;
  background: rgba(255,255,255,0.96);
  color: var(--ink-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 2;
}
.review-thumb__badge svg { width: 9px; height: 9px; color: var(--brand-700); }

.review-thumb__duration {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 3px 7px;
  background: rgba(0,0,0,0.66);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-radius: 3px;
  z-index: 2;
}

.review-thumb__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--ink-900);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
  transition: transform 220ms var(--ease);
  z-index: 2;
}
.review-card--video:hover .review-thumb__play {
  transform: translate(-50%, -50%) scale(1.10);
}
.review-thumb__play svg { width: 18px; height: 18px; margin-left: 2px; }

/* Tighter padding for the body of video cards (thumbnail provides hierarchy) */
.review-card--video .review-card__inner { padding: 16px 20px 18px; }
.review-card--video .review-card__head { margin-bottom: 8px; }
.review-card--video .review-card__quote { font-size: 13.5px; }

/* =========================================================
   Video review modal (lightbox)
   ========================================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11, 23, 51, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
  padding: 24px;
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.video-modal__panel {
  width: min(90vw, 440px);
  aspect-ratio: 9/16;
  max-height: calc(100vh - 48px);
  background: linear-gradient(160deg, var(--vm-1, var(--brand-700)), var(--vm-2, var(--ink-900)));
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transform: scale(0.94);
  transition: transform 220ms var(--ease-out);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
.video-modal.is-open .video-modal__panel { transform: scale(1); }
.video-modal__panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(35% 25% at 50% 25%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(0,0,0,0.5), transparent 60%);
}
.video-modal__panel::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56%; height: 60%;
  background:
    radial-gradient(50% 40% at 50% 30%, rgba(0,0,0,0.18), transparent 70%),
    radial-gradient(70% 100% at 50% 100%, rgba(0,0,0,0.4), transparent 60%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}
.video-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: grid; place-items: center;
  z-index: 3;
  transition: background var(--t-fast);
}
.video-modal__close:hover { background: rgba(0,0,0,0.85); }
.video-modal__close svg { width: 18px; height: 18px; }

.video-modal__playing {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-modal__playing .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EF4444;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 0 4px rgba(239,68,68,0.18); }
}

.video-modal__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent);
  color: #fff;
  z-index: 2;
}
.video-modal__caption .stars { color: var(--honey-500); font-size: 14px; letter-spacing: 2px; line-height: 1; margin-bottom: 10px; }
.video-modal__caption blockquote {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
}
.video-modal__caption .by {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.video-modal__caption .by small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* "Captions" pill that mimics video subtitle */
.video-modal__progress {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 3;
}
.video-modal__progress::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--brand-500);
  width: 0;
  animation: progress 22s linear forwards;
}
.video-modal.is-open .video-modal__progress::after { width: 100%; }
@keyframes progress { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .video-modal__progress::after, .review-card__play::after { animation: none; }
}

/* =========================================================
   Testimonials (legacy, kept for back-compat)
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px 30px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial .stars { color: var(--honey-500); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.testimonial blockquote p { display: inline; }
.testimonial__author {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-300, var(--brand-200)), var(--brand-700));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.testimonial__name { font-weight: 700; color: var(--ink-900); }
.testimonial__role { color: var(--slate-500); font-size: 12px; }

/* =========================================================
   Press strip
   ========================================================= */
.press {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 32px;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--slate-400);
}

/* =========================================================
   Journal preview
   ========================================================= */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.journal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.journal-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cover-1, var(--brand-700)), var(--cover-2, var(--ink-900)));
  position: relative;
  overflow: hidden;
}
.journal-card__cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 20%, rgba(255,255,255,0.10), transparent 60%);
}
.journal-card__body { padding: 26px 28px 30px; }
.journal-card__cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 12px;
}
.journal-card h3 { font-size: 18px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.02em; }
.journal-card p { color: var(--slate-600); font-size: 14px; line-height: 1.6; }
.journal-card__meta {
  margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--slate-500); font-weight: 500;
}

/* =========================================================
   "Care designed for women's health" — lifestyle section.
   Uses the existing brand palette + section/eyebrow/h-2/btn classes so it
   reads as part of the same home-page rhythm. The differentiation comes
   from the photography subject and the copy — not from a different palette.
   ========================================================= */
.for-her {
  background: var(--cream);                         /* matches ingredient-spotlight / about backgrounds */
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
  overflow: hidden;
}
.for-her::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 90% 10%, rgba(212,185,124,0.10), transparent 60%);
  pointer-events: none;
}

.for-her__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
}
@media (max-width: 880px) { .for-her__grid { grid-template-columns: 1fr; } }

.for-her__left { display: flex; flex-direction: column; gap: 28px; }

.for-her__hero-photo {
  background: var(--bone);
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.for-her__hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.for-her__benefits h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.for-her__benefits ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.for-her__benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.4;
}
.for-her__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-600);                     /* standard brand-blue (was rose) */
  color: #fff;
  display: grid; place-items: center;
}
.for-her__check svg { width: 12px; height: 12px; }

.for-her__right { display: flex; flex-direction: column; gap: 28px; }

.for-her__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.for-her__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bone);
}
.for-her__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.for-her__footer h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.for-her__footer p {
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}

/* =========================================================
   CTA banner — bold ink block
   ========================================================= */
.cta-banner {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(43,107,255,0.35), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(225,169,58,0.15), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.875rem, 3.4vw, var(--fs-2xl)); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.cta-banner h2 em { color: var(--honey-500); font-style: italic; font-family: var(--font-display); font-weight: 400; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: 18px; max-width: 50ch; font-size: 15px; line-height: 1.6; }
.cta-banner__form { display: flex; gap: 8px; min-width: 0; }
.cta-banner__form input {
  flex: 1;
  min-width: 0;                /* allow shrink below intrinsic placeholder width */
  padding: 16px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.cta-banner__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-banner__form input:focus { outline: none; border-color: var(--brand-500); }
.cta-banner__form .btn { flex-shrink: 0; }
@media (max-width: 880px) { .cta-banner { grid-template-columns: 1fr; } }
@media (max-width: 540px) {
  .cta-banner { padding: 40px 24px; border-radius: 18px; }
  .cta-banner__form { flex-direction: column; gap: 10px; }
  .cta-banner__form .btn { width: 100%; }
}

/* =========================================================
   Shop / Filter sidebar
   ========================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);  /* minmax(0,1fr) prevents grid items from overflowing */
  gap: 48px;
  align-items: flex-start;
}
.shop-layout > * { min-width: 0; }
@media (max-width: 980px) { .shop-layout { grid-template-columns: minmax(0, 1fr); } }
.filter-panel {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--paper);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .filter-panel { position: static; } }
.filter-panel h2,
.filter-panel h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-900);
  margin-bottom: 14px;
  font-weight: 700;
}
.filter-group { padding: 18px 0; border-top: 1px solid var(--line-soft); }
.filter-group:first-of-type { border-top: 0; padding-top: 0; }
.filter-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.filter-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  cursor: pointer;
  color: var(--slate-700);
  font-weight: 500;
}
.filter-group label:hover { color: var(--ink-900); }
.filter-group input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--slate-300);
  border-radius: 5px;
  display: inline-grid; place-items: center;
  flex: 0 0 auto;
  transition: all var(--t-fast);
}
.filter-group input[type="checkbox"]:checked {
  background: var(--brand-600); border-color: var(--brand-600);
}
.filter-group input[type="checkbox"]:checked::after {
  content: ""; width: 5px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.filter-group label .count { margin-left: auto; color: var(--slate-400); font-size: 12px; font-weight: 600; }

.range-display { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate-600); margin-top: 6px; font-weight: 600; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.shop-toolbar select {
  padding: 10px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  background: var(--paper);
}

.results-meta { font-size: 14px; color: var(--slate-600); font-weight: 500; }
.results-meta strong { color: var(--ink-900); font-weight: 800; }

.empty-state { padding: 80px 24px; text-align: center; color: var(--slate-500); }
.empty-state h3 { color: var(--ink-900); margin-bottom: 8px; font-weight: 700; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 56px;
}
.pagination button,
.pagination a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  transition: all var(--t-fast);
  background: #fff;
}
.pagination button:hover,
.pagination a:hover { border-color: var(--ink-900); }
.pagination button.is-active,
.pagination a.is-active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.pagination button[disabled] { opacity: 0.4; cursor: not-allowed; }

/* =========================================================
   Product detail (PDP)
   ========================================================= */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: flex-start;
}
@media (max-width: 980px) { .pdp { grid-template-columns: 1fr; } }
.pdp__media {
  position: sticky; top: calc(var(--header-h) + 24px);
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 980px) { .pdp__media { position: static; } }

.pdp-gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: var(--r-xl);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.pdp-gallery__main::before {
  content: ""; position: absolute; inset: 12% 14%;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
}
.pdp-gallery__main.has-photo::before { display: none; }
.pdp-gallery__main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 4%;
  box-sizing: border-box;
  object-fit: contain;
  display: block;
  z-index: 1;
  transition: transform 320ms var(--ease);
  transform-origin: center;
  will-change: transform;
}
.pdp-gallery__main .bottle-art { width: 48%; height: 80%; position: relative; z-index: 1; }

/* Shopify-style hover zoom — on hover the main image magnifies toward the
   cursor. initPdpZoom() (app.js) adds .is-zoomed and tracks transform-origin
   to the pointer position; the container's overflow:hidden frames the view. */
@media (hover: hover) and (pointer: fine) {
  .pdp-gallery__main.has-photo {
    cursor: zoom-in;
  }
  .pdp-gallery__main.has-photo.is-zoomed img {
    transform: scale(2.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-gallery__main img { transition: none; }
  .pdp-gallery__main.is-zoomed img { transform: none; }
}

.pdp-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 80px));
  gap: 10px;
}
.pdp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--cream);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.pdp-thumb:hover { transform: translateY(-2px); }
.pdp-thumb.is-active { border-color: var(--brand-600); box-shadow: 0 4px 12px -4px rgba(26,86,219,0.35); }
.pdp-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  display: block;
  padding: 6%;
}

/* =========================================================
   PDP reviews block — review cards + write-a-review CTA
   ========================================================= */
.pdp-reviews {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(64px, 7vw, 96px);
  background: var(--bone);
}
.pdp-reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .pdp-reviews__head { grid-template-columns: 1fr; } }
.pdp-reviews__head h2 {
  font-size: clamp(1.75rem, 3.6vw, var(--fs-2xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 22ch;
}
.pdp-reviews__head h2 em { font-family: var(--font-display); font-style: italic; color: var(--brand-700); font-weight: 400; }
.pdp-reviews__rating {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
}
.pdp-reviews__rating .score {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
}
.pdp-reviews__rating .stars { color: var(--honey-500); font-size: 14px; letter-spacing: 1.5px; line-height: 1; margin-bottom: 4px; }
.pdp-reviews__rating .meta { font-size: 12px; color: var(--slate-600); font-weight: 600; }
.pdp-reviews__rating .meta strong { color: var(--ink-900); }

.pdp-reviews__cta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.pdp-reviews__cta .btn--disabled {
  background: var(--slate-100); color: var(--slate-500);
  border-color: var(--slate-200);
  cursor: not-allowed;
  position: relative;
}
.pdp-reviews__cta .btn--disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 8px 12px;
  background: var(--ink-900); color: #fff;
  border-radius: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 200ms, transform 200ms;
}
.pdp-reviews__cta .btn--disabled:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

.pdp-reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.pdp-reviews__empty {
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
}
.pdp-reviews__empty h3 { font-size: var(--fs-lg); margin-bottom: 8px; }
.pdp-reviews__empty p { color: var(--slate-500); }
.pdp h1 { font-size: clamp(2rem, 4.4vw, var(--fs-3xl)); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
.pdp__sub { color: var(--slate-500); font-size: 14px; margin-top: 10px; font-weight: 500; }
.pdp__rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14px; color: var(--slate-700); font-weight: 500; }
.pdp__rating .stars { color: var(--honey-500); }
.pdp__price {
  margin-top: 22px;
  display: flex; align-items: baseline; gap: 12px;
}
.pdp__price > span:first-child {
  font-family: var(--font-sans);
  font-size: clamp(1.875rem, 3vw, var(--fs-2xl));
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}
.pdp__price .was { font-size: 16px; color: var(--slate-400); text-decoration: line-through; font-weight: 600; }
.pdp__desc { color: var(--slate-600); margin-top: 18px; line-height: 1.65; font-size: 15px; }
.pdp__benefits {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 540px) { .pdp__benefits { grid-template-columns: 1fr; } }
.pdp__benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--slate-700); font-weight: 500;
}
.pdp__benefits li svg { width: 18px; height: 18px; color: var(--brand-600); flex: 0 0 auto; }
.pdp__certs { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.pdp__qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-pill);
  margin-right: 12px;
  background: #fff;
}
.pdp__qty button { width: 44px; height: 44px; border-radius: 50%; font-weight: 700; }
.pdp__qty span { width: 32px; text-align: center; font-weight: 700; }

/* Subscribe & save toggle */
.pdp__purchase {
  margin-top: 28px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pdp__purchase label {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  border-bottom: 1.5px solid var(--line);
  transition: background var(--t-fast);
}
.pdp__purchase label:last-of-type { border-bottom: 0; }
.pdp__purchase input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--slate-300);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.pdp__purchase input[type="radio"]:checked { border-color: var(--brand-600); }
.pdp__purchase input[type="radio"]:checked::after {
  content: ""; width: 10px; height: 10px;
  border-radius: 50%; background: var(--brand-600);
}
.pdp__purchase label:has(input:checked) { background: var(--brand-50); }
.pdp__purchase .opt-label { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.pdp__purchase .opt-meta  { color: var(--slate-500); font-size: 12px; margin-top: 2px; }
.pdp__purchase .opt-price { margin-left: auto; font-weight: 800; font-size: 16px; color: var(--ink-900); }
.pdp__purchase .opt-save  { color: var(--brand-700); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-left: 6px; }

.pdp__cta { margin-top: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.pdp__cta .btn { min-width: 220px; }
@media (max-width: 480px) {
  .pdp__cta { gap: 10px; }
  .pdp__cta .btn { min-width: 0; width: 100%; flex: 1 1 100%; }
  .pdp__qty { width: 100%; justify-content: space-between; margin-right: 0; }
  .pdp__qty button { width: 48px; height: 44px; }
  .pdp__purchase label { padding: 14px 14px; gap: 10px; }
  .pdp__purchase .opt-price { font-size: 15px; }
}

.pdp__panel {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.pdp__panel details { border-bottom: 1px solid var(--line); }
.pdp__panel summary {
  cursor: pointer; list-style: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.015em;
}
.pdp__panel summary::-webkit-details-marker { display: none; }
.pdp__panel summary::after {
  content: "+"; font-size: 24px; color: var(--brand-600); transition: transform var(--t-fast);
  font-weight: 400;
}
.pdp__panel details[open] summary::after { content: "−"; }
.pdp__panel .panel-body { padding-bottom: 24px; color: var(--slate-600); line-height: 1.65; font-size: 14px; }

.ingredients { width: 100%; border-collapse: collapse; font-size: 14px; }
.ingredients th, .ingredients td { padding: 12px 16px; text-align: left; }
.ingredients thead th {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-500); font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.ingredients tbody tr:not(:last-child) td { border-bottom: 1px solid var(--line-soft); }
.ingredients td:first-child { font-weight: 600; color: var(--ink-900); }

/* =========================================================
   About page
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.value-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-600); color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.value-card__icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.value-card p { color: var(--slate-600); font-size: 14px; line-height: 1.65; }

.timeline { display: grid; gap: 0; list-style: none; padding: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-year { font-family: var(--font-sans); font-size: clamp(1.75rem, 2.4vw, 2.5rem); font-weight: 800; color: var(--brand-600); line-height: 1; letter-spacing: -0.04em; }
.timeline-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em; }
.timeline-body p { color: var(--slate-600); font-size: 14px; line-height: 1.65; }
@media (max-width: 700px) { .timeline-item { grid-template-columns: 1fr; gap: 8px; } }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: left; }
.team-card__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--brand-200), var(--ink-900));
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  margin-bottom: 18px;
}
.team-card__photo::after {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-sans); color: rgba(255,255,255,0.9);
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 800;
  letter-spacing: -0.03em;
}
.team-card h3, .team-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.015em; }
.team-card p { color: var(--slate-500); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: flex-start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 16px; }
.contact-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.contact-block__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid; place-items: center;
}
.contact-block__icon svg { width: 22px; height: 22px; }
.contact-block h3,
.contact-block h4 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-900); margin-bottom: 6px; }
.contact-block p { font-size: 14px; color: var(--slate-600); line-height: 1.65; }
.contact-block a { color: var(--brand-700); font-weight: 600; }

.contact-form {
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   Blog
   ========================================================= */
.blog-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .blog-hero { grid-template-columns: 1fr; } }
.blog-hero__feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ink-900), var(--brand-700));
  color: #fff;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.blog-hero__feature::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 90% 0%, rgba(43,107,255,0.4), transparent 60%),
    linear-gradient(to top, rgba(11,23,51,0.85) 0%, transparent 60%);
}
.blog-hero__feature > * { position: relative; z-index: 1; }
.blog-hero__feature h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -0.03em; max-width: 24ch; line-height: 1.1; }
.blog-hero__feature p { color: rgba(255,255,255,0.78); margin-top: 16px; max-width: 52ch; font-size: 14px; line-height: 1.6; }
.blog-hero__feature .meta { color: rgba(255,255,255,0.65); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }

.blog-side { display: flex; flex-direction: column; gap: 12px; }
.blog-side__item {
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.blog-side__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.blog-side__cover {
  aspect-ratio: 1/1; border-radius: 8px;
  background: linear-gradient(135deg, var(--cover-1, var(--brand-700)), var(--cover-2, var(--ink-900)));
}
.blog-side__item h3,
.blog-side__item h4 { font-size: 14px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.blog-side__item p { font-size: 11px; color: var(--slate-500); margin-top: 4px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.blog-filters button {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--slate-200);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--slate-700);
  transition: all var(--t-fast);
  background: #fff;
}
.blog-filters button:hover { border-color: var(--ink-900); }
.blog-filters button.is-active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* =========================================================
   "Why Nutra" — 4 pillar cards + headline stats
   ========================================================= */
.pillars { position: relative; }
.pillars__head {
  display: block;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.pillars__head .eyebrow { justify-content: center; }
.pillars__head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-top: 14px;
  max-width: none;
  color: var(--ink-900);
}
.pillars__head h2 em { color: var(--brand-600); font-style: italic; }
.pillars__head p {
  color: var(--slate-600);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 56ch;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1100px) { .pillars__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (max-width: 600px)  { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-400));
  opacity: 0;
  transition: opacity var(--t-base);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(11, 23, 51, 0.18); }
.pillar:hover::before { opacity: 1; }

.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.pillar__icon svg { width: 30px; height: 30px; }

.pillar__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.pillar > p {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pillar__points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-soft);
}
.pillar__points li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--ink-800);
  line-height: 1.45;
}
.pillar__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 1.8px solid var(--brand-600);
  border-bottom: 1.8px solid var(--brand-600);
  transform: rotate(-45deg);
}

/* ----- Stats strip beneath the cards ----- */
.pillars__stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--ink-900);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
}
.pillars__stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillars__stat:last-child { border-right: 0; }
.pillars__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--brand-400);
  line-height: 1;
}
.pillars__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .pillars__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 22px; padding: 22px 16px; }
  .pillars__stat:nth-child(3n) { border-right: 0; }
}
@media (max-width: 560px) {
  .pillars__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars__stat { border-right: 1px solid rgba(255,255,255,0.08); }
  .pillars__stat:nth-child(even) { border-right: 0; }
  .pillars__stat:last-child { border-right: 0; }
}
@media (max-width: 380px) {
  .pillars__stats { grid-template-columns: 1fr; padding: 16px; }
  .pillars__stat { border-right: 0; }
}

/* =========================================================
   Checkout + order confirmation
   ========================================================= */
.checkout__head { margin-bottom: 28px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) { .checkout-grid { grid-template-columns: 1fr; gap: 28px; } }
.checkout-form__title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-600); margin: 0 0 8px;
}
.checkout-summary {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.checkout-summary__items { display: grid; gap: 14px; margin: 14px 0; }
.co-line { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
.co-line__img { position: relative; width: 48px; height: 48px; border-radius: 10px; overflow: hidden; background: #fff; display: grid; place-items: center; }
.co-line__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.co-line__name { font-weight: 600; font-size: 14px; color: var(--ink-900); line-height: 1.2; }
.co-line__meta { font-size: 12px; color: var(--slate-600); margin-top: 2px; }
.co-line__price { font-weight: 700; font-size: 14px; white-space: nowrap; }
.checkout-summary__totals { border-top: 1px solid var(--line-soft); padding-top: 14px; display: grid; gap: 8px; }
.co-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--slate-700); }
.co-row--total {
  font-size: 18px; font-weight: 800; color: var(--ink-900);
  border-top: 1px solid var(--line-soft); padding-top: 12px; margin-top: 4px;
}
.co-row--fx { font-size: 13px; color: var(--brand-700); font-weight: 700; }
.co-fx-note { font-size: 11px; color: var(--slate-700); line-height: 1.5; margin: 6px 0 0; opacity: 0.85; }

.order-conf { max-width: 680px; margin: 0 auto; text-align: center; }
.order-conf__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #16A34A; color: #fff;
  display: grid; place-items: center; font-size: 32px; font-weight: 800;
  margin: 0 auto 16px;
}
.order-conf__icon--warn { background: #B45309; }
.order-conf__lead { color: var(--slate-700); margin-top: 8px; line-height: 1.6; }
.order-conf__card {
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 22px; margin: 24px auto 0;
  display: grid; gap: 8px; text-align: left; max-width: 480px;
}
.order-conf__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
