/* =========================================================================
   renu — mind wellness
   Premium, editorial, soft-modern. Built for breathing room.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400;1,9..40,500&display=swap');

:root {
  /* Backgrounds */
  --cream: #f4ecde;
  --cream-deep: #ede4d3;
  --bone: #faf5e9;
  --paper: #fbf8f1;
  --ivory: #fffbf3;

  /* Brand accents (used sparingly) */
  --jolt: #d8b07a;
  --jolt-deep: #b48049;
  --jolt-tint: #ecd6b1;
  --jolt-soft: #f3e6cb;

  --calm: #b9c2a8;
  --calm-deep: #788463;
  --calm-tint: #d1d8c2;
  --calm-soft: #e1e6d4;

  /* Ink (text) */
  --ink: #2c2e25;
  --ink-soft: #555a47;
  --ink-muted: #82856f;
  --ink-faint: #b6b6a5;

  --rule: rgba(44, 46, 37, 0.10);
  --rule-soft: rgba(44, 46, 37, 0.06);

  /* Type */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 9vw, 9rem);

  /* Scroll position for ambient gradient (updated by JS) */
  --scroll-y: 0;

  /* Radii */
  --r-sm: 10px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 200ms;
  --t-med: 360ms;
  --t-slow: 700ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   AMBIENT GRADIENT BACKDROP — Recess-style vertical pastel flow
   with morphing blobs + scroll-link. Soft, mellow, premium.
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  z-index: -2;
  background:
    radial-gradient(ellipse 65% 55% at 22% 18%, rgba(248, 220, 188, 0.78) 0%, transparent 62%),
    radial-gradient(ellipse 60% 50% at 82% 28%, rgba(243, 218, 178, 0.72) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 48%, rgba(248, 235, 213, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 18% 82%, rgba(214, 224, 200, 0.78) 0%, transparent 65%),
    radial-gradient(ellipse 65% 55% at 80% 92%, rgba(225, 230, 212, 0.78) 0%, transparent 65%),
    linear-gradient(178deg, #f5ecdb 0%, #f5e6cf 22%, #f0e0c5 45%, #e6e3cc 65%, #dde4d2 82%, #d3dcc6 100%);
  /* No filter — radial gradients with transparent stops give the soft blend natively.
     Animate transform only (GPU) so scroll repaints stay cheap. */
  transform: translate3d(0, calc(var(--scroll-y) * -0.04px), 0) scale(1.06);
  animation: ambientDrift 42s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
  backface-visibility: hidden;
}
@keyframes ambientDrift {
  0%   { transform: translate3d(0, calc(var(--scroll-y) * -0.04px), 0) scale(1.06) rotate(0deg); }
  100% { transform: translate3d(-2%, calc(var(--scroll-y) * -0.04px - 12px), 0) scale(1.08) rotate(0.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; transform: none; }
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity var(--t-fast) var(--ease); }
a:hover { opacity: 0.65; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); margin: 0; letter-spacing: -0.012em; font-weight: 400; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.2; font-weight: 400; }
h4 { font-size: 1.05rem; line-height: 1.3; font-weight: 500; font-family: var(--sans); letter-spacing: 0.01em; }

p { margin: 0 0 1em; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--ink-soft); max-width: 50ch; }
.muted { color: var(--ink-muted); }
.italic { font-style: italic; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* Skip rendering long off-screen sections — big scroll-perf win.
   intrinsic-size keeps layout stable for the scrollbar. */
.section { content-visibility: auto; contain-intrinsic-size: 1px 600px; }
.hero, .site-header { content-visibility: visible; }
.section--bone { background: rgba(252, 248, 238, 0.28); }
.section--ivory { background: rgba(255, 252, 245, 0.25); }
.section--cream-deep { background: rgba(237, 228, 211, 0.32); }

.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95rem 1.7rem;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn--primary { background: var(--ink); color: var(--ivory); }
.btn--primary:hover { background: var(--calm-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--ghost-soft { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost-soft:hover { border-color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2rem; font-size: 0.94rem; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  border-radius: var(--r-pill);
  background: rgba(43, 45, 36, 0.05);
  border: 0;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink);
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.chip:hover { background: rgba(43, 45, 36, 0.09); }

/* Product-aware chip tints inside PDPs */
.pdp .chip {
  background: rgba(180, 128, 73, 0.13);
  color: var(--jolt-deep);
}
.pdp .chip:hover { background: rgba(180, 128, 73, 0.22); }

.pdp--calm .chip {
  background: rgba(120, 132, 99, 0.16);
  color: var(--calm-deep);
}
.pdp--calm .chip:hover { background: rgba(120, 132, 99, 0.26); }

.pdp--variety .chip {
  background: rgba(43, 45, 36, 0.06);
  color: var(--ink);
}
.pdp--variety .chip:hover { background: rgba(43, 45, 36, 0.11); }

/* Tighten the chip row for nicer flow */
.pdp__bullets { gap: 0.4rem; }

/* ============================================================
   ANNOUNCEMENT BAR (very thin)
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 0.6rem var(--gutter);
  text-transform: lowercase;
  font-weight: 400;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 236, 222, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand-mark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
  user-select: none;
}
.brand-mark .brand-icon {
  width: auto;
  height: 48px;          /* matches combined height of wordmark + tag */
  flex-shrink: 0;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}
.brand-mark .brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;   /* centers tag under the wordmark */
  gap: 5px;
}
.brand-mark .brand-word {
  width: auto;
  height: 28px;
  flex-shrink: 0;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}
.brand-mark .brand-tag {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #424736;        /* matches logo dark olive */
  font-weight: 400;
  white-space: nowrap;
  padding-left: 0.36em;  /* counter-balance letter-spacing offset */
}
@media (max-width: 600px) {
  .brand-mark { gap: 9px; }
  .brand-mark .brand-icon { height: 40px; }
  .brand-mark .brand-stack { gap: 4px; }
  .brand-mark .brand-word { height: 22px; }
  .brand-mark .brand-tag { font-size: 0.44rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.2rem);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.nav-links a { color: var(--ink-soft); font-weight: 400; }
.nav-links a:hover { color: var(--ink); opacity: 1; }
.nav-links a.is-active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 0.25rem; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  color: var(--ink);
  position: relative;
}
.icon-btn:hover { background: rgba(0,0,0,0.04); opacity: 1; }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 15px; height: 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 9px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: var(--gutter) var(--gutter) calc(var(--gutter) * 1.5);
  }
  .nav-links.is-open a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rule-soft);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
  }
  .nav-links.is-open a:last-child { border-bottom: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}
.hero__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  position: relative;
  background: var(--cream-deep);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__below {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.hero__head { max-width: 22ch; }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-style: italic;
}
.hero h1 em { font-style: italic; color: var(--jolt-deep); }
.hero h1 span.calm { font-style: italic; color: var(--calm-deep); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero__sub { font-size: 1rem; color: var(--ink-soft); max-width: 36ch; }

@media (max-width: 800px) {
  .hero__below { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 4 / 5; }
}

/* Alt full-bleed hero */
.hero--bleed { padding: 0; position: relative; }
.hero--bleed .hero__media { border-radius: 0; aspect-ratio: auto; height: clamp(500px, 80vh, 760px); }

/* Compact split hero — copy left, smaller product image right */
.hero--compact { padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 5rem); }
.hero--compact .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero--compact .hero__copy { max-width: 42ch; }
.hero--compact .hero__copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.014em;
}
.hero--compact .hero__copy h1 em { font-style: italic; color: var(--jolt-deep); }
.hero--compact .hero__copy h1 .calm { font-style: italic; color: var(--calm-deep); }
.hero--compact .hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 38ch;
}
.hero--compact .hero__product {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  background: var(--cream-deep);
}
.hero--compact .hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .hero--compact .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero--compact .hero__product { max-width: 100%; aspect-ratio: 1 / 1; order: -1; }
}

/* ============================================================
   PRODUCT SPLIT — bigger, lighter
   ============================================================ */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.product-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--t-med) var(--ease);
  isolation: isolate;
}
.product-card:hover { transform: translateY(-3px); opacity: 1; }

.product-card__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card--jolt .product-card__media { background: var(--jolt-soft); }
.product-card--calm .product-card__media { background: var(--calm-soft); }

.product-card__body {
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--paper);
}
.product-card--jolt .product-card__body { background: var(--jolt-soft); }
.product-card--calm .product-card__body { background: var(--calm-soft); }

.product-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.product-card__name { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 0.95; font-weight: 400; letter-spacing: -0.015em; font-style: italic; }
.product-card__benefit { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-muted); }
.product-card__copy { color: var(--ink-soft); max-width: 38ch; font-size: 0.96rem; margin: 0.5rem 0 1rem; }
.product-card__cta { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--ink); border-bottom: 1px solid var(--ink); align-self: flex-start; padding-bottom: 2px; }

@media (max-width: 760px) {
  .product-split { grid-template-columns: 1fr; }
}

/* ============================================================
   EDITORIAL BREAK — single full-width image with quote
   ============================================================ */
.editorial {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  margin: 0 auto;
}
.editorial img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%);
}
.editorial__overlay h2 {
  color: var(--ivory);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  max-width: 22ch;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  .editorial { aspect-ratio: 4 / 5; }
}

/* ============================================================
   SHOP CARDS — clean, minimal
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.shop-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.shop-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-deep);
  margin-bottom: 1.1rem;
}
.shop-card--jolt .shop-card__media { background: var(--jolt-soft); }
.shop-card--calm .shop-card__media { background: var(--calm-soft); }
.shop-card--variety .shop-card__media { background: linear-gradient(135deg, var(--jolt-soft) 0%, var(--calm-soft) 100%); }

.shop-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.shop-card:hover .shop-card__media img { transform: scale(1.03); }

.shop-card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.shop-card__name { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; letter-spacing: -0.012em; font-style: italic; }
.shop-card__benefit { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); margin-top: 0.35rem; }
.shop-card__price { font-size: 0.92rem; color: var(--ink-soft); }
.shop-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.shop-card__cta::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.shop-card:hover .shop-card__cta::after { transform: translateX(3px); }

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INGREDIENTS — compact list, not cards
   ============================================================ */
.ing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.ing-col__head { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.4rem; }
.ing-col__head h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; line-height: 1; font-style: italic; }
.ing-col__head .eyebrow { font-size: 0.66rem; }
.ing-col__lede { color: var(--ink-soft); margin: 0.5rem 0 1.5rem; max-width: 36ch; font-size: 0.96rem; }

.ing-list { display: flex; flex-direction: column; }
.ing-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.ing-list li span:last-child { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.ing-list li:last-child { border-bottom: 0; }

@media (max-width: 800px) {
  .ing-row { grid-template-columns: 1fr; }
}

/* ============================================================
   INGREDIENT GRID — visual cards with icons
   ============================================================ */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.ing-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid var(--rule-soft);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.ing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(120, 132, 99, 0.07) 0%, transparent 50%);
  pointer-events: none;
}
.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ing-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(120, 132, 99, 0.1);
  color: var(--calm-deep);
}
.ing-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ing-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1;
  margin: 0;
}
.ing-card__benefit {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--calm-deep);
  margin: 0.3rem 0 0.85rem;
}
.ing-card__desc {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

.ing-footnote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--ink-soft);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 38ch;
  line-height: 1.45;
}

/* JOLT variant — warm golden tones for the icon chip */
.ingredient-grid--jolt .ing-card__icon {
  background: rgba(180, 128, 73, 0.12);
  color: var(--jolt-deep);
}
.ingredient-grid--jolt .ing-card__benefit {
  color: var(--jolt-deep);
}
.ingredient-grid--jolt .ing-card::before {
  background: radial-gradient(circle at 100% 0%, rgba(180, 128, 73, 0.08) 0%, transparent 50%);
}

/* COMPACT variant — for paired layouts (variety + homepage).
   Tight padding/sizing so all 4 names fit on one line per side. */
.ingredient-grid--compact { gap: clamp(0.4rem, 0.7vw, 0.6rem); }
.ingredient-grid--compact .ing-card {
  padding: clamp(0.85rem, 1.3vw, 1.15rem);
  gap: 0.15rem;
  min-width: 0;
}
.ingredient-grid--compact .ing-card__icon { width: 36px; height: 36px; margin-bottom: 0.6rem; }
.ingredient-grid--compact .ing-card__icon svg { width: 19px; height: 19px; }
.ingredient-grid--compact .ing-card h3 {
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.ingredient-grid--compact .ing-card__benefit {
  margin: 0.25rem 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

/* Wider container for the paired ingredient section so all 4 cards
   fit on a single line on each side, even with longer calm names */
.section--wide > .container { max-width: 1480px; }

/* Paired grids (variety + homepage) */
.variety-ingredients {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}
.variety-ingredients__col { min-width: 0; }
.variety-ingredients__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.variety-ingredients__head h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.variety-ingredients__head h3 em { font-style: italic; }

@media (max-width: 720px) {
  .ingredient-grid--compact { grid-template-columns: 1fr 1fr; }
  .ingredient-grid--compact .ing-card h3 { white-space: normal; }
}
@media (max-width: 460px) {
  .ingredient-grid--compact { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ingredient-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EMAIL SIGNUP — minimal
   ============================================================ */
.signup {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}
.signup h2 { margin-bottom: 0.6rem; font-style: italic; }
.signup p { color: var(--ink-soft); margin: 0 0 1.5rem; }
.signup__form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.5rem;
}
.signup__form input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.4rem;
  background: transparent;
  border: 0;
  font-size: 1rem;
  color: var(--ink);
}
.signup__form input::placeholder { color: var(--ink-faint); }
.signup__form input:focus { outline: none; }
.signup__form button {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0.4rem 0.6rem;
}
.signup__form button:hover { opacity: 0.6; }

/* ============================================================
   FIRST-VISIT EMAIL SIGNUP MODAL + PERSISTENT PILL
   ============================================================ */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.signup-modal[hidden] { display: none; }

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 45, 36, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bdIn 320ms var(--ease);
}
@keyframes bdIn { from { opacity: 0; } to { opacity: 1; } }

.signup-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalIn 420ms var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.signup-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.78);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.signup-modal__close:hover { background: rgba(255,255,255,1); }

.signup-modal__media {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.signup-modal__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.signup-modal__body {
  padding: clamp(1.75rem, 3.4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
.signup-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.signup-modal__brand img { height: 22px; width: auto; }
.signup-modal__brand .tag {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #424736;
  font-weight: 400;
}
.signup-modal__body h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.014em;
  margin: 0.25rem 0 0.5rem;
}
.signup-modal__body h2 em {
  font-style: italic;
  color: var(--jolt-deep);
}
.signup-modal__body > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  max-width: 32ch;
}
.signup-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.signup-modal__form input[type=email] {
  padding: 0.95rem 1.1rem;
  border-radius: var(--r-pill);
  background: white;
  border: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink);
  font-family: inherit;
}
.signup-modal__form input::placeholder { color: var(--ink-faint); }
.signup-modal__form input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(43, 45, 36, 0.08);
}
.signup-modal__form button {
  padding: 1rem 1.4rem;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.signup-modal__form button:hover { background: var(--calm-deep); transform: translateY(-1px); }
.signup-modal__terms {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin: 0.7rem 0 0;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .signup-modal__panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .signup-modal__media { aspect-ratio: 5/3; }
  .signup-modal__body { padding: 1.5rem; }
}

/* Persistent "get 15% off" pill (bottom-left) */
.signup-pill {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  left: clamp(1rem, 3vw, 1.5rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.55rem 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(43, 45, 36, 0.18);
  animation: pillIn 460ms var(--ease) 80ms both;
  transition: transform var(--t-fast) var(--ease);
}
.signup-pill[hidden] { display: none; }
.signup-pill:hover { transform: translateY(-2px); }
@keyframes pillIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.signup-pill__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 0.95rem;
  margin-left: 0.2rem;
  color: var(--paper);
  letter-spacing: 0;
  text-transform: none;
  transition: background var(--t-fast) var(--ease);
}
.signup-pill__close:hover { background: rgba(255,255,255,0.32); }

body.modal-open { overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid var(--rule);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem;
}
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid ul a { color: var(--ink-soft); font-size: 0.93rem; }
.footer-tag p { color: var(--ink-soft); font-size: 0.93rem; max-width: 32ch; margin-top: 1rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-tag { grid-column: span 2; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(1rem, 3vw, 2rem);
}
.pdp__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--jolt-soft);
  margin: 0;
}
.pdp__media img { width: 100%; height: 100%; object-fit: cover; }
.pdp--calm .pdp__media { background: var(--calm-soft); }
.pdp--variety .pdp__media { background: linear-gradient(135deg, var(--jolt-soft) 0%, var(--calm-soft) 100%); }

/* PDP Carousel — IG-style swipe with arrows + dots */
.pdp__carousel {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--jolt-soft);
  isolation: isolate;
  contain: layout paint;
}
.pdp--calm .pdp__carousel { background: var(--calm-soft); }
.pdp--variety .pdp__carousel {
  background: linear-gradient(135deg, var(--jolt-soft) 0%, var(--calm-soft) 100%);
  aspect-ratio: 1 / 1; /* square — matches the lineup and fridge-grab source images so nothing gets edge-cropped */
}
.pdp__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 750ms cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.pdp__slide {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
}
.pdp__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 280ms var(--ease), background 240ms var(--ease), transform 200ms var(--ease);
  z-index: 2;
  border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pdp__carousel:hover .pdp__nav,
.pdp__nav:focus-visible { opacity: 1; }
.pdp__nav:hover { background: rgba(255,255,255,0.32); }
.pdp__nav:active { transform: translateY(-50%) scale(0.94); }
.pdp__nav--prev { left: 14px; }
.pdp__nav--next { right: 14px; }
.pdp__nav[disabled] { opacity: 0.2; cursor: default; }

.pdp__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: transparent;
  z-index: 2;
}
.pdp__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: background 240ms var(--ease), transform 240ms var(--ease), width 240ms var(--ease);
}
.pdp__dot.is-active {
  background: rgba(255,255,255,0.96);
  width: 18px;
  border-radius: 4px;
}

@media (max-width: 800px) {
  .pdp__nav { opacity: 0.85; width: 34px; height: 34px; }
  .pdp__nav--prev { left: 10px; }
  .pdp__nav--next { right: 10px; }
}

/* PDP media column — wraps the carousel + thumbnail strip
   so they live in the same left column of the .pdp grid */
.pdp__media-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* PDP Thumbnail Strip — small image previews under the carousel,
   with arrows on either side, scrollable when there are many */
.pdp__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(0.5rem, 1vw, 0.85rem);
}
.pdp__thumbs {
  display: flex;
  gap: clamp(0.5rem, 0.9vw, 0.75rem);
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}
.pdp__thumbs::-webkit-scrollbar { display: none; }
.pdp__thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(64px, 9vw, 90px);
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--cream-deep);
  cursor: pointer;
  opacity: 0.7;
  scroll-snap-align: start;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med) var(--ease);
}
.pdp__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: border-color var(--t-fast) var(--ease);
  pointer-events: none;
}
.pdp__thumb:hover { opacity: 0.95; }
.pdp__thumb:hover img { transform: scale(1.04); }
.pdp__thumb.is-active { opacity: 1; }
.pdp__thumb.is-active::after { border-color: var(--ink); }

.pdp__thumbs-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.pdp__thumbs-arrow:hover { background: var(--cream-deep); }
.pdp__thumbs-arrow:active { transform: scale(0.94); }
.pdp__thumbs-arrow[disabled] { opacity: 0.35; cursor: default; }

/* OLD preview tiles styles below kept for reference but unused */
/* PDP Preview Tiles — editorial highlights under the carousel */
.preview-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1vw, 0.85rem);
  margin-top: clamp(0.85rem, 1.6vw, 1.25rem);
}
.preview-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(0.85rem, 1.4vw, 1.15rem);
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  cursor: default;
}
.preview-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.preview-tile__eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.preview-tile__title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 400;
}
.preview-tile__title em { font-style: italic; }
.preview-tile__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.preview-tile__list li { display: flex; justify-content: space-between; gap: 0.5rem; padding: 0.15rem 0; border-bottom: 1px solid var(--rule-soft); }
.preview-tile__list li:last-child { border-bottom: 0; }
.preview-tile__list strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

/* Variants */
.preview-tile--jolt { background: var(--jolt-soft); border-color: rgba(180, 128, 73, 0.14); }
.preview-tile--calm { background: var(--calm-soft); border-color: rgba(120, 132, 99, 0.18); }
.preview-tile--cream { background: var(--cream-deep); }
.preview-tile--ink { background: var(--ink); color: var(--paper); }
.preview-tile--ink .preview-tile__eyebrow { color: rgba(248, 243, 232, 0.55); }
.preview-tile--ink .preview-tile__list { color: rgba(248, 243, 232, 0.78); }
.preview-tile--ink .preview-tile__list li { border-color: rgba(255,255,255,0.08); }
.preview-tile--ink .preview-tile__list strong { color: var(--paper); }

/* Press names list */
.preview-tile__press {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.preview-tile__press span { padding: 0; }

/* Compare split tile */
.preview-tile__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.preview-tile__compare .col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}
.preview-tile__compare .col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
}
.preview-tile__compare .vs {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .preview-tiles { grid-template-columns: 1fr 1fr; }
}

/* Stacked PDP — multiple media tiles on the left, sticky copy on the right */
.pdp__media-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.pdp__media-stack .pdp__media:nth-child(2) {
  background: var(--cream-deep);
  aspect-ratio: 1 / 1;
}
.pdp--stack .pdp__copy {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
@media (max-width: 800px) {
  .pdp--stack .pdp__copy { position: static; max-height: none; overflow: visible; }
}

.pdp__copy { padding: clamp(1rem, 3vw, 2rem) 0; }
.pdp__copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.022em; margin: 0.6rem 0 1rem; font-style: italic; }
.pdp__sub { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 40ch; }
.pdp__bullets {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.pdp__bullets::-webkit-scrollbar { display: none; }
.pdp__bullets .chip { flex: 0 0 auto; scroll-snap-align: start; }

.chip[data-tooltip] { cursor: default; }

/* Inline info line that displays the hovered chip's benefit copy.
   Fixed-height to prevent layout shift, subtle italic serif. */
.chip-info {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink-soft);
  margin: -1.25rem 0 1.5rem;
  min-height: 1.4em;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  max-width: 42ch;
}
.chip-info.is-visible { opacity: 1; transform: translateY(0); }

/* Pack-size selector (segmented) */
.pack-select {
  display: inline-flex;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-bottom: 1.25rem;
  gap: 2px;
}
.pack-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.pack-option em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-muted);
  transition: color var(--t-fast) var(--ease);
}
.pack-option:hover { color: var(--ink); }
.pack-option.is-active { background: var(--ink); color: var(--paper); }
.pack-option.is-active em { color: var(--paper); opacity: 0.85; }

.pdp__row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.pdp__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.pdp__buy { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  overflow: hidden;
  height: 42px;
}
.qty button {
  width: 38px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 300;
}
.qty button:hover { background: rgba(0,0,0,0.04); }
.qty span { min-width: 26px; text-align: center; font-size: 0.92rem; font-weight: 400; }

.pdp__sub-save {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.pdp__sub-save strong { color: var(--ink); font-weight: 500; }

.pdp__notes {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: var(--ink-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .pdp { grid-template-columns: 1fr; }
}

/* PDP sticky cart bar (mobile) */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  padding: 0.85rem var(--gutter);
  background: rgba(244, 236, 222, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--rule);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 30;
}
.sticky-cta strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; font-style: italic; }
@media (max-width: 800px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* When-to-take inline */
.when {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1rem);
  margin-top: 1.5rem;
}
.when__item {
  background: rgba(255,255,255,0.5);
  border-radius: var(--r-md);
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) { .when { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 1.4rem 0;
}
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-muted);
  font-style: normal;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.85rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.section-head h2 { max-width: 18ch; font-style: italic; }
.section-head p { color: var(--ink-soft); max-width: 36ch; margin: 0; }

.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center p { margin-top: 0.6rem; }

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-hero__media { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; }
.story-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.story-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-style: italic; }
@media (max-width: 800px) { .story-hero { grid-template-columns: 1fr; } }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.value h3 { margin-bottom: 0.5rem; font-style: italic; }
.value p { color: var(--ink-soft); }
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   STORY V2 — modern editorial brand story
   ============================================================ */

/* 1. HERO */
.story2-hero {
  position: relative;
  min-height: clamp(580px, 84vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.story2-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story2-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244,236,222,0.78) 0%, rgba(244,236,222,0.45) 45%, rgba(244,236,222,0) 80%);
}
.story2-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.story2-hero__copy { max-width: 32rem; }
.story2-hero__copy h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.story2-hero__copy h1 em { font-style: italic; }
.story2-hero__copy .lede {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 32ch;
}
.story2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

/* 2. PROBLEM / 5. HOW IT WORKS — shared centered narrative */
.story2-problem {
  text-align: center;
}
.story2-problem h2 {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 auto;
  max-width: 14ch;
}
.story2-problem h2 em { font-style: italic; }
.story2-stanza {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 28ch;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
}
.story2-stanza p { margin: 0; }
.story2-rule {
  border: 0;
  width: 36px;
  height: 1px;
  background: var(--rule);
  margin: clamp(1.5rem, 2.5vw, 2.25rem) auto;
}
.story2-line {
  margin: clamp(2.5rem, 4.5vw, 3.5rem) auto 0;
  max-width: 28ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}
.story2-line em { font-style: italic; }

/* 3. PURPOSE */
.story2-purpose {
  text-align: center;
}
.story2-purpose h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 auto;
  max-width: 18ch;
}
.story2-purpose h2 em { font-style: italic; }
.story2-line--soft { color: var(--ink-soft); }

/* 4. PHILOSOPHY — split cards */
.story2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.story2-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-med) var(--ease);
  isolation: isolate;
}
.story2-card:hover { transform: translateY(-4px); opacity: 1; }
.story2-card__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream-deep);
}
.story2-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.story2-card:hover .story2-card__media img { transform: scale(1.03); }
.story2-card__body {
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.story2-card--jolt .story2-card__body { background: var(--jolt-soft); }
.story2-card--calm .story2-card__body { background: var(--calm-soft); }
.story2-card__body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.story2-card__sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.story2-card--jolt .story2-card__sub { color: var(--jolt-deep); }
.story2-card--calm .story2-card__sub { color: var(--calm-deep); }
.story2-card__body p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0.25rem 0 1rem;
  max-width: 28ch;
}
.story2-card__cta {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
}
@media (max-width: 720px) {
  .story2-cards { grid-template-columns: 1fr; }
}

/* 6. LIFESTYLE GRID */
.story2-lifestyle .section-head p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
}
.story2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 0.85rem);
}
.story2-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
}
.story2-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.story2-grid figure:hover img { transform: scale(1.05); }
.story2-grid figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--paper);
  letter-spacing: 0.005em;
  text-shadow: 0 2px 12px rgba(43, 45, 36, 0.45);
}
@media (max-width: 800px) {
  .story2-grid { grid-template-columns: 1fr 1fr; }
}

/* 7. BENEFIT CLOSE */
.story2-close {
  text-align: center;
}
.story2-close h2 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 auto;
  max-width: 14ch;
}
.story2-close h2 em { font-style: italic; }
.story2-close__list {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  max-width: 24ch;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

/* 8. FINAL CTA */
.story2-final {
  text-align: center;
  background: var(--cream-deep);
}
.story2-final h2 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0 auto;
  max-width: 18ch;
}
.story2-final h2 em { font-style: italic; }
.story2-final__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   account page
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.icon-btn.is-active {
  color: var(--ink, #2a2e26);
  position: relative;
}
.icon-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.account-hero {
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(60px, 10vw, 120px);
}

.account-card {
  text-align: center;
  background: #fbf6ec;
  border: 1px solid rgba(45, 50, 38, 0.08);
  border-radius: 24px;
  padding: clamp(36px, 6vw, 72px) clamp(28px, 5vw, 64px);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 60px -32px rgba(45,50,38,0.18);
}

.account-mark {
  display: inline-flex;
  width: 88px; height: 88px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: #f1e7d2;
  color: #2a2e26;
  margin-bottom: 18px;
}
.account-mark svg { display: block; }

.account-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.account-form input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(45, 50, 38, 0.18);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: #2a2e26;
  outline: none;
  transition: border-color .2s ease;
}
.account-form input:focus {
  border-color: rgba(45, 50, 38, 0.5);
}
.account-form button {
  flex: 0 0 auto;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}
.account-form__note {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 13px;
  color: #9a8f7e;
  margin-top: 14px;
}

.account-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}
.account-tile {
  display: block;
  text-decoration: none;
  background: #fbf6ec;
  border: 1px solid rgba(45, 50, 38, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  color: #2a2e26;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.account-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 50, 38, 0.18);
  box-shadow: 0 12px 30px -20px rgba(45,50,38,0.25);
}
.account-tile__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.account-tile p {
  font-size: 13px;
  line-height: 1.55;
  color: #6a6458;
  margin: 0;
}
@media (max-width: 720px) {
  .account-row { grid-template-columns: 1fr; }
}

.account-help {
  font-size: 13px;
  color: #6a6458;
  margin-top: 28px;
}
.account-help a {
  color: #2a2e26;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* story hero — text-only variant (no header photo) */
.story2-hero--text {
  min-height: 0;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  align-items: flex-end;
}
.story2-hero--text .story2-hero__inner { padding-top: 0; }
.story2-hero--text .story2-hero__copy { max-width: 36rem; }

/* story hero — soft variant: image as a contained backdrop, not full-bleed */
.story2-hero--soft {
  min-height: 0;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.story2-hero--soft .story2-hero__media {
  position: absolute;
  inset: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 4vw, 4rem);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px -50px rgba(45, 50, 38, 0.25);
}
.story2-hero--soft .story2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1); /* mirror so bottles sit on the right */
}
.story2-hero--soft .story2-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(244,236,222,0.92) 0%, rgba(244,236,222,0.72) 32%, rgba(244,236,222,0.25) 60%, rgba(244,236,222,0) 80%);
}
.story2-hero--soft .story2-hero__inner { position: relative; z-index: 1; }
.story2-hero--soft .story2-hero__copy {
  max-width: 32rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
@media (max-width: 720px) {
  .story2-hero--soft .story2-hero__media { inset: 1rem; border-radius: 18px; }
  .story2-hero--soft .story2-hero__media::after {
    background: linear-gradient(180deg, rgba(244,236,222,0.55) 0%, rgba(244,236,222,0.88) 70%, rgba(244,236,222,0.95) 100%);
  }
  .story2-hero--soft .story2-hero__copy {
    max-width: 100%;
  }
}

/* story hero — split variant: text left, full image right (no crop) */
.story2-hero--split {
  min-height: 0;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  overflow: visible;
}
.story2-hero--split .story2-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
  justify-items: start;
  position: static;
}
.story2-hero--split .story2-hero__copy {
  max-width: 24rem;
  text-align: left;
  margin-left: 0;
  padding: 0;
}
.story2-hero--split .story2-hero__media {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 36rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -50px rgba(45, 50, 38, 0.25);
}
.story2-hero--split .story2-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: none;
}
.story2-hero--split .story2-hero__media::after { content: none; }

@media (max-width: 820px) {
  .story2-hero--split .story2-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story2-hero--split .story2-hero__copy { max-width: 100%; }
}

/* story hero — banner variant: full-width cinematic image with text overlaid on the left */
.story2-hero--banner {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  aspect-ratio: 2 / 1;
}
.story2-hero--banner .story2-hero__media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
  height: 100%;
  max-width: none;
}
.story2-hero--banner .story2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
}
.story2-hero--banner .story2-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(244, 236, 222, 0.78) 0%,
    rgba(244, 236, 222, 0.52) 28%,
    rgba(244, 236, 222, 0.18) 50%,
    rgba(244, 236, 222, 0) 70%
  );
}
.story2-hero--banner .story2-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.story2-hero--banner .story2-hero__copy {
  max-width: 26rem;
  text-align: left;
  margin-left: 0;
  padding: 0;
}
.story2-hero--banner .story2-hero__copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

@media (max-width: 820px) {
  .story2-hero--banner {
    aspect-ratio: 4 / 5;
  }
  .story2-hero--banner .story2-hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(244, 236, 222, 0.85) 0%,
      rgba(244, 236, 222, 0.45) 45%,
      rgba(244, 236, 222, 0.15) 70%,
      rgba(244, 236, 222, 0) 100%
    );
  }
  .story2-hero--banner .story2-hero__copy {
    max-width: 100%;
    padding: clamp(2rem, 6vw, 4rem) 0 0;
    align-self: flex-start;
  }
}

/* homepage hero — banner variant: full-width cinematic image with text overlaid on the left */
.hero--banner {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: block;
  aspect-ratio: 2 / 1;
}
.hero--banner .hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero--banner .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero--banner .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(244, 236, 222, 0.78) 0%,
    rgba(244, 236, 222, 0.52) 28%,
    rgba(244, 236, 222, 0.18) 50%,
    rgba(244, 236, 222, 0) 70%
  );
}
.hero--banner .hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero--banner .hero__copy {
  max-width: 30rem;
  text-align: left;
}
.hero--banner .hero__copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.05;
}

@media (max-width: 820px) {
  .hero--banner { aspect-ratio: 4 / 5; }
  .hero--banner .hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(244, 236, 222, 0.85) 0%,
      rgba(244, 236, 222, 0.45) 45%,
      rgba(244, 236, 222, 0.15) 70%,
      rgba(244, 236, 222, 0) 100%
    );
  }
  .hero--banner .hero__copy {
    max-width: 100%;
    align-self: flex-start;
    padding: clamp(2rem, 6vw, 4rem) 0 0;
  }
}

/* ============================================================
   subscribe + save landing page
   ============================================================ */
.sub-hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(28px, 4vw, 48px); text-align: center; }
.sub-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
.sub-hero .lede { max-width: 38ch; margin-left: auto; margin-right: auto; color: var(--ink-soft); }

.sub-wizard { padding-top: clamp(20px, 3vw, 36px); padding-bottom: clamp(60px, 8vw, 96px); }

.sub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .sub-grid { grid-template-columns: 1fr; }
}

/* ---- left column / steps ---- */
.sub-steps { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 44px); }
.sub-step { border: 0; padding: 0; margin: 0; }
.sub-step__legend {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--ink, #2a2e26);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.sub-step__num {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #a09684;
  text-transform: uppercase;
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ---- formula cards ---- */
.sub-formulas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 560px) { .sub-formulas { grid-template-columns: 1fr; } }
.sub-formula { display: block; cursor: pointer; }
.sub-formula input { position: absolute; opacity: 0; pointer-events: none; }
.sub-formula__card {
  border-radius: 18px;
  padding: 26px 18px 22px;
  border: 1.5px solid rgba(45, 50, 38, 0.08);
  background: #fbf6ec;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  text-align: center;
}
.sub-formula--jolt    .sub-formula__card { background: linear-gradient(160deg, #f5d99a, #e8b878); color: #3a2a14; }
.sub-formula--calm    .sub-formula__card { background: linear-gradient(160deg, #cdd9b8, #a8b89a); color: #2a3324; }
.sub-formula--variety .sub-formula__card { background: linear-gradient(160deg, #f1e7d2, #e6ebdf); color: #2a2e26; }
.sub-formula__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: -0.005em;
}
.sub-formula__sub {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.78;
}
.sub-formula input:checked + .sub-formula__card {
  transform: translateY(-2px);
  border-color: rgba(45, 50, 38, 0.5);
  box-shadow: 0 18px 40px -28px rgba(45, 50, 38, 0.4);
}
.sub-formula input:focus-visible + .sub-formula__card {
  outline: 2px solid rgba(45, 50, 38, 0.4);
  outline-offset: 3px;
}

/* ---- pill groups ---- */
.sub-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sub-pills--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 560px) {
  .sub-pills, .sub-pills--three { grid-template-columns: 1fr; }
}
.sub-pill { position: relative; cursor: pointer; }
.sub-pill input { position: absolute; opacity: 0; pointer-events: none; }
.sub-pill > span {
  display: block;
  text-align: center;
  padding: 14px 12px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(45, 50, 38, 0.12);
  background: #fbf6ec;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink, #2a2e26);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.sub-pill > span small {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8f7e;
  margin-top: 4px;
  font-style: normal;
}
.sub-pill input:checked + span {
  border-color: rgba(45, 50, 38, 0.6);
  background: #fff8ea;
}
.sub-pill input:focus-visible + span { outline: 2px solid rgba(45,50,38,0.4); outline-offset: 3px; }
.sub-pill.is-disabled { opacity: 0.4; cursor: not-allowed; }
.sub-pill.is-disabled > span { background: #f4ecde; }
.sub-pill__badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background: #2a2e26;
  color: #fbf6ec;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

/* ---- summary card ---- */
.sub-summary { position: relative; }
@media (min-width: 901px) {
  .sub-summary { position: sticky; top: 92px; }
}
.sub-summary__inner {
  background: #fbf6ec;
  border: 1px solid rgba(45, 50, 38, 0.08);
  border-radius: 22px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px -36px rgba(45, 50, 38, 0.18);
}
.sub-summary__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.9rem;
  margin: 6px 0 16px;
  line-height: 1.1;
}
.sub-summary__title em { font-style: italic; }
.sub-summary__sub {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a8f7e;
  margin-top: 4px;
}
.sub-summary__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(45, 50, 38, 0.08);
}
.sub-summary__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45, 50, 38, 0.08);
  font-size: 0.92rem;
}
.sub-summary__list li span {
  color: #6a6458;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.sub-summary__list li strong {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--ink, #2a2e26);
}
.sub-summary__total strong {
  font-size: 1.45rem !important;
}
.sub-summary__save strong {
  color: #a07a3f;
  font-style: italic;
}

.sub-summary__form {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.sub-summary__form input[type=email] {
  padding: 14px 18px;
  border: 1px solid rgba(45, 50, 38, 0.18);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease;
}
.sub-summary__form input[type=email]:focus { border-color: rgba(45, 50, 38, 0.5); }
.sub-summary__form button { padding: 16px 22px; }
.sub-summary__status {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #9a8f7e;
  margin: 8px 0 0;
  min-height: 1.2em;
}

.sub-summary__perks {
  list-style: none; padding: 0;
  margin: 18px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(45, 50, 38, 0.08);
  padding-top: 18px;
}
.sub-summary__perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem;
  color: #6a6458;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.sub-summary__perks svg { color: #3d4a3a; flex-shrink: 0; }

/* tint the summary border by chosen formula */
.sub-summary[data-formula="jolt"]    .sub-summary__inner { border-color: rgba(168, 122, 63, 0.25); }
.sub-summary[data-formula="calm"]    .sub-summary__inner { border-color: rgba(118, 138, 96, 0.3); }
.sub-summary[data-formula="variety"] .sub-summary__inner { border-color: rgba(45, 50, 38, 0.15); }

/* ---- how it works ---- */
.sub-how {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 24px;
}
.sub-how li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.sub-how__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #f1e7d2;
  color: #a07a3f;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
}
.sub-how h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.sub-how p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; margin: 0; }

/* ---- FAQ ---- */
.sub-faq { margin-top: 28px; border-top: 1px solid rgba(45, 50, 38, 0.1); }
.sub-faq details {
  border-bottom: 1px solid rgba(45, 50, 38, 0.1);
  padding: 18px 4px;
}
.sub-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  color: var(--ink, #2a2e26);
  display: flex; align-items: center; justify-content: space-between;
  padding-right: 8px;
}
.sub-faq summary::-webkit-details-marker { display: none; }
.sub-faq summary::after {
  content: "+";
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  color: #9a8f7e;
  transition: transform .2s ease;
  margin-left: 18px;
}
.sub-faq details[open] summary::after { content: "–"; }
.sub-faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ============================================================
   legal pages (terms, privacy)
   ============================================================ */
.legal-hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(20px, 3vw, 32px); }
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
.legal-hero .eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #9a8f7e;
}
.legal-hero .lede { max-width: 50ch; color: var(--ink-soft, #6a6458); }

.legal-page { padding-top: clamp(20px, 3vw, 36px); padding-bottom: clamp(60px, 8vw, 100px); }
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
}

/* ---- TOC ---- */
.legal-toc {
  position: sticky;
  top: 92px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
@media (max-width: 900px) {
  .legal-toc { position: static; }
}
.legal-toc h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a09684;
  margin: 0 0 14px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(45, 50, 38, 0.1);
}
.legal-toc li {
  counter-increment: toc;
  position: relative;
  padding: 0 0 0 18px;
  margin: 0;
}
.legal-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: -1px;
  top: 8px;
  background: #f4ecde;
  padding: 0 6px 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #b8af9d;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #6a6458;
  text-decoration: none;
  transition: color .2s ease;
}
.legal-toc a:hover { color: #2a2e26; }

/* ---- BODY ---- */
.legal-body { max-width: 64ch; }
.legal-body section { margin-bottom: clamp(2rem, 3.5vw, 3rem); scroll-margin-top: 88px; }
.legal-body h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--ink, #2a2e26);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.legal-body h2 em {
  font-style: italic;
  color: #a07a3f;
  font-size: 0.9em;
  flex-shrink: 0;
}
.legal-body p {
  font-size: 0.97rem;
  line-height: 1.72;
  color: #4a4a42;
  margin: 0 0 0.9rem;
}
.legal-body a {
  color: #2a2e26;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 50, 38, 0.3);
}
.legal-body a:hover { text-decoration-color: rgba(45, 50, 38, 0.7); }
.legal-sign-off {
  margin-top: 1.5rem;
  font-family: 'Lora', Georgia, serif;
  color: #6a6458;
}
.legal-disclaimer {
  margin-top: 3rem;
  padding: 18px 22px;
  background: #f4ecde;
  border-left: 2px solid #c9b88a;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: #9a8f7e;
  font-size: 0.86rem;
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
}

/* ============================================================
   homepage — use-case strip
   ============================================================ */
.usecase { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(40px, 6vw, 72px); }
.usecase .section-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.05; letter-spacing: -0.01em; }
.usecase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 48px);
}
@media (max-width: 900px) { .usecase__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usecase__grid { grid-template-columns: 1fr; } }

.usecase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: #fbf6ec;
  border: 1px solid rgba(45, 50, 38, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.usecase__card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 50, 38, 0.18);
  box-shadow: 0 24px 50px -28px rgba(45, 50, 38, 0.28);
}
.usecase__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4ecde;
}
.usecase__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.usecase__card:hover .usecase__media img { transform: scale(1.05); }

.usecase__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px 18px;
}
.usecase__caption {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink, #2a2e26);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.usecase__caption em { font-style: italic; }
.usecase__tag {
  flex-shrink: 0;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.usecase__tag--jolt {
  background: rgba(232, 184, 120, 0.22);
  color: #a07a3f;
}
.usecase__tag--calm {
  background: rgba(168, 184, 154, 0.3);
  color: #3a4632;
}

/* ============================================================
   homepage — founder / mission moment
   ============================================================ */
.founder-moment { padding-top: 8px; padding-bottom: 8px; }
.founder-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  position: relative;
  border: 0;
}
.founder-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(45,50,38,0.08);
  color: #1c2016;
  margin-bottom: 26px;
}
.founder-card .eyebrow {
  font-family: 'Lora', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a8f7e;
  display: block;
}
.founder-quote-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 80px;
  line-height: 0;
  color: #c9b88a;
  margin-top: 32px;
  height: 28px;
  opacity: 0.75;
}
.founder-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  color: var(--ink, #2a2e26);
  max-width: 22ch;
  margin: 28px auto 0;
  letter-spacing: -0.01em;
  border: 0;
  padding: 0;
}
.founder-quote em { font-style: italic; color: #a07a3f; }

.founder-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #6a6458;
  letter-spacing: 0.04em;
}
.founder-rule { display: none; }
.founder-coda {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft, #6a6458);
  max-width: 460px;
  margin: 24px auto 0;
}
.founder-link {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: #2a2e26;
  text-decoration: none;
  border-bottom: 1px solid rgba(45,50,38,0.3);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.founder-link:hover { border-color: rgba(45,50,38,0.7); }

/* ============================================================
   contact page
   ============================================================ */
.contact-page { padding-top: clamp(20px, 3vw, 36px); padding-bottom: clamp(60px, 8vw, 96px); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* form */
.contact-form { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 44px); }
.contact-step { border: 0; padding: 0; margin: 0; }
.contact-legend {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--ink, #2a2e26);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.contact-num {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: #a09684;
  text-transform: uppercase;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) { .contact-row { grid-template-columns: 1fr; } }

.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field > span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a8f7e;
}
.contact-field input,
.contact-field textarea {
  padding: 14px 18px;
  border: 1px solid rgba(45, 50, 38, 0.18);
  border-radius: 14px;
  background: #fbf6ec;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink, #2a2e26);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.contact-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: rgba(45, 50, 38, 0.5); background: #fff; }

/* topic pills */
.contact-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px) { .contact-pills { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-pills { grid-template-columns: 1fr; } }

.contact-pill { position: relative; cursor: pointer; }
.contact-pill input { position: absolute; opacity: 0; pointer-events: none; }
.contact-pill > span {
  display: block;
  text-align: left;
  padding: 14px 16px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(45, 50, 38, 0.12);
  background: #fbf6ec;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink, #2a2e26);
  transition: border-color .2s ease, background .2s ease;
}
.contact-pill > span small {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8f7e;
  margin-top: 4px;
  font-style: normal;
}
.contact-pill input:checked + span {
  border-color: rgba(45, 50, 38, 0.6);
  background: #fff8ea;
}
.contact-pill input:focus-visible + span { outline: 2px solid rgba(45,50,38,0.4); outline-offset: 3px; }

.contact-submit { margin-top: 4px; }
.contact-submit .btn { padding: 16px 32px; }
.contact-status {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #9a8f7e;
  margin: 12px 0 0;
  min-height: 1.2em;
}
.contact-status[data-tone="ok"]  { color: #3d4a3a; }
.contact-status[data-tone="err"] { color: #a04a3f; }

/* aside */
.contact-aside { position: relative; }
@media (min-width: 901px) { .contact-aside { position: sticky; top: 92px; } }
.contact-aside__inner {
  background: #fbf6ec;
  border: 1px solid rgba(45, 50, 38, 0.08);
  border-radius: 22px;
  padding: 28px 28px 24px;
}
.contact-aside__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.7rem;
  margin: 6px 0 18px;
  line-height: 1.15;
}
.contact-aside__title em { font-style: italic; color: #a07a3f; }

.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(45, 50, 38, 0.08);
}
.contact-channels li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 50, 38, 0.08);
  gap: 12px;
}
.contact-channels__label {
  color: #6a6458;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-channels__value {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: var(--ink, #2a2e26);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 50, 38, 0.25);
  padding-bottom: 1px;
}
.contact-channels__value:hover { border-color: rgba(45, 50, 38, 0.6); }

.contact-perks {
  list-style: none; padding: 0;
  margin: 18px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(45, 50, 38, 0.08);
  padding-top: 18px;
}
.contact-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem;
  color: #6a6458;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.contact-perks svg { color: #3d4a3a; flex-shrink: 0; }

/* terms — body text inside .sub-step uses lighter prose treatment */
.sub-step__body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.97rem;
  line-height: 1.72;
  color: #4a4a42;
  margin: 0 0 0.9rem;
}
.sub-step__body:last-child { margin-bottom: 0; }
.sub-step__body a {
  color: #2a2e26;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 50, 38, 0.3);
}
.sub-step__body a:hover { text-decoration-color: rgba(45, 50, 38, 0.7); }


/* Mobile hero — stack image + copy cleanly, no empty space, no side-crop */
@media (max-width: 720px) {
  .hero--banner { aspect-ratio: auto !important; min-height: 0 !important; height: auto !important; background: #f4ecde !important; padding: 0 0 2rem !important; display: flex !important; flex-direction: column !important; }
  .hero--banner .hero__media { position: relative !important; inset: auto !important; width: 100% !important; height: auto !important; aspect-ratio: auto !important; order: 1; margin: 0 !important; }
  .hero--banner .hero__media img { position: relative !important; width: 100% !important; height: auto !important; object-fit: contain !important; display: block !important; }
  .hero--banner .hero__media::after { display: none !important; }
  .hero--banner .hero__inner { position: static !important; padding: 1.5rem 1.25rem 0 !important; order: 2; max-width: 100% !important; align-items: stretch !important; }
  .hero--banner .hero__copy { max-width: 100% !important; padding: 0 !important; }
}


/* Mobile fix — story page banner: show whole image on phones */
@media (max-width: 720px) {
  .story2-hero--banner { aspect-ratio: auto !important; min-height: auto !important; padding-bottom: 0 !important; }
  .story2-hero--banner .story2-hero__media { position: relative !important; inset: auto !important; height: auto !important; aspect-ratio: auto !important; }
  .story2-hero--banner .story2-hero__media img { position: relative !important; width: 100% !important; height: auto !important; object-fit: contain !important; display: block !important; }
  .story2-hero--banner .story2-hero__media::after { display: none !important; }
  .story2-hero--banner .story2-hero__inner { position: static !important; padding: 1.25rem 1rem 0 !important; }
  .story2-hero--banner .story2-hero__copy { max-width: 100% !important; }
}
