/* =============================================================
   ANGEL DUST for women :: styles.css
   Token system derived from 47 Collective brand deck (2026).
   Display serif: "Fraunces" stands in for licensed Awesome Serif.
   Grotesk body: "Inter" stands in for licensed Aktiv Grotesk.
   Swap via --font-display / --font-body once licenses are bought.
   ============================================================= */

:root {
  /* Brand deck, verbatim */
  --berry: #8C2353;        /* Pantone 7649 C */
  --rose: #C75983;         /* Pantone 7431 C */
  --cream: #FFF4E9;        /* Pantone 705 C  */

  /* Sampled from packaging renders */
  --orange-deep: #CA4B1B;
  --orange: #D8752F;
  --marigold: #F2C879;
  --paper: #F4ECDD;
  --brick: #B03A26;
  --ink: #231A1E;
  --navy: #2E3A59;        /* sampled from mockup PDP commerce UI and about intro */
  --fruit-red: #C92919;   /* sampled from the fruit icon set on the packaging */
  --footer-pink: #E8A3BF; /* light stop of the footer gradient */

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease-lux: cubic-bezier(.22, 1, .36, 1); /* shared motion signature */
  --nav-h: 92px;
  --nav-h-shrunk: 64px;
  --radius-card: 22px;
  --radius-pill: 999px;
  --max-w: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }

/* Fraunces tuned toward the Awesome Serif in the mockups: force the
   high-contrast display optical size, regular weight, tight tracking.
   Real fonts swap in via --font-display/--font-body once licensed. */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 420;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 144;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.display-italic { font-style: italic; }

.eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent, var(--berry));
  margin: 0 0 20px;
}
.statement .eyebrow { color: var(--cream); opacity: .75; }
.flavor-bleed .eyebrow { color: var(--cream); opacity: .75; }

/* Interim warming for the mango scroll/mix video (reads too yellow); the
   real fix is a re-render (AJ 8/2). Applies to the scrub video and the PDP
   autoplay mix video. */
.scrub-video.is-warm, video.is-warm {
  filter: saturate(1.28) brightness(.95) hue-rotate(-7deg);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95em 2.4em;
  border-radius: var(--radius-pill);
  border: 2px solid currentColor;
  color: var(--berry);
  background: transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--berry); border-color: var(--cream); color: var(--cream); }
.btn-solid:hover { background: var(--rose); }
.btn:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

/* ---------------- Nav ---------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--nav-color, var(--berry)) 96%, transparent);
  color: var(--cream);
  transition: height .3s ease, background-color .3s ease, box-shadow .3s ease,
    transform .4s var(--ease-lux);
}
.site-nav.nav-hidden { transform: translateY(-100%); }
.site-nav.shrunk {
  height: var(--nav-h-shrunk);
  background: color-mix(in srgb, var(--nav-color, var(--berry)) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(35, 26, 30, .25);
}
.site-nav .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: .8;
  color: var(--cream);
}
.logo em { font-style: italic; }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .1em;
  text-align: right;
  margin-top: 2px;
}
.logo img { height: 44px; width: auto; transition: height .3s ease; }
.site-nav.shrunk .logo img { height: 34px; }
.footer-grid .logo img { height: 74px; }
.nav-links {
  display: flex;
  gap: clamp(10px, 1.6vw, 28px);
  margin-inline: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--cream);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-icons { display: flex; gap: 18px; }
.nav-icons svg { width: 24px; height: 24px; stroke: var(--cream); fill: none; stroke-width: 1.8; }
.nav-toggle { display: none; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  place-items: end center;
  background: var(--berry);
}
/* Media sits below the fixed nav so the pouch is never cut off,
   and shows the full frame with no zoom. */
.hero-media {
  position: absolute;
  inset: var(--nav-h) 0 0 0;
  background: center / cover no-repeat;
}
/* Lower-left editorial block so the lines never cover the pouch label */
.hero-chapters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  justify-items: start;
  align-items: end;
  text-align: left;
  pointer-events: none;
  padding: 0 clamp(24px, 5vw, 72px) clamp(32px, 6vw, 88px);
}
.hero-chapter {
  grid-area: 1 / 1;
  margin: 0;
  max-width: 14em;
  font-family: var(--font-display);
  font-style: italic;
  /* Smaller so the lines clear the centered bag (Angel's note); roughly
     the product-page caption scale */
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.15;
  /* Balance the wrapped lines so "Hydration that works as hard as you do"
     breaks symmetrically instead of orphaning a word (Nick, round 4). */
  text-wrap: balance;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(35, 26, 30, .5);
  opacity: 0;
  visibility: hidden;
  /* Readability backing: a subtle darkened, blurred panel sits behind the
     active line so it stays legible over light footage. It fades with the
     line because it lives on the same element. */
  padding: .34em .55em;
  border-radius: 14px;
  background: rgba(35, 26, 30, .3);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.mix-stage { background: var(--rose) center / cover no-repeat; }
.mix-copy {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 2;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(35, 26, 30, .38);
  /* Same darkened, blurred backing so the caption reads over the video */
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(35, 26, 30, .28);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  max-width: min(90%, 22em);
}
.mix-copy .eyebrow { color: var(--cream); opacity: .85; margin-bottom: 10px; }
.mix-caption {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

/* ------------- Announcement marquee ------------- */
.marquee {
  background: var(--brick);
  color: var(--cream);
  overflow: hidden;
  padding-block: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-icon {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------- SKU feature sections ------------- */
.sku-feature {
  padding-block: clamp(72px, 10vw, 140px);
  background: var(--surface, var(--cream)) url("../assets/brand/paper.jpg") top left / 900px repeat;
  background-blend-mode: multiply;
  overflow: hidden;
}
.sku-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
}
.sku-feature.flip .sku-media { order: 2; }
.sku-media { position: relative; }
.float-icons { position: absolute; inset: -6% 0; pointer-events: none; }
.float-icon { position: absolute; width: clamp(34px, 4vw, 60px); opacity: .45; }
.float-icon.fi-0 { left: 4%; top: 14%; }
.float-icon.fi-1 { right: 2%; top: 34%; width: clamp(26px, 3vw, 46px); }
.float-icon.fi-2 { left: 10%; bottom: 6%; width: clamp(30px, 3.4vw, 52px); }
.sku-media img.pouch {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-inline: auto;
  filter: drop-shadow(0 40px 60px rgba(35, 26, 30, .22));
  will-change: transform;
}
.sku-copy h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.3rem);
  line-height: 1;
  color: var(--ink);
}
.sku-copy h2 .display-italic { color: var(--accent); }
.icon-row { display: flex; gap: 14px; margin-block: 26px; }
.icon-row img { width: 44px; height: 44px; object-fit: contain; }
.sku-copy p { font-size: 1.05rem; line-height: 1.65; max-width: 34em; }
/* Copy aligns to the outer edge, mirroring the pouch (mockup) */
.sku-feature:not(.flip) .sku-copy { text-align: right; }
.sku-feature:not(.flip) .sku-copy p { margin-left: auto; }
.sku-feature:not(.flip) .icon-row { justify-content: flex-end; }
.sku-copy .btn { color: var(--accent); margin-top: 20px; }
.sku-copy .btn:hover { background: var(--accent); color: var(--cream); }

/* ------------- Gradient statement ------------- */
.statement {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding-block: clamp(96px, 13vw, 180px);
  background: var(--rose) url("../assets/brand/mesh-pink.jpg") center / cover no-repeat;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../assets/brand/engraving-berry.png") left -8% top 10% / clamp(260px, 30vw, 460px) no-repeat,
    url("../assets/brand/engraving-berry.png") right -8% bottom -6% / clamp(260px, 30vw, 460px) no-repeat;
  opacity: .22;
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: scale(1.12) translate(2%, -2%); } }
.statement .wrap { position: relative; }
.statement h2 {
  font-style: normal;
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  max-width: 18em;
  margin-inline: auto;
}
/* Line 1 roman, line 2 italic on its own line */
.statement h2 .st-line { display: block; }
.statement h2 .st-line-italic { font-style: italic; margin-top: .12em; }
.statement h2 .word { display: inline-block; }
.statement p { max-width: 44em; margin: 1.4em auto; line-height: 1.7; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.statement .btn {
  color: var(--cream);
  background: var(--berry);
  border-color: var(--cream);
  font-size: .95rem;
  padding: 1.05em 2.9em;
}
.statement .btn:hover { background: var(--cream); color: var(--berry); }

/* ------------- Shop two-up ------------- */
.shop {
  background: var(--paper) url("../assets/brand/paper.jpg") top left / 900px repeat;
  background-blend-mode: multiply;
  position: relative;
  padding-block: clamp(72px, 10vw, 130px);
  overflow: hidden;
}
/* Packaging dominates: wider stage for the two-up so the pouches scale */
.shop .wrap { max-width: min(1600px, 100%); }
.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../assets/brand/engraving-berry.png") left -70px center / 420px no-repeat,
    url("../assets/brand/engraving-fruit-hi.png") right -60px center / 540px no-repeat;
  opacity: .12;
  pointer-events: none;
}
.shop h2 {
  text-align: center;
  font-style: italic;
  color: var(--berry);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  position: relative;
}
.shop-card { text-align: center; }
.shop-card img {
  width: min(100%, 640px);
  /* Fixed image box: toggling stick pack bag <-> container tub keeps the same
     footprint, so the buttons below never shift and both formats read the same
     size (contain preserves aspect). */
  height: clamp(440px, 46vw, 580px);
  object-fit: contain;
  margin-inline: auto;
  transition: transform .35s ease;
  filter: drop-shadow(0 26px 40px rgba(35,26,30,.18));
}
.shop-card:hover img { transform: translateY(-12px) rotate(-1.2deg); }
/* Flavor name sits ABOVE the pouch in the SKU deep color (mockup),
   rendered as the label lockup (first word roman, second italic) */
.shop-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep, var(--accent));
  margin-block: 0 4px;
}
/* Shared flavor lockup + card tagline. The name is roman with only the
   second word italic, and never wraps or adds a space between words. */
.flavor-name { font-style: normal; white-space: nowrap; }
.flavor-italic { font-style: italic; }
.card-tagline {
  color: var(--accent, var(--berry));
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin: 0 0 20px;
  opacity: .9;
}
.shop-card .size-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .85rem;
  font-weight: 600;
}
/* Format swatches: small bag/tub thumbnails, no text labels (Nick, round 4) */
.shop-card .size-row button.fmt-swatch {
  width: clamp(46px, 6.5vw, 62px);
  height: clamp(46px, 6.5vw, 62px);
  padding: 5px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(35, 26, 30, .14);
  background: var(--cream);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.shop-card .size-row button.fmt-swatch img {
  /* Override the large .shop-card img sizing so the thumbnail fits the swatch */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.shop-card .size-row button.fmt-swatch[aria-pressed="true"],
.shop-card .size-row button.fmt-swatch:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(35, 26, 30, .12);
  transform: translateY(-1px);
}
/* Solid filled pill per mockup: accent fill, deep border, cream text */
.btn-shop {
  background: var(--accent);
  border-color: var(--deep, var(--accent));
  color: var(--cream);
}
.btn-shop:hover { background: var(--deep, var(--accent)); }

/* ------------- Lifestyle: one full-bleed photo, copy overlaid ------------- */
.lifestyle {
  position: relative;
  min-height: clamp(480px, 88svh, 900px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--marigold);
  color: var(--cream);
  overflow: hidden;
}
.lifestyle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.lifestyle-copy {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 640px;
  padding: clamp(48px, 7vw, 110px) clamp(24px, 5vw, 88px);
}
.lifestyle-copy .icon-row { justify-content: flex-end; margin-block: 0 30px; }
.lifestyle h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-shadow: 0 2px 30px rgba(35, 26, 30, .25);
}
.lifestyle h2 .display-italic { color: var(--fruit-red); }
.lifestyle .eyebrow { color: var(--fruit-red); }

/* ------------- Products page ------------- */
.products-intro {
  background: var(--paper) url("../assets/brand/paper.jpg") top left / 900px repeat;
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 90px)) 0 clamp(72px, 10vw, 130px);
}
.products-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../assets/brand/engraving-berry.png") left -110px center / 480px no-repeat,
    url("../assets/brand/engraving-fruit-hi.png") right -120px center / 520px no-repeat;
  opacity: .12;
  pointer-events: none;
}
/* When a hero precedes the intro (products page), the hero already
   clears the nav; the intro drops its nav offset */
.hero + .products-intro { padding-top: clamp(56px, 8vw, 100px); }
.products-intro h1 {
  text-align: center;
  font-style: italic;
  color: var(--berry);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  margin-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}
.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  position: relative;
}
.p-card { text-align: center; }
.p-card img {
  width: min(100%, 480px);
  margin-inline: auto;
  filter: drop-shadow(0 26px 40px rgba(35,26,30,.18));
  transition: transform .35s ease;
}
.p-card:hover img { transform: translateY(-12px) rotate(-1.2deg); }
.p-card h2 {
  /* Roman, not italic, to match the label lockup (Nick, round 4) */
  font-style: normal;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep, var(--accent));
  margin-block: 22px;
}

/* Collection grid: the four offered variants */
/* Four larger, equal cards: 4-up on wide screens, 2-up on tablet,
   1-up on mobile. Flavor name stays on one line (label lockup). */
.c-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  position: relative;
}
.c-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: color-mix(in srgb, var(--cream) 65%, transparent);
  border-radius: var(--radius-card);
  padding: clamp(26px, 2.4vw, 42px) clamp(20px, 2vw, 32px) clamp(24px, 2.2vw, 36px);
}
.c-card img {
  width: 100%;
  /* Uniform image box so every card's title + text start at the same height,
     and the product is centered within it (no stretching; contain preserves
     aspect). */
  height: clamp(250px, 26vw, 300px);
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 20px 32px rgba(35,26,30,.16));
  transition: transform .35s ease;
}
.c-card:hover img { transform: translateY(-10px) rotate(-1.2deg); }
/* Label lockup: roman + italic (.flavor-italic), one line, no wrap */
.c-card h2 {
  font-style: normal;
  white-space: nowrap;
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  color: var(--deep, var(--accent));
  margin-block: 18px 12px;
}
/* Format and serving count on two clean, differentiated lines */
.c-format {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--berry);
  margin: 0;
}
.c-serv {
  font-size: .9rem;
  color: var(--ink);
  opacity: .68;
  margin: 4px 0 16px;
}
.c-prices {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 6px;
  width: 100%;
}
.c-prices li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .92rem;
  color: var(--navy);
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
  padding-bottom: 6px;
}
.c-prices strong { font-variant-numeric: tabular-nums; }
/* Equal-size CTA on every card, pinned to the bottom */
.c-card .btn-shop {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
@media (max-width: 1040px) { .c-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .c-grid { grid-template-columns: 1fr; } }

/* Subscribe-first pricing emphasis (owner review Aug 2026): Subscribe & Save
   is the primary line, Buy once the quiet secondary. */
.c-prices .c-sub { border-bottom: none; align-items: baseline; padding-bottom: 2px; }
.c-prices .c-sub span { font-weight: 700; color: var(--berry); }
.c-prices .c-sub strong { font-size: 1.15rem; color: var(--berry); }
.c-prices .c-once { font-size: .85rem; opacity: .75; border-bottom: none; padding-bottom: 0; }
/* Pre-launch arrival note above the grid */
.c-eta-note { text-align: center; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; color: var(--berry); margin: -6px 0 clamp(24px, 3vw, 40px); }
/* Pre-order eyebrow on The Collection (Nick, round 4) */
.products-intro.collection .c-preorder { text-align: center; color: var(--rose); margin-bottom: 10px; }
/* Bundles */
.bundles { padding-block: clamp(48px, 7vw, 96px); background: var(--paper); }
.bundles .eyebrow { text-align: center; color: var(--berry); opacity: .72; }
.bundles h2 { text-align: center; color: var(--berry); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: clamp(28px, 4vw, 48px); }
.bundle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .bundle-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.bundle-card { position: relative; --deep: var(--berry); --accent: var(--rose); }
.bundle-card h2 { white-space: normal; }
.bundle-blurb { font-size: .92rem; line-height: 1.5; color: var(--navy); opacity: .85; margin: 8px 0 16px; }
/* Fixed-height image row so every bundle's title + text start at the same y */
.bundle-imgs { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: clamp(200px, 22vw, 250px); }
.bundle-card .bundle-imgs img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; margin: 0; }
.c-badge { position: absolute; top: 14px; right: 14px; background: var(--berry); color: var(--cream); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .35em .8em; border-radius: var(--radius-pill); z-index: 2; }
/* "$240 value" line under the Complete Duo price (Nick, round 4) */
.bundle-value { text-align: center; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--rose); margin: -8px 0 14px; }
.more-coming { text-align: center; margin-top: clamp(28px, 4vw, 44px); font-style: italic; color: var(--berry); opacity: .8; font-size: 1.05rem; }
/* Real-photo cutouts (containers + bundles) carry their own soft contact
   shadow, so drop the card drop-shadow to avoid doubling, and size them up to
   sit comfortably alongside the bag cutouts. */
/* Bundles are flat composites; containers are now clean shadow-free cutouts,
   so they use the same card drop-shadow as the bags (grounded consistently). */
.bundle-card .bundle-imgs img { filter: none; }
/* Complete Duo (near-square 2x2 group) fills the image box height so it reads
   as big as the two-product kits beside it. */
.bundle-duo .bundle-imgs img:only-child { height: 100%; width: auto; }

/* Subscribe band on the collection page */
.sub-band {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
  background: var(--rose) url("../assets/brand/mesh-pink.jpg") center / cover no-repeat;
  padding-block: clamp(64px, 9vw, 120px);
  scroll-margin-top: var(--nav-h);
}
.sub-band .eyebrow { color: var(--cream); opacity: .8; }
.sub-band h2 {
  font-style: normal;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-bottom: clamp(20px, 3vw, 34px);
}
.sub-benefits {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 30em;
  display: grid;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}
.sub-benefits li { border-bottom: 1px solid color-mix(in srgb, var(--cream) 30%, transparent); padding-bottom: 12px; }
.sub-benefits li:last-child { border-bottom: 0; }
.sub-note { max-width: 38em; margin: 1.6em auto 0; font-size: .9rem; opacity: .85; line-height: 1.6; }
.sub-band .btn {
  margin-top: clamp(24px, 3vw, 34px);
  background: transparent; border-color: var(--cream); color: var(--cream);
  font-size: .95rem; padding: 1.05em 2.9em;
}
.sub-band .btn:hover { background: var(--cream); color: var(--berry); }

/* ---------- Let's be friends band ---------- */
.friends {
  background: var(--paper) url("../assets/brand/paper.jpg") top left / 900px repeat;
  background-blend-mode: multiply;
  text-align: center;
  padding-block: clamp(56px, 8vw, 110px);
  border-top: 1px solid color-mix(in srgb, var(--berry) 14%, transparent);
}
.friends .eyebrow { color: var(--berry); }
.friends h2 { color: var(--berry); font-style: italic; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.friends-body { max-width: 40em; margin: 14px auto clamp(24px, 3vw, 34px); line-height: 1.7; color: var(--navy); }
.friends-ig {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--berry); font-weight: 700; margin-bottom: clamp(22px, 3vw, 32px);
}
.friends-ig svg { width: 26px; height: 26px; fill: currentColor; }
.friends-ig:hover { color: var(--rose); }
.friends-form {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 32em; margin-inline: auto;
}
.friends-form input {
  flex: 1; min-width: 200px;
  font: inherit; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid color-mix(in srgb, var(--berry) 28%, transparent);
  border-radius: var(--radius-pill); padding: .85em 1.3em;
}
.friends-form button {
  font: inherit; font-weight: 700; letter-spacing: .06em;
  background: var(--berry); color: var(--cream);
  border: 2px solid var(--berry); border-radius: var(--radius-pill);
  padding: .85em 1.8em; cursor: pointer;
  transition: background-color .2s ease;
}
.friends-form button:hover { background: var(--rose); border-color: var(--rose); }

.split-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-pair img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vw, 740px);
  object-fit: cover;
}

.flavor-bleed {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--accent, var(--rose)) center / cover no-repeat;
  padding-block: clamp(72px, 10vw, 150px);
}
/* Raspberry used a too-white mesh; swap it for a clean berry->rose gradient
   so the cream text reads (AJ 8/2). Mango keeps its mesh-orange. */
.flavor-bleed[data-flavor="raspberry-hibiscus"] {
  background-image: linear-gradient(135deg, var(--deep, #8C2353), var(--accent, #C75983)) !important;
}
.flavor-bleed .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}
.flavor-bleed.flip .fb-media { order: 2; }
.flavor-bleed.flip .wrap { grid-template-columns: 1fr 1.1fr; }
/* Photography of hands holding the pouch (mockup look), not a cutout */
.flavor-bleed .fb-photo {
  width: 100%;
  max-height: clamp(420px, 70vh, 760px);
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 34px 70px rgba(35, 26, 30, .3);
  will-change: transform;
}
.flavor-bleed h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; }
.flavor-bleed p { font-size: 1.05rem; line-height: 1.7; max-width: 34em; }
/* Shop Stick Packs / Shop Container CTA pair (Nick, round 4). Cream on the
   colored bleed so both read against the gradient. */
.fb-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(24px, 3vw, 36px); }
.flavor-bleed .fb-ctas .btn-shop {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--deep, var(--accent));
}
.flavor-bleed .fb-ctas .btn-shop:hover { background: #fff; }
.flavor-bleed .fb-ctas .btn-ghost {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.flavor-bleed .fb-ctas .btn-ghost:hover { background: rgba(255, 244, 233, .16); }

/* ------------- Testimonials ------------- */
.testimonials { position: relative; }
.testimonials-bg {
  position: sticky;
  top: 0;
  height: 100svh;
  background: url("../assets/flatlay-pink.jpg") center / cover no-repeat;
  z-index: -1;
  margin-bottom: -100svh;
}
.testimonials-inner { padding-block: clamp(88px, 12vw, 160px); }
.testimonials h2 {
  text-align: center;
  color: var(--cream);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  text-shadow: 0 4px 30px rgba(35,26,30,.35);
  margin-bottom: clamp(44px, 6vw, 80px);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.t-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 24px 50px rgba(35, 26, 30, .22);
}
.t-card .t-head { display: flex; justify-content: space-between; align-items: flex-start; }
.t-card .stars { color: #F2B84B; font-size: 1.2rem; letter-spacing: 4px; }
.t-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .55;
  color: var(--t-accent, var(--rose));
}
.t-card blockquote { margin: 1em 0 1.4em; line-height: 1.6; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .who .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--t-accent, var(--rose));
}
.t-card .who strong { color: var(--t-accent, var(--berry)); }
.t-card .who span { display: block; font-size: .85rem; color: var(--t-accent, var(--rose)); }

/* ------------- Footer ------------- */
.site-footer {
  background: linear-gradient(120deg,
    var(--footer-a, var(--berry)),
    var(--footer-b, var(--rose)) 60%,
    var(--footer-c, var(--footer-pink)));
  color: var(--cream);
  padding-block: clamp(64px, 8vw, 110px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 3vw, 48px);
  align-content: start;
}
.footer-grid .logo { font-size: 2.6rem; }
/* Headers read as headers: heavy weight and an underline rule, while
   links below are lighter sentence case */
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid color-mix(in srgb, var(--cream) 55%, transparent);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-weight: 500; letter-spacing: .02em; font-size: .9rem; }
.footer-col a:hover { text-decoration: underline; }
.email-form { display: flex; margin-top: 16px; }
.email-form input {
  flex: 1;
  font: inherit;
  color: var(--cream);
  background: transparent;
  border: 2px solid var(--cream);
  border-radius: var(--radius-pill);
  padding: .9em 1.4em;
}
.email-form input::placeholder { color: color-mix(in srgb, var(--cream) 75%, transparent); }
.socials { display: flex; gap: 18px; margin-top: 26px; }
.socials svg { width: 30px; height: 30px; fill: var(--cream); }
.legal {
  margin-top: clamp(40px, 6vw, 70px);
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--cream) 35%, transparent);
  font-size: .78rem;
  line-height: 1.6;
  opacity: .85;
  max-width: 70em;
}

/* ------------- Preloader ------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--berry);
  display: grid;
  place-items: center;
  transition: transform .7s var(--ease-lux);
}
.preloader img {
  width: min(46vw, 320px);
  opacity: 0;
  transform: translateY(26px);
  animation: preloader-in .8s var(--ease-lux) .12s forwards;
}
@keyframes preloader-in { to { opacity: 1; transform: none; } }
.preloader.is-done { transform: translateY(-101%); }
.no-scroll { overflow: hidden; }

/* ------------- Scroll-scrub video ------------- */
.scrub-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}
.scrub-video.is-ready { opacity: 1; }
/* Compact static band by default (mobile, reduced motion, no footage).
   The wrapper must not clip: overflow on it would break the sticky. */
.mix-moment { position: relative; }
.mix-stage {
  position: sticky;
  top: 0;
  height: 100%;
  min-height: clamp(420px, 60svh, 720px);
  overflow: hidden;
}
/* With a mounted scrub the wrapper provides the scroll distance and the
   sticky stage holds through the clip: no JS pinning, no jump */
.mix-moment.has-scrub { height: 220svh; }
.mix-moment.has-scrub .mix-stage { height: 100svh; min-height: 520px; }

/* ------------- Film grain ------------- */
.hero::after,
.statement::after,
.flavor-bleed::after,
.mix-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .07;
  mix-blend-mode: soft-light;
}

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

/* ------------- Responsive ------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    color: var(--cream);
    font-size: 1.6rem;
    cursor: pointer;
  }
  /* Hamburger menu: full-width panel under the bar */
  .site-nav.is-open .nav-links {
    display: grid;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px clamp(20px, 4vw, 56px) 24px;
    background: color-mix(in srgb, var(--nav-color, var(--berry)) 97%, transparent);
    box-shadow: 0 18px 40px rgba(35, 26, 30, .3);
  }
  .site-nav.is-open .nav-links a {
    display: block;
    padding-block: 12px;
    font-size: .95rem;
  }
  .site-nav .wrap { justify-content: space-between; }
  .sku-grid { grid-template-columns: 1fr; }
  .sku-feature.flip .sku-media { order: 0; }
  .split-pair { grid-template-columns: 1fr; }
  .split-pair img { min-height: 0; max-height: 55vh; }
  .flavor-bleed .wrap { grid-template-columns: 1fr; }
  .flavor-bleed.flip .fb-media { order: 0; }
  .lifestyle { min-height: 62svh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ------------- Homepage "Formulated for Women" teaser -------------
   REVISIONS.md #1 priority: answer "what makes this for women?" on the
   homepage with a section and a CTA to the differentiator page. */
.fw-teaser {
  /* Soft peachy-pink gradient with dark berry text (Angel's note): fixes
     the white-on-mesh washout and reads clearly across the whole panel */
  background: linear-gradient(150deg, #F6B8A8, #F0A0AE 55%, #E890A8);
  color: var(--berry);
  padding-block: clamp(64px, 9vw, 130px);
  text-align: center;
  position: relative;
}
.fw-teaser .eyebrow { color: var(--berry); opacity: .72; }
.fw-teaser h2 {
  color: var(--berry);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .98;
  margin-bottom: clamp(16px, 2.5vw, 26px);
}
/* "Made for women." drops to its own line (Angel's note) */
.fw-teaser h2 .display-italic { font-style: italic; display: block; }
.fw-teaser .fw-intro {
  max-width: 42em;
  margin: 0 auto clamp(16px, 2.4vw, 26px);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--berry);
  opacity: .9;
}
/* Founders' line between the intro and the cards (owner review Aug 2026) */
.fw-teaser .fw-lede {
  max-width: 40em;
  margin: 0 auto clamp(36px, 5vw, 58px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--berry);
}
.fw-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: left;
}
.fw-card {
  background: color-mix(in srgb, var(--cream) 86%, #fff);
  border: 1px solid color-mix(in srgb, var(--berry) 20%, transparent);
  border-radius: var(--radius-card);
  padding: clamp(20px, 2.2vw, 30px);
}
.fw-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  color: var(--berry);
  margin-bottom: .6em;
}
.fw-card p { line-height: 1.6; font-size: .95rem; color: var(--ink); margin: 0; }
/* Matches the "Read our story" (statement) button: berry fill, cream
   outline, same size */
.fw-teaser .btn {
  background: var(--berry);
  border-color: var(--cream);
  color: var(--cream);
  font-size: .95rem;
  padding: 1.05em 2.9em;
}
.fw-teaser .btn:hover { background: var(--cream); color: var(--berry); }
@media (max-width: 700px) {
  .fw-cards { grid-template-columns: 1fr; text-align: center; }
}

/* ------------- Sitewide FAQ (above the footer on every page) ------------- */
.site-faq {
  background: var(--paper) url("../assets/brand/paper.jpg") top left / 900px repeat;
  background-blend-mode: multiply;
  padding-block: clamp(56px, 8vw, 100px);
}
.site-faq h2 {
  text-align: center;
  font-style: italic;
  color: var(--berry);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.site-faq-list { max-width: 46em; margin-inline: auto; display: grid; gap: 14px; }
.site-faq details {
  background: color-mix(in srgb, var(--cream) 75%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--berry) 22%, transparent);
  border-radius: 14px;
  overflow: hidden;
}
.site-faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 1em 1.3em;
  font-weight: 700;
  color: var(--berry);
  cursor: pointer;
}
.site-faq summary::-webkit-details-marker { display: none; }
.site-faq summary::after {
  content: "";
  width: 8px; height: 8px; flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s ease;
}
.site-faq details[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.site-faq-body { padding: 0 1.3em 1.2em; line-height: 1.65; color: var(--ink); }
.site-faq-body a { color: var(--berry); text-decoration: underline; }
.site-faq-more { text-align: center; margin-top: 22px; }
.site-faq-more a { color: var(--berry); font-weight: 700; text-decoration: underline; }

/* ------------- Reduced motion ------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scrub-video { display: none; }
  .preloader { display: none; }
  .marquee-track { animation: none; }
  .statement::before { animation: none; }
  /* No pin, no timeline: show the first chapter line statically */
  .hero-chapter:first-child { opacity: 1; visibility: visible; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
