:root {
  --cream: #f8efdf;
  --cream-soft: #fff9f0;
  --honey: #f2b84c;
  --amber: #ca7a2b;
  --cocoa: #6f3517;
  --cocoa-dark: #3f1d10;
  --sage: #6f8572;
  --sky: #d9edf7;
  --teal: #7ea7a6;
  --ink: #1f1b19;
  --paper: rgba(255, 251, 244, 0.52);
  --paper-strong: rgba(255, 251, 244, 0.7);
  --border: rgba(255, 255, 255, 0.38);
  --shadow: 0 24px 70px rgba(73, 89, 112, 0.16);
  --hero-stack-gap: clamp(0.85rem, 1.8vw, 1.35rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #dce8f7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.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;
}

.sky-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sky-layer {
  position: absolute;
  inset: 0;
}

.sky-photo {
  background-image: url("assets/cloud_improved.png");
  /* Extended upward: 45% gives 567px headroom above viewport (~3150px scroll before gap) */
  background-position: 50% calc(45% + var(--sky-offset, 0px));
  background-repeat: no-repeat;
  background-size: cover;
  /* Cool blue image → pull back blue saturation, nudge hue warm, lift brightness */
  filter: saturate(0.76) contrast(0.91) brightness(1.08) hue-rotate(6deg);
  animation: sky-ken-burns 90s ease-in-out infinite;
  will-change: transform;
}

/* High DPI image — lower scale range still covers gaps with much more pixel detail */
@keyframes sky-ken-burns {
  0%   { transform: scale(1.06) translate(0%,    0%   ); }
  20%  { transform: scale(1.09) translate(-0.5%, 0.4% ); }
  40%  { transform: scale(1.07) translate(0.3%,  0.6% ); }
  60%  { transform: scale(1.10) translate(-0.2%, 0.3% ); }
  80%  { transform: scale(1.08) translate(0.4%,  0.5% ); }
  100% { transform: scale(1.06) translate(0%,    0%   ); }
}

/* Mobile — keep full viewport coverage while preserving the same drift effect. */
@media (max-width: 680px) {
  .sky-photo {
    background-position: 50% calc(5% + var(--sky-offset, 0px));
    background-size: cover;
    animation-duration: 150s;
  }
}

.sky-tint {
  background:
    radial-gradient(circle at top, rgba(255, 244, 218, 0.32), transparent 38%),
    radial-gradient(circle at 80% 100%, rgba(240, 245, 255, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 230, 0.18), rgba(248, 243, 236, 0.22) 46%, rgba(255, 250, 244, 0.26));
}

.sky-vignette {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 46%, rgba(118, 149, 190, 0.14) 100%),
    linear-gradient(180deg, rgba(224, 234, 248, 0.1), rgba(255, 253, 248, 0.1));
  box-shadow:
    inset 0 0 160px rgba(255, 248, 238, 0.34),
    inset 0 -90px 140px rgba(255, 250, 243, 0.28);
}

.sky-grain {
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  filter: contrast(160%) brightness(96%);
}

.page-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.page-shell > main {
  flex: 1;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(6px);
}

.page-shell::before {
  top: 6rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 238, 196, 0.22);
}

.page-shell::after {
  top: 36rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(183, 211, 235, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 1rem;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  box-shadow: none;
}

.announcement-bar {
  display: block;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  background: linear-gradient(90deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  backdrop-filter: none;
  transition: filter 160ms ease, box-shadow 160ms ease;
}

.announcement-bar:hover,
.announcement-bar:focus-visible {
  filter: brightness(1.04);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.22);
}

.nav-shell,
.section,
.metrics-band {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.24);
  backdrop-filter: blur(16px) saturate(155%);
}

.brandmark {
  width: clamp(7rem, 12vw, 9rem);
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.brandmark img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 200ms ease;
}

.brandmark-hover-video {
  position: absolute;
  /* top/left/width/height set dynamically in JS to align the face circle */
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

/* ── Page transition overlay ── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.page-transition-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.page-transition-video {
  width: min(480px, 70vw);
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(31, 27, 25, 0.9);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--cocoa);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.27rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.42);
  backdrop-filter: blur(14px);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--cocoa);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  color: var(--cream-soft);
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  box-shadow: 0 18px 40px rgba(255, 127, 31, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 127, 31, 0.34);
  filter: saturate(1.06);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.15rem;
}

.button-secondary {
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.section {
  padding: 4rem 0;
}

.hero-band {
  width: 100%;
  margin-top: var(--hero-stack-gap);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
  min-height: auto;
  padding-top: 1.2rem;
  padding-bottom: 2.35rem;
}

.hero-copy {
  padding: clamp(1.4rem, 3vw, 2.15rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.48), rgba(255, 250, 244, 0.26));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero-band .hero-copy {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--cocoa-dark);
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.7rem);
  max-width: 12ch;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  max-width: 100%;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.45rem;
}

.hero-body,
.story-copy p,
.info-card p,
.process-card p,
.blend-card p,
.comparison-card li,
.cta-panel p {
  line-height: 1.78;
  color: rgba(31, 27, 25, 0.76);
}

.hero-body {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.proof-points li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  align-self: start;
  will-change: transform;
}

.visual-stage {
  position: relative;
  min-height: 38rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.2), rgba(255, 252, 247, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

.visual-stage-product-collage {
  width: min(100%, 35.25rem);
  aspect-ratio: 560 / 808;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.shape {
  position: absolute;
  border-radius: 2rem;
  transform: rotate(-7deg);
}

.shape-one {
  inset: 1.5rem 1rem 8rem 5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(126, 167, 166, 0.08));
}

.shape-two {
  inset: 5rem 5rem 2rem 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 249, 240, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.product-card,
.floating-note,
.info-card,
.process-card,
.blend-card,
.comparison-card,
.metrics-band,
.story-layout,
.cta-panel,
.metric {
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.product-card {
  position: absolute;
  inset: 3rem 4.5rem 6rem 3rem;
  padding: 1rem;
  border-radius: 2.2rem;
  overflow: hidden;
}

.card-tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  background: rgba(63, 29, 16, 0.72);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.floating-note {
  position: absolute;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
}

.floating-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--cocoa-dark);
}

.floating-note span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(31, 27, 25, 0.74);
}

.floating-note-primary {
  top: 0.25rem;
  right: 0.5rem;
  animation: drift 6s ease-in-out infinite;
}

.floating-note-secondary {
  bottom: 2rem;
  left: 0;
  animation: drift 7.5s ease-in-out infinite reverse;
}

.hero-pouch-art,
.hero-sachet {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
}

.hero-pouch-art {
  left: 5.6%;
  bottom: 1.1%;
  width: 56.2%;
  z-index: 3;
  transform: rotate(5.6deg) translateZ(0);
  filter: drop-shadow(0 28px 36px rgba(111, 53, 23, 0.2));
}

.hero-sachet {
  transform-origin: center bottom;
  filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.14));
}

.hero-sachet-front-top {
  top: -3.8%;
  left: 47.2%;
  width: 15.8%;
  z-index: 5;
  transform: rotate(0deg);
}

.hero-sachet-front-right {
  top: -4.8%;
  left: 76.8%;
  width: 21.8%;
  z-index: 4;
  transform: rotate(35deg);
}

.hero-sachet-front-lower {
  top: 24.2%;
  left: 33.2%;
  width: 15.4%;
  z-index: 2;
  transform: rotate(2.4deg);
}

.hero-sachet-back {
  top: 19.2%;
  left: 56%;
  width: 14.7%;
  z-index: 4;
  transform: rotate(14deg);
}

.metrics-band {
  margin-top: var(--hero-stack-gap);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 1rem;
  border-radius: 0;
  background: #F7EFE4;
  border-block: 1px solid #F7EFE4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.metric {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: none;
}

.metric-word {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--cocoa);
  white-space: nowrap;
}

.metrics-marquee-band {
  --metrics-marquee-gap: 1rem;
  margin-top: var(--hero-stack-gap);
  width: 100%;
  padding: 1.05rem 0;
  background: #F7EFE4;
  border-block: 1px solid #F7EFE4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.metrics-marquee {
  overflow: hidden;
}

.metrics-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--metrics-marquee-gap);
  width: max-content;
  transform: translateX(0);
  will-change: transform;
}

.metrics-marquee-band.is-marquee-ready .metrics-marquee-track {
  animation: metrics-marquee-scroll 18s linear infinite;
}

.metrics-marquee-group {
  display: flex;
  align-items: center;
  gap: var(--metrics-marquee-gap);
  flex-shrink: 0;
}

.metrics-marquee-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: #ffffff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--cocoa);
  white-space: nowrap;
}

@keyframes metrics-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--metrics-marquee-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .metrics-marquee-track {
    animation: none;
  }
}

.statement-band {
  position: relative;
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 146, 92, 0.18), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 244, 227, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(90, 48, 29, 0.97), rgba(118, 72, 46, 0.96) 52%, rgba(101, 59, 36, 0.98));
  border-block: 1px solid rgba(255, 241, 224, 0.18);
}

.statement-inner {
  width: min(1120px, calc(100% - 3rem));
  min-height: clamp(24rem, 58vh, 43rem);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(2.8rem, 6.4vw, 5rem) 0;
}

.statement-display {
  --scroll-fade-progress: 0;
  margin: 0;
  max-width: 11.5ch;
  text-align: center;
  text-wrap: balance;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: rgba(255, 248, 239, calc(0.78 + (var(--scroll-fade-progress) * 0.22)));
  opacity: calc(0.76 + (var(--scroll-fade-progress) * 0.24));
  filter: blur(calc((1 - var(--scroll-fade-progress)) * 5px));
  transform: translateY(calc((1 - var(--scroll-fade-progress)) * 1.4rem));
  text-shadow: 0 0 calc((1 - var(--scroll-fade-progress)) * 14px) rgba(255, 251, 245, 0.16);
  transition: opacity 140ms linear, color 140ms linear, filter 140ms linear, transform 140ms linear, text-shadow 140ms linear;
}

.reserved-sections {
  padding-top: 3.35rem;
  padding-bottom: 3rem;
}

.reserved-sections-list {
  display: grid;
  gap: 2.15rem;
}

.reserved-section-item {
  padding: 0.25rem 0;
}

.reserved-section-item h2 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 34px rgba(73, 89, 112, 0.08);
}


.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 16ch;
}

.card-grid,
.process-grid,
.blend-grid,
.comparison-grid {
  display: grid;
  gap: 1.1rem;
}

.card-grid,
.blend-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.info-card,
.ingredient-card,
.process-card,
.blend-card,
.comparison-card {
  padding: 1.6rem;
  border-radius: 1.7rem;
}

.card-index,
.ingredient-chip,
.process-step,
.blend-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(242, 184, 76, 0.18);
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 700;
}

.ingredient-card {
  min-height: 18rem;
  background: rgba(255, 251, 244, 0.62);
}

.ingredient-card p {
  line-height: 1.8;
  color: rgba(31, 27, 25, 0.76);
}

.hiw-title-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 2.5rem max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem));
  background-image: url('assets/ingredient-turmeric.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hiw-title-banner .eyebrow,
.hiw-title-banner h1 {
  white-space: nowrap;
}

.hiw-title-banner .eyebrow {
  color: var(--cocoa);
  margin-bottom: 0.35rem;
}

.hiw-title-banner h1 {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  color: var(--cocoa-dark);
}

.wi-intro {
  margin-bottom: 2rem;
}

.wi-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.4rem 0 0.8rem;
  line-height: 1.05;
}

.wi-intro-note {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.62);
}

.ingredient-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ingredient-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 53, 23, 0.24);
  border-radius: 1.7rem;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.ingredient-story-reveal {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  border-radius: 1.7rem;
  background: rgba(255, 251, 244, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.ingredient-photo-card:hover .ingredient-story-reveal,
.ingredient-photo-card:focus-within .ingredient-story-reveal,
.ingredient-photo-card.is-story-open .ingredient-story-reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: none), (pointer: coarse) {
  .ingredient-photo-card:hover .ingredient-story-reveal,
  .ingredient-photo-card:focus-within .ingredient-story-reveal {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .ingredient-photo-card.is-story-open .ingredient-story-reveal {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.ingredient-story-label {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(202, 122, 43, 0.14);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.ingredient-story-reveal h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--cocoa-dark);
}

.ingredient-story-reveal p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.78);
}

.ingredient-photo-frame {
  aspect-ratio: 1 / 1;
  background: rgba(255, 248, 236, 0.9);
}

.ingredient-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-photo-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem 1.3rem;
}

.ingredient-photo-copy h3 {
  font-size: 1.2rem;
  line-height: 1.1;
}

.ingredient-photo-copy p {
  margin: 0;
  line-height: 1.5;
  color: rgba(31, 27, 25, 0.78);
}

.phyto-section {
  position: relative;
  padding-top: 3.25rem;
}

.phyto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(255, 190, 92, 0.08), transparent 22rem);
  z-index: -1;
}

.phyto-layout {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.phyto-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(2.3rem, 5vw, 4rem) clamp(1.3rem, 5vw, 4rem);
  background: #85a8a5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.phyto-band-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.phyto-band-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.phyto-band-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phyto-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

.phyto-band-layout h2 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #fff;
}

.phyto-band-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-top: 0.2rem;
}

.phyto-band-copy p,
.phyto-support-copy,
.phyto-card p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.phyto-card {
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.phyto-card p {
  margin: 0;
}

.phyto-support-copy {
  margin: 1.2rem 0 0;
}

.phyto-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.phyto-card {
  min-height: 100%;
}

.phyto-card--combined {
  grid-column: 1 / -1;
}

.phyto-card--combined::before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 159, 67, 0.95), rgba(126, 167, 166, 0.7));
}

.phyto-card--combined h3,
.phyto-card--combined p {
  max-width: 34ch;
}

.phyto-card h3 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .phyto-band-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .phyto-band-layout h2 {
    max-width: 11ch;
  }

  .phyto-band-copy {
    padding-top: 0;
    max-width: 42rem;
  }

  .wiw-intro-band {
    grid-template-columns: minmax(0, 0.98fr) 3px minmax(0, 1.02fr);
    gap: 0.7rem;
    align-items: center;
  }

  .wiw-intro-side-left {
    justify-items: end;
  }

  .wiw-intro-side-right {
    justify-items: start;
  }

  .wiw-intro-divider {
    display: block;
    height: 100%;
    min-height: 15rem;
    align-self: stretch;
  }

  .wiw-heading {
    max-width: 6.4ch;
  }

  .wiw-subtext {
    max-width: none;
  }

  .wiw-subtext-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    width: min(100%, 18rem);
    align-items: start;
  }
}

@media (max-width: 680px) {
  .phyto-section {
    padding-top: 2rem;
  }

  .phyto-section::before {
    inset: 0;
  }

  .phyto-band {
    padding: 1.7rem 1rem 1.9rem;
  }

  .phyto-band-inner,
  .phyto-layout {
    width: min(100%, calc(100% - 0.2rem));
  }

  .phyto-band-head {
    gap: 0.7rem;
  }

  .phyto-band-layout h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .phyto-band-copy p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .wiw-intro-band {
    padding: 1.7rem 1rem 1.9rem;
    gap: 0.9rem;
  }

  .wiw-heading {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .wiw-subtext {
    font-size: 0.98rem;
    line-height: 1.72;
    max-width: none;
  }
}

.phyto-chip {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.18);
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-section {
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 7rem 0 auto;
  height: 14rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, rgba(242, 184, 76, 0.12), rgba(126, 167, 166, 0.08));
  z-index: -1;
}

.featured-section {
  padding-top: 4.5rem;
}

.blend-card {
  min-height: 16rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.8), rgba(255, 251, 244, 0.62)),
    linear-gradient(135deg, rgba(242, 184, 76, 0.14), rgba(126, 167, 166, 0.08));
}

.story-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  padding: 1.3rem;
  border-radius: 2rem;
  background: var(--paper-strong);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: 1.5rem;
}

.story-copy {
  padding: 1.2rem 0.8rem 1.2rem 0.2rem;
  align-self: center;
}

.story-copy .button-secondary {
  margin-top: 1.5rem;
}

.story-copy blockquote {
  margin: 1.8rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(202, 122, 43, 0.35);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--cocoa);
}

.comparison-card ul {
  padding-left: 1.2rem;
  margin: 1.1rem 0 0;
}

.comparison-card li + li {
  margin-top: 0.75rem;
}

.testimonials-section {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.testimonials-section .testimonials-heading {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.testimonials-section .testimonials-heading h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--cocoa-dark);
  margin: 0 0 0.65rem;
  max-width: none;
  text-align: center;
}

.testimonials-subtext {
  font-size: 1rem;
  color: rgba(111, 53, 23, 0.65);
  margin: 0;
  line-height: 1.55;
}

.testimonials-carousel {
  --testimonials-gap: 1.1rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.35rem;
  background: #ffffff;
}

.testimonials-track {
  display: flex;
  gap: var(--testimonials-gap);
  width: max-content;
  animation: testimonials-scroll 34s linear infinite;
  will-change: transform;
}

.testimonials-group {
  display: flex;
  gap: var(--testimonials-gap);
  flex-shrink: 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  width: clamp(17.5rem, 27vw, 22rem);
  min-height: 18rem;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: rgba(255, 249, 240, 0.88);
  border: 1px solid #000000;
  box-shadow: 0 8px 32px rgba(73, 40, 20, 0.10), 0 1px 4px rgba(73, 40, 20, 0.06);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--honey);
}

.testimonial-stars svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.testimonial-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(242, 184, 76, 0.18);
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-card p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--cocoa-dark);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  color: rgba(31, 27, 25, 0.72);
}

.testimonial-meta strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.testimonial-meta span {
  font-size: 0.9rem;
}

.testimonial-meta span:empty {
  display: none;
}

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--testimonials-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-panel {
  padding: 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.92), rgba(248, 239, 223, 0.82)),
    linear-gradient(135deg, rgba(126, 167, 166, 0.12), rgba(242, 184, 76, 0.16));
}

.cta-panel h2 {
  max-width: 14ch;
}

.story-page-main {
  padding-bottom: 2rem;
}

.story-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.story-page-copy,
.story-photo-shell,
.story-block {
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.story-page-copy {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.58), rgba(255, 251, 245, 0.3));
}

.story-photo-shell {
  padding: 1rem;
  border-radius: 2.2rem;
  background: rgba(255, 251, 245, 0.42);
}

.story-photo-shell img {
  width: 100%;
  border-radius: 1.5rem;
}

.story-blocks-section {
  width: 100% !important;
  max-width: none !important;
  padding: 0.25rem 0 3rem;
}

.story-blocks {
  width: 100%;
  margin: 0;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: 0 3rem;
  box-sizing: border-box;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.story-row:nth-child(odd) .story-photo-frame {
  order: -1;
}

.story-row:nth-child(even) .story-photo-frame {
  order: 1;
}

.story-block {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1.9rem;
  background: rgba(255, 251, 245, 0.56);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-block p {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.9;
  color: rgba(31, 27, 25, 0.82);
}

.story-photo-frame {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  background: rgba(255, 251, 245, 0.36);
  padding: 0.75rem;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  display: flex;
}

.story-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

.citrus-label {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto 2rem;
  max-width: 11ch;
  text-align: center;
  text-wrap: balance;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: rgba(63, 29, 16, 0.92);
}

.story-citrus-band {
  width: 100%;
  overflow: hidden;
  max-height: 22rem;
  margin-bottom: 4rem;
}

.story-citrus-band img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .story-citrus-band {
    max-height: 11rem;
  }
  .story-citrus-band img {
    height: 11rem;
  }
}

.story-reason-section {
  padding-top: 0.5rem;
}

.story-reason-grid .ingredient-card {
  min-height: 0;
}

.story-reason-grid .ingredient-card h3 {
  margin-bottom: 0.9rem;
}

.story-reason-grid .ingredient-card p {
  margin: 0;
}

.when-to-take-band {
  width: 100%;
  background: #7FA7A6;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.when-to-take-heading {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.when-to-take-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 3.5rem;
  width: 100%;
  max-width: 1200px;
}

.when-to-take-item {
  padding: 0;
  display: grid;
  grid-template-columns: clamp(4.9rem, 10vw, 5.9rem) minmax(0, 1fr);
  align-items: center;
  column-gap: 1.15rem;
}

.when-to-take-item--chaos {
  grid-template-columns: clamp(8.5rem, 17vw, 10.5rem) minmax(0, 1fr);
  column-gap: 1rem;
}

.when-to-take-icon,
.when-to-take-icon-spacer {
  width: clamp(4.9rem, 10vw, 5.9rem);
  height: clamp(4.9rem, 10vw, 5.9rem);
}

.when-to-take-icon {
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
}

.when-to-take-icon--foggy {
  transform: scale(1.23);
}

.when-to-take-icon--chaos {
  width: clamp(8.5rem, 17vw, 10.5rem);
  height: clamp(4.9rem, 10vw, 5.9rem);
  transform: scale(1.13);
}

.when-to-take-item p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #fff;
  text-align: left;
  line-height: 1.3;
}

.story-shop-section {
  padding-bottom: 2rem;
}

.story-shop-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(9.75rem, 16vw, 12rem);
  padding: 1.8rem;
  border-radius: 2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.01em;
  color: var(--cream-soft);
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  box-shadow: 0 24px 54px rgba(255, 127, 31, 0.28);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.story-shop-link:hover,
.story-shop-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 58px rgba(255, 127, 31, 0.34);
  filter: saturate(1.06);
}

.site-footer {
  width: 100%;
  margin: 0 0 3rem;
  padding-top: 1rem;
  display: grid;
  gap: 1.1rem;
}

.footer-legal-shell,
.contact-intro,
.contact-form-shell,
.refund-hero-copy,
.refund-side-card,
.refund-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.footer-link-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--cocoa);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-legal-copy p,
.refund-side-card p,
.refund-detail-card p {
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.76);
}

.footer-legal-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(82, 48, 27, 0.86), rgba(63, 29, 16, 0.8));
}

.footer-link-columns {
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(12rem, max-content) 1px minmax(12rem, max-content);
  justify-content: center;
  justify-items: stretch;
  align-items: start;
  column-gap: 1.5rem;
}

.footer-link-column {
  display: grid;
  gap: 0.85rem;
  width: 100%;
  align-content: start;
}

.footer-link-columns > .footer-link-column:first-child {
  justify-items: end;
}

.footer-link-columns > .footer-link-column:first-child a {
  text-align: right;
}

.footer-link-column a {
  color: rgba(255, 249, 240, 0.96);
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}

.footer-link-column a:hover,
.footer-link-column a:focus-visible {
  color: #ffffff;
}

.footer-link-divider {
  display: block;
  align-self: stretch;
  justify-self: center;
  width: 1px;
  min-height: 100%;
  background: rgba(255, 249, 240, 0.46);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 249, 240, 0.74);
  text-align: left;
}

.footer-disclaimer {
  margin: 0;
  width: min(72ch, 100%);
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 249, 240, 0.60);
  text-align: left;
  justify-self: start;
}

.contact-page-main,
.refunds-page-main,
.shop-page-main,
.science-page-main {
  padding-bottom: 2rem;
}

.early-stack-hero {
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}

.early-stack-wrap {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: min(68rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.early-stack-title {
  width: min(100%, 12.8ch);
  max-width: none;
  display: grid;
  justify-items: start;
  gap: 0.08em;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.early-stack-title span {
  display: block;
  width: fit-content;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(73, 89, 112, 0.14);
}

.early-stack-title span:nth-child(1) {
  transform: translateX(-11%);
}

.early-stack-title span:nth-child(2) {
  transform: translateX(-2%);
}

.early-stack-title span:nth-child(3) {
  transform: translateX(3%);
}

.early-stack-title span:nth-child(4) {
  transform: translateX(13%);
  color: rgba(63, 29, 16, 0.82);
}

.early-stack-title span:nth-child(5) {
  justify-self: end;
  transform: translateX(23%);
  color: var(--amber);
}

.early-stack-subtitle {
  max-width: 48rem;
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(31, 27, 25, 0.74);
}

.early-stack-actions {
  margin-top: 0.5rem;
  justify-content: center;
}

.contact-page-hero,
.refunds-page-hero,
.shop-page-hero,
.science-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 1.5rem;
  padding-bottom: 0.25rem;
}

.early-testers-main .contact-page-hero {
  padding-top: 0.8rem;
  width: min(1084px, calc(100% - 2rem));
  transform: translateX(-1.5rem);
}

.contact-intro,
.refund-hero-copy {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.6), rgba(255, 251, 245, 0.34));
}

.contact-form-shell,
.refund-side-card,
.refund-detail-card {
  padding: 1.8rem;
  border-radius: 1.9rem;
  background: rgba(255, 251, 245, 0.56);
}

.contact-email-pill {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.34);
  color: var(--cocoa);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.early-perks-shell,
.early-application-shell {
  display: grid;
  gap: 1.25rem;
}

.early-benefits-shell {
  display: grid;
  gap: 1.2rem;
}

.early-perks-shell h2 {
  max-width: none;
}

.early-benefits-shell h2 {
  max-width: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.survey-checklist {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.survey-checklist li {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.34);
  line-height: 1.65;
  color: rgba(31, 27, 25, 0.82);
}

.early-benefits-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding-left: 0;
  line-height: 1.72;
  color: rgba(31, 27, 25, 0.82);
  list-style-position: inside;
}

.early-benefits-list li {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 28px rgba(73, 89, 112, 0.08);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cocoa-dark);
}

.early-benefits-list li::marker {
  color: var(--amber);
  font-size: 1.15em;
}

.survey-group {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.3rem 1.35rem 1.4rem;
  border: 1px solid rgba(111, 53, 23, 0.1);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.24);
}

.survey-group legend {
  padding: 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  color: var(--cocoa-dark);
}

.survey-group-note {
  margin: 0;
  line-height: 1.65;
  color: rgba(31, 27, 25, 0.72);
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  font-weight: 600;
  color: var(--cocoa);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(111, 53, 23, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(201, 117, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(242, 184, 76, 0.16);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.field-optional,
.field-example {
  font-weight: 400;
  font-style: normal;
  opacity: 0.58;
  font-size: 0.9em;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(31, 27, 25, 0.72);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-note {
  margin: 0;
  max-width: 34ch;
  line-height: 1.65;
  color: rgba(31, 27, 25, 0.72);
}

.form-status {
  font-weight: 600;
  color: var(--cocoa);
}

.form-status:empty {
  display: none;
  min-height: 0 !important;
}

.refund-side-card h3,
.refund-detail-card h3 {
  margin-bottom: 0.8rem;
}

.support-hero-copy {
  gap: 1rem;
}

.support-hero-actions {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.support-response-note {
  margin: 0;
  max-width: 46rem;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.72);
}

.support-checklist {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: rgba(31, 27, 25, 0.78);
  line-height: 1.7;
}

.support-checklist a {
  color: var(--cocoa);
  font-weight: 700;
}

.support-topics-section,
.support-help-section {
  padding-top: 0.25rem;
}

.support-section-heading {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1rem;
}

.support-section-heading h2 {
  margin: 0;
  max-width: 16ch;
}

.refund-details-section {
  padding-top: 0.25rem;
}

.refund-details-grid {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.support-help-grid {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.support-note-card {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.support-email-button {
  justify-self: start;
  margin-top: 0.6rem;
}

.shop-page-hero {
  grid-template-columns: 1.05fr 0.95fr;
}

.shop-hero-copy,
.shop-product-shell,
.shop-note-card,
.shop-plan-card,
.shop-detail-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.shop-hero-copy,
.shop-product-shell {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.62), rgba(255, 251, 245, 0.38));
}

.shop-note-card,
.shop-plan-card,
.shop-detail-card {
  background: rgba(255, 251, 245, 0.58);
}

.shop-visual-stack {
  display: grid;
  gap: 1.1rem;
}

.shop-badge,
.shop-plan-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(242, 184, 76, 0.22);
  color: var(--cocoa);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.shop-product-shell {
  display: grid;
  gap: 1.25rem;
}

.shop-product-shell img {
  width: min(24rem, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 28px 44px rgba(63, 29, 16, 0.18));
}

.shop-visual-copy {
  display: grid;
  gap: 0.5rem;
}

.shop-visual-copy h2,
.shop-plan-card h3,
.shop-detail-card h3 {
  margin: 0;
}

.shop-visual-copy p,
.shop-note-card p,
.shop-plan-subtitle,
.shop-plan-note,
.shop-detail-card p,
.shop-fine-print {
  margin: 0;
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.78);
}

.shop-highlight-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.shop-highlight-list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.82);
}

.shop-highlight-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--honey), var(--amber));
}

.shop-plans-section,
.shop-details-section {
  display: grid;
  gap: 1.1rem;
}

.shop-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.shop-plan-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.shop-plan-card-featured {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.7), rgba(255, 245, 227, 0.56));
  transform: translateY(-0.4rem);
}

.shop-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.shop-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--cocoa);
  line-height: 1;
}

.shop-price-meta,
.shop-price-strike {
  color: rgba(31, 27, 25, 0.58);
}

.shop-price-strike {
  font-size: 0.95rem;
  text-decoration: line-through;
}

.shop-plan-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(31, 27, 25, 0.78);
}

.shop-fine-print {
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
}

.shop-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.science-page-hero {
  grid-template-columns: 1fr;
}

.science-hero-copy,
.science-intro-card,
.science-card,
.science-support-card,
.science-note-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(168, 200, 232, 0.5);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.science-hero-copy,
.science-intro-card,
.science-note-card {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.62), rgba(255, 251, 245, 0.38));
  border-color: rgba(255, 255, 255, 0.38);
}

.science-card,
.science-support-card {
  background: rgba(168, 200, 232, 0.45);
}

.science-highlight-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.science-highlight-item {
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.82);
}

.science-intro-card h3,
.science-card h3,
.science-support-card h3,
.science-note-card h2 {
  margin-top: 0;
}

.science-intro-card p,
.science-card p,
.science-support-card p,
.science-note-card p {
  margin: 0;
  line-height: 1.8;
  color: rgba(31, 27, 25, 0.78);
}

.science-card-grid,
.science-support-grid {
  display: grid;
  gap: 1.1rem;
}

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

.science-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-chip {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 159, 67, 0.18);
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 700;
}

.phyto-explainer-intro {
  margin-bottom: 1.5rem;
}

.phyto-explainer-analogy {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 2rem;
  border: 1px solid rgba(168, 200, 232, 0.5);
  background: rgba(168, 200, 232, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  max-width: 52rem;
}

.phyto-explainer-analogy h3 {
  margin: 0.6rem 0 0.8rem;
  font-size: 1.5rem;
}

.phyto-explainer-analogy p {
  margin: 0;
  line-height: 1.8;
  color: rgba(31, 27, 25, 0.78);
  max-width: 58ch;
}

.phyto-explainer-grid {
  margin-top: 0;
}

.phyto-explainer-icon {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: var(--amber);
  font-weight: 700;
}

.liposome-section .section-heading {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.liposome-section .section-heading h2 {
  max-width: none;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1;
}

.liposome-intro-card {
  background: rgba(168, 200, 232, 0.45) !important;
  border: 1px solid rgba(168, 200, 232, 0.55);
  border-left: 4px solid rgba(168, 200, 232, 0.7);
}

.liposome-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.liposome-problem-card {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  border-radius: 1.7rem;
  border: 1px solid rgba(168, 200, 232, 0.5);
  background: rgba(168, 200, 232, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.liposome-problem-label {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 27, 25, 0.08);
  color: rgba(31, 27, 25, 0.55);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
}

.liposome-problem-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--cocoa-dark);
}

.liposome-problem-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.74);
}

.liposome-vs-phyto {
  padding: 0;
  border-radius: 2rem;
  border: 2px solid rgba(31, 27, 25, 0.3);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.liposome-vs-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cocoa-dark);
}

.liposome-vs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.liposome-vs-col {
  padding: 2rem 2.2rem;
  border-radius: 0;
}

.liposome-col {
  background: transparent;
  border-right: 1px solid rgba(31, 27, 25, 0.12);
}

.phyto-col {
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  border: none;
  box-shadow: none;
}

.liposome-vs-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 27, 25, 0.38);
}

.phyto-col .liposome-vs-label {
  color: rgba(255, 255, 255, 0.85);
}

.liposome-vs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.liposome-vs-list li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(31, 27, 25, 0.62);
  padding-left: 1.4rem;
  position: relative;
}

.liposome-vs-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  color: rgba(31, 27, 25, 0.35);
  top: 0.2em;
}

.phyto-col .liposome-vs-list li {
  color: #fff;
}

.phyto-col .liposome-vs-list li::before {
  content: '✓';
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.science-note-section {
  padding-bottom: 2rem;
}

.science-note-card {
  display: grid;
  gap: 1rem;
}

.science-note-card .button {
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .hero,
  .story-page-hero,
  .contact-page-hero,
  .refunds-page-hero,
  .shop-page-hero,
  .science-page-hero,
  .early-stack-actions,
  .phyto-layout,
  .story-layout,
  .card-grid,
  .ingredient-grid,
  .ingredient-photo-grid,
  .blend-grid,
  .comparison-grid,
  .process-grid,
  .metrics-band,
  .footer-legal-shell,
  .contact-form-grid,
  .refund-details-grid,
  .support-help-grid,
  .phyto-card-grid,
  .shop-plan-grid,
  .shop-detail-grid,
  .science-card-grid,
  .science-support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1rem;
  }

  .early-stack-title span {
    transform: none !important;
  }

  .early-stack-title span:nth-child(5) {
    justify-self: center;
  }

  .early-testers-main .contact-page-hero {
    width: min(1120px, calc(100% - 2rem));
    transform: none;
  }

  .metrics-band {
    gap: 0.6rem;
    padding: 0.72rem 0.7rem;
    justify-items: center;
  }

  .metrics-marquee-band {
    --metrics-marquee-gap: 0.75rem;
    padding: 0.72rem 0;
  }

  .testimonials-carousel {
    --testimonials-gap: 0.9rem;
  }

  .testimonial-card {
    width: min(20rem, calc(100vw - 3rem));
    min-height: 16.5rem;
    padding: 1.35rem;
  }

  .testimonial-card p {
    font-size: 1.16rem;
  }

  .metrics-marquee-pill {
    min-height: 3.75rem;
    padding: 0.48rem 1.3rem;
    font-size: clamp(1.02rem, 5vw, 1.55rem);
  }

  .statement-inner {
    width: min(100%, calc(100% - 2rem));
    min-height: clamp(20rem, 53vh, 35rem);
    padding: 2.4rem 0;
  }

  .statement-display {
    max-width: 12ch;
    font-size: clamp(2.4rem, 6.6vw, 4.3rem);
  }

  .metric {
    min-height: 3.75rem;
    width: min(100%, 24rem);
    padding: 0.48rem 0.75rem;
  }

  .metric-word {
    font-size: clamp(1.02rem, 5vw, 1.55rem);
  }

  .story-page-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .contact-page-hero,
  .refunds-page-hero,
  .shop-page-hero,
  .science-page-hero {
    padding-top: 2rem;
  }

  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
  }

  .footer-link-columns {
    column-gap: 1.1rem;
  }

  .footer-link-column {
    min-width: 9rem;
  }

  .visual-stage {
    min-height: 32rem;
  }

  .visual-stage-product-collage {
    width: min(100%, 31rem);
  }

  .shop-plan-card-featured {
    transform: none;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

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

  .gallery-viewport {
    aspect-ratio: 3 / 4;
  }

  .gallery-thumb {
    aspect-ratio: 3 / 4;
  }

  /* ── Story page: text → image stack on mobile ── */
  .story-blocks {
    padding: 0 1rem;
    gap: 2.5rem;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: start;
  }

  /* Always: article (text) first, photo second */
  .story-row article.story-block {
    order: 1;
  }

  .story-row:nth-child(odd) .story-photo-frame,
  .story-row:nth-child(even) .story-photo-frame {
    order: 2;
    width: 76%;
    margin: 0 auto;
    max-height: 20rem;
  }

  .story-block p {
    font-size: 1.05rem;
    line-height: 1.75;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0;
  }

  .metrics-band {
    gap: 0.45rem;
    padding: 0.52rem 0.55rem;
    margin-top: 0.55rem;
  }

  .metrics-marquee-band {
    --metrics-marquee-gap: 0.55rem;
    padding: 0.52rem 0;
    margin-top: 0.55rem;
  }

  .testimonials-track {
    animation-duration: 28s;
  }

  .testimonial-card {
    width: min(17.75rem, calc(100vw - 2.1rem));
    min-height: 15.75rem;
    padding: 1.15rem;
  }

  .testimonial-card p {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .metrics-marquee-track {
    animation-duration: 16s;
  }

  .metrics-marquee-pill {
    min-height: 3rem;
    padding: 0.32rem 1rem;
    font-size: clamp(0.9rem, 4.55vw, 1.18rem);
    letter-spacing: -0.02em;
  }

  .statement-inner {
    width: min(100%, calc(100% - 1.35rem));
    min-height: 46vh;
    padding: 1.9rem 0;
  }

  .statement-display {
    max-width: 10.5ch;
    font-size: clamp(1.9rem, 8.35vw, 3rem);
    line-height: 0.96;
  }

  .metric {
    min-height: 3rem;
    width: min(100%, 18rem);
    padding: 0.32rem 0.55rem;
  }

  .metric-word {
    font-size: clamp(0.9rem, 4.55vw, 1.18rem);
    letter-spacing: -0.02em;
  }

  .nav-shell {
    margin-top: 0;
    border-radius: 1.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 1.4rem;
    background: rgb(255, 251, 244);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .button-small {
    width: 100%;
  }

  .early-stack-hero {
    padding-top: 1.1rem;
  }

  .early-stack-title {
    font-size: clamp(2.55rem, 12vw, 4.5rem);
    gap: 0.12em;
  }

  .early-stack-subtitle {
    font-size: 0.97rem;
  }

  .sachet-mockup {
    width: min(32rem, 100%);
  }

  h1 {
    max-width: none;
  }

  .visual-stage {
    min-height: 28rem;
    padding-inline: 0.35rem;
  }

  .visual-stage-product-collage {
    width: min(100%, 25rem);
    margin: 0 auto;
  }

  .shape-one {
    inset: 1rem 0 6rem 2rem;
  }

  .shape-two {
    inset: 4.5rem 2rem 1rem 0;
  }

  .product-card {
    inset: 2rem 1rem 5.6rem;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
  }

  .story-copy {
    padding: 0.3rem;
  }

  .story-page-copy,
  .story-photo-shell,
  .story-block,
  .ingredient-photo-copy,
  .phyto-copy,
  .phyto-card,
  .contact-intro,
  .contact-form-shell,
  .refund-hero-copy,
  .refund-side-card,
  .refund-detail-card,
  .shop-hero-copy,
  .shop-product-shell,
  .shop-note-card,
  .shop-plan-card,
  .shop-detail-card,
  .science-hero-copy,
  .science-intro-card,
  .science-card,
  .science-support-card,
  .science-note-card,
  .footer-legal-shell {
    padding: 1.2rem;
  }

  .contact-form-actions,
  .form-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .announcement-bar {
    font-size: 0.74rem;
  }

  .sky-photo {
    transform: scale(1.16);
  }

  /* ── Global section spacing ── */
  .section {
    padding: 1.75rem 0;
  }

  .section-heading {
    margin-bottom: 0.9rem;
  }

  /* ── Typography scale ── */
  h1 {
    font-size: clamp(2.3rem, 10vw, 5.7rem);
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 3.3rem);
  }

  .reserved-section-item h2 {
    font-size: clamp(2.4rem, 9vw, 5.6rem);
  }

  /* ── Hero ── */
  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 8rem);
  }

  /* ── Section-specific padding ── */
  .cta-section {
    padding-bottom: 2rem;
  }

  .featured-section {
    padding-top: 1.75rem;
  }

  .phyto-section {
    padding-top: 1.75rem;
  }

  /* ── CTA panel ── */
  .cta-panel {
    padding: 1.4rem;
  }

  /* ── When to take — single column on small screens ── */
  .when-to-take-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .when-to-take-item {
    grid-template-columns: 9.5rem minmax(0, 1fr);
    column-gap: 1rem;
  }

  .when-to-take-item--chaos {
    grid-template-columns: 9.5rem minmax(0, 1fr);
    column-gap: 1rem;
  }

  .when-to-take-icon,
  .when-to-take-icon-spacer {
    width: 5.6rem;
    height: 5.6rem;
    justify-self: center;
  }

  .when-to-take-icon--chaos {
    width: 11.75rem;
    height: 5.6rem;
  }

  .when-to-take-item p {
    font-size: clamp(1.15rem, 4.4vw, 1.55rem);
    line-height: 1.2;
  }

  /* ── Story image — reduce min-height ── */
  .story-image img {
    min-height: 16rem;
  }

  /* ── Pre-order page ── */
  .preorder-hero-section {
    padding-top: 1rem;
  }

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

}

/* ─────────────────────────────────────────
   Pre-Order Page
───────────────────────────────────────── */

.preorder-page-main {
  padding-bottom: 2rem;
}

.preorder-hero-section {
  /* Override the .section max-width constraint so the banner can go full-bleed */
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-inline: 0;
}

/* ── Full-width banner ── */
.preorder-hero-banner {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}

.preorder-hero-title-row {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(7rem, 12vw, 10rem);
  width: 100%;
}

.preorder-hero-title-band {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--teal);
}

.preorder-hero-banner h1 {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  text-align: center;
  color: var(--cream-soft);
  padding: 0 1.5rem;
  border-radius: 0;
}

.preorder-hero-tagline {
  margin: 0.9rem 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cocoa);
  opacity: 0.82;
}

/* ── Centered gallery ── */
.preorder-hero-gallery-wrap {
  display: flex;
  justify-content: center;
  padding-inline: 1.25rem;
}

.preorder-hero-gallery-wrap .product-gallery {
  width: 100%;
  max-width: 28rem;
}

.preorder-price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.preorder-price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.preorder-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--cocoa);
  line-height: 1;
}

.preorder-price-launch {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: rgba(31, 27, 25, 0.58);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.preorder-savings-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  color: var(--cream-soft);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preorder-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preorder-pouch-frame {
  position: relative;
  width: min(100%, 40rem);
}

.preorder-pouch-frame > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 36px 64px rgba(111, 53, 23, 0.24));
}

.preorder-pouch-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  box-shadow: 0 14px 32px rgba(255, 127, 31, 0.38);
  color: var(--cream-soft);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}

/* ── Identity Band ── */

.preorder-identity-band {
  width: 100%;
  background: #F7EFE4;
  border-top: 1px solid rgba(202, 122, 43, 0.16);
  border-bottom: 1px solid rgba(202, 122, 43, 0.16);
  padding: 1.5rem 1rem;
  margin-block: 1rem;
}

.preorder-identity-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.preorder-identity-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preorder-product-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--cocoa-dark);
  line-height: 1;
}

.preorder-product-flavor {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preorder-identity-claims {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(31, 27, 25, 0.66);
}

.preorder-identity-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(31, 27, 25, 0.54);
  text-align: right;
}

/* ── Sachet Section ── */

.preorder-sachet-section {
  padding-top: 1rem;
}

.preorder-sachet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.preorder-sachet-copy {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2rem;
  background: rgba(255, 251, 245, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.preorder-sachet-copy h2 {
  max-width: none;
}

.preorder-sachet-copy .hero-body {
  margin: 0;
}

.preorder-sachet-visual {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 251, 245, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.preorder-sachet-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Ingredients ── */

.preorder-ingredients-section {
  display: grid;
  gap: 1.5rem;
}

.preorder-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.preorder-ingredient-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2rem;
  background: rgba(255, 251, 245, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.preorder-ingredient-card img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

.preorder-ingredient-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.preorder-ingredient-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(31, 27, 25, 0.74);
}

/* ── Why Pre-Order ── */

.preorder-why-section {
  display: grid;
  gap: 1.5rem;
}

.preorder-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.preorder-why-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2rem;
  background: rgba(255, 251, 245, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.preorder-why-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--honey);
}

.preorder-why-card h3 {
  font-size: 1.28rem;
}

.preorder-why-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.78;
  color: rgba(31, 27, 25, 0.76);
}

/* ── Closing CTA ── */

.preorder-closing-section {
  padding-bottom: 3rem;
}

.preorder-closing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

.preorder-closing-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preorder-closing-visual img {
  width: min(100%, 36rem);
  height: auto;
  filter: drop-shadow(0 28px 52px rgba(111, 53, 23, 0.2));
}

.preorder-closing-copy {
  display: grid;
  align-content: start;
  gap: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.62), rgba(255, 251, 245, 0.38));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.preorder-closing-copy h2 {
  max-width: none;
}

.preorder-closing-copy .hero-body {
  margin: 0;
}

.preorder-hero-tagline {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--cocoa-dark);
  white-space: nowrap;
}

.gallery-price-block {
  position: relative;
  padding-top: 0.9rem;
  padding-right: clamp(7.25rem, 24vw, 8.5rem);
  min-height: 5.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}

.gallery-price-block .preorder-savings-badge {
  position: absolute;
  top: 1.15rem;
  right: 0;
}

@media (max-width: 640px) {
  .gallery-price-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 0.9rem;
    padding-right: 0;
    min-height: 0;
  }

  .gallery-price-block .preorder-price-main {
    min-width: 0;
  }

  .gallery-price-block .preorder-savings-badge {
    position: static;
    justify-self: end;
    align-self: start;
    margin-top: 0.2rem;
    padding: 0.58rem 1rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }
}

.preorder-cost-per-use {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(31, 27, 25, 0.62);
}

.preorder-cost-per-use strong {
  font-weight: 700;
  color: var(--amber);
}

.preorder-fine-print {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(31, 27, 25, 0.56);
}

.preorder-fine-print a {
  color: var(--amber);
  text-decoration: underline;
}

.preorder-closing-solo {
  max-width: 52rem;
  margin: 0 auto;
}

/* ── Product Gallery ── */

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-main {
  position: relative;
  flex: 1;
}

.gallery-viewport {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 251, 245, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  color: var(--cocoa);
  box-shadow: 0 6px 18px rgba(73, 89, 112, 0.15);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.97);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 22px rgba(73, 89, 112, 0.2);
}

.gallery-arrow-prev {
  left: 0.7rem;
}

.gallery-arrow-next {
  right: 0.7rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.gallery-thumb {
  flex: 1;
  max-width: 6rem;
  aspect-ratio: 4 / 5;
  padding: 0.3rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.1rem;
  overflow: hidden;
  background: rgba(255, 251, 245, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(73, 89, 112, 0.1);
  transition: border-color 180ms ease, transform 180ms ease;
}

.gallery-thumb.is-active {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.gallery-thumb:hover:not(.is-active) {
  border-color: rgba(202, 122, 43, 0.38);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Responsive overrides for preorder page ── */

@media (max-width: 980px) {
  .preorder-sachet-grid,
  .preorder-closing-grid {
    grid-template-columns: 1fr;
  }

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

  .preorder-closing-visual {
    order: -1;
  }

  .preorder-identity-detail {
    text-align: left;
  }

  .preorder-pouch-frame {
    width: min(100%, 28rem);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .preorder-ingredients-grid,
  .preorder-why-grid {
    grid-template-columns: 1fr;
  }

  .preorder-identity-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .preorder-identity-detail {
    text-align: left;
  }

  .preorder-closing-copy,
  .preorder-sachet-copy,
  .preorder-ingredient-card,
  .preorder-why-card {
    padding: 1.2rem;
  }

}

/* ═══════════════════════════════════════════════
   SACHET BURST SYSTEM
   Shells handle positioning + ongoing drift.
   Inner imgs handle the burst-in animation.
═══════════════════════════════════════════════ */

.sachet-shell {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
}

.sachet-shell-front-top {
  top: -3.8%;
  left: 47.2%;
  width: 15.8%;
  z-index: 5;
  animation: shell-drift-a 6s ease-in-out 2.2s infinite;
}

.sachet-shell-front-right {
  top: -4.8%;
  left: 76.8%;
  width: 21.8%;
  z-index: 4;
  animation: shell-drift-b 7.2s ease-in-out 2.5s infinite;
}

.sachet-shell-front-lower {
  top: 24.2%;
  left: 33.2%;
  width: 15.4%;
  z-index: 2;
  animation: shell-drift-c 5.8s ease-in-out 2.8s infinite;
}

.sachet-shell-back {
  top: 19.2%;
  left: 56%;
  width: 14.7%;
  z-index: 4;
  animation: shell-drift-d 6.6s ease-in-out 3.0s infinite;
}

/* The sachet images — burst animation only */
.sachet-img {
  display: block;
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.17));
}

.sachet-shell-front-top .sachet-img {
  transform-origin: center bottom;
  animation: sachet-burst-front-top 1.05s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

.sachet-shell-front-right .sachet-img {
  transform-origin: center bottom;
  animation: sachet-burst-front-right 1.15s cubic-bezier(0.34, 1.56, 0.64, 1) 0.78s both;
}

.sachet-shell-front-lower .sachet-img {
  transform-origin: center bottom;
  animation: sachet-burst-front-lower 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s both;
}

.sachet-shell-back .sachet-img {
  transform-origin: center bottom;
  animation: sachet-burst-back 1.05s cubic-bezier(0.34, 1.56, 0.64, 1) 0.92s both;
}

/* Burst keyframes — translate from pouch opening to final position */
@keyframes sachet-burst-front-top {
  from {
    opacity: 0;
    transform: rotate(-8deg) translate(-4.5rem, 20rem) scale(0.28);
    filter: drop-shadow(0 4px 8px rgba(73, 89, 112, 0.08));
  }
  to {
    opacity: 1;
    transform: rotate(0deg) translate(0, 0) scale(1);
    filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.17));
  }
}

@keyframes sachet-burst-front-right {
  from {
    opacity: 0;
    transform: rotate(6deg) translate(-13.5rem, 20rem) scale(0.28);
    filter: drop-shadow(0 4px 8px rgba(73, 89, 112, 0.08));
  }
  to {
    opacity: 1;
    transform: rotate(35deg) translate(0, 0) scale(1);
    filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.17));
  }
}

@keyframes sachet-burst-front-lower {
  from {
    opacity: 0;
    transform: rotate(-12deg) translate(0.8rem, 8.5rem) scale(0.32);
    filter: drop-shadow(0 4px 8px rgba(73, 89, 112, 0.08));
  }
  to {
    opacity: 1;
    transform: rotate(2.4deg) translate(0, 0) scale(1);
    filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.17));
  }
}

@keyframes sachet-burst-back {
  from {
    opacity: 0;
    transform: rotate(-5deg) translate(-6.5rem, 11rem) scale(0.32);
    filter: drop-shadow(0 4px 8px rgba(73, 89, 112, 0.08));
  }
  to {
    opacity: 1;
    transform: rotate(14deg) translate(0, 0) scale(1);
    filter: drop-shadow(0 14px 24px rgba(73, 89, 112, 0.17));
  }
}

/* Shell drift — continuous float after burst completes */
@keyframes shell-drift-a {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(1.2deg); }
}

@keyframes shell-drift-b {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-13px) rotate(-1.8deg); }
}

@keyframes shell-drift-c {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(0.9deg); }
}

@keyframes shell-drift-d {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(-1.4deg); }
}

/* ═══════════════════════════════════════════════
   HERO AMBIENT ORBS
   Soft glowing blobs behind the product visual.
═══════════════════════════════════════════════ */

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  animation: orb-pulse 8s ease-in-out infinite;
}

.hero-orb-a {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(249, 200, 112, 0.32) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-orb-b {
  width: 22rem;
  height: 22rem;
  bottom: 2rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(126, 167, 166, 0.22) 0%, transparent 68%);
  animation-delay: 3s;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.9; }
  50%       { transform: scale(1.1); opacity: 1;   }
}

/* ═══════════════════════════════════════════════
   PROOF CHIPS
═══════════════════════════════════════════════ */

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.proof-chips li {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cocoa);
  backdrop-filter: blur(14px);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   MAGNETIC BUTTON SUPPORT
   JS adds --mx / --my custom properties on hover.
═══════════════════════════════════════════════ */

.button-magnetic {
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 200ms ease,
              filter 160ms ease;
  will-change: transform;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS — HOMEPAGE VERSION
═══════════════════════════════════════════════ */

.hiw-home-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hiw-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.hiw-home-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.82), rgba(255, 251, 244, 0.56)),
    linear-gradient(135deg, rgba(242, 184, 76, 0.10), rgba(126, 167, 166, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hiw-home-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249, 200, 112, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hiw-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(73, 89, 112, 0.18);
}

.hiw-home-card:hover::before {
  opacity: 1;
}

.hiw-home-step {
  display: inline-flex;
  margin-bottom: 1.1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(202, 122, 43, 0.12);
}

.hiw-home-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.hiw-home-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.74);
}

/* ═══════════════════════════════════════════════
   WHEN-TO-TAKE ENHANCEMENTS
═══════════════════════════════════════════════ */

.when-to-take-item {
  transition: transform 220ms ease;
}

.when-to-take-item:hover {
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════
   BLEND CARD ENHANCEMENTS
═══════════════════════════════════════════════ */

.blend-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 58px rgba(73, 89, 112, 0.2);
}

/* ═══════════════════════════════════════════════
   PARALLAX SUPPORT
   JS sets --scroll-y on .hero-visual
═══════════════════════════════════════════════ */

.hero-visual {
  position: relative;
  will-change: transform;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — hiw-home-grid
═══════════════════════════════════════════════ */

@media (max-width: 980px) {
  .hiw-home-grid {
    grid-template-columns: 1fr;
  }

  .hero-orb-a {
    width: 12rem;
    height: 12rem;
  }

  .hero-orb-b {
    width: 14rem;
    height: 14rem;
  }
}

@media (max-width: 640px) {
  .proof-chips {
    gap: 0.45rem;
  }

  .proof-chips li {
    font-size: 0.8rem;
    padding: 0.48rem 0.85rem;
  }

  .sachet-shell-front-top {
    width: 14%;
  }

  .sachet-shell-front-right {
    width: 19%;
  }

  .sachet-shell-front-lower {
    width: 13.5%;
  }

  .sachet-shell-back {
    width: 13%;
  }
}

/* ═══════════════════════════════════════════════
   LIQUID-DRIP DISCOUNT POPUP
═══════════════════════════════════════════════ */

/* Backdrop */
.lp-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(31, 27, 25, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.lp-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* Goo stage: receives SVG filter, contains all liquid drops */
.lp-goo-stage {
  position: fixed;
  inset: 0;
  z-index: 8100;
  pointer-events: none;
  filter: url('#sapp-goo');
  visibility: hidden;
}

/* Individual liquid drops */
.lp-drop {
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 50% 50% 48% 48%;
  background: linear-gradient(160deg, var(--honey) 0%, var(--amber) 100%);
  transform-origin: center bottom;
  opacity: 0;
  animation: lp-drop-fall var(--lp-duration, 0.9s) var(--lp-delay, 0s)
             cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lp-drop-1 { width: 56px;  height: 72px;  margin-left: -88px; --lp-pool-y: 55vh; --lp-delay: 0s;    --lp-duration: 0.85s; }
.lp-drop-2 { width: 72px;  height: 96px;  margin-left: -14px; --lp-pool-y: 53vh; --lp-delay: 0.18s; --lp-duration: 0.92s; }
.lp-drop-3 { width: 48px;  height: 64px;  margin-left: 58px;  --lp-pool-y: 56vh; --lp-delay: 0.32s; --lp-duration: 0.88s; }
.lp-drop-4 { width: 80px;  height: 110px; margin-left: -42px; --lp-pool-y: 54vh; --lp-delay: 0.46s; --lp-duration: 0.96s; }
.lp-drop-5 { width: 60px;  height: 80px;  margin-left: 26px;  --lp-pool-y: 55vh; --lp-delay: 0.58s; --lp-duration: 0.82s; }

/* Morph blob: the pooled goo that expands into the popup rectangle */
.lp-morph-blob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 140px;
  background: linear-gradient(145deg, var(--honey) 0%, var(--amber) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: lp-morph-rect 900ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-play-state: paused;
}

/* Popup panel */
.lp-panel {
  --lp-teal: #88abaa;
  --lp-teal-deep: #6f9795;
  --lp-teal-soft: #c4d9d7;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 8200;
  width: min(860px, 92vw);
  max-height: 90vh;
  max-height: 90dvh;
  transform: translate(-50%, -50%);
  border-radius: 2.4rem;
  background:
    linear-gradient(180deg, rgba(248, 251, 250, 0.98), rgba(239, 246, 245, 0.98)),
    linear-gradient(135deg, rgba(136, 171, 170, 0.08), rgba(255, 255, 255, 0));
  box-shadow:
    0 40px 100px rgba(84, 113, 112, 0.28),
    0 0 0 1px rgba(136, 171, 170, 0.42);
  opacity: 0;
  pointer-events: none;
  outline: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
}

.lp-panel.is-visible {
  opacity: 1;
  pointer-events: all;
  transition: opacity 300ms ease;
}

.lp-panel.is-visible ~ .lp-close {
  opacity: 1;
  pointer-events: all;
}

/* Lock body scroll when popup is open */
body.lp-scroll-locked {
  overflow: hidden !important;
}

/* Close button — positioned as sibling of panel for reliable iOS touch */
.lp-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 8300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  color: var(--cocoa);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  opacity: 0;
  pointer-events: none;
}

.lp-close:hover,
.lp-close:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  transform: scale(1.1);
}

.lp-close svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

/* Two-column body */
.lp-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 420px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Image slot — left column */
.lp-image-slot {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem 0 0 2.4rem;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 20px,
      rgba(196, 217, 215, 0.18) 20px,
      rgba(196, 217, 215, 0.18) 40px
    ),
    linear-gradient(160deg, var(--lp-teal-soft) 0%, var(--lp-teal) 52%, var(--lp-teal-deep) 100%);
}

.lp-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content column */
.lp-content {
  padding: 2.4rem 2.2rem 2rem 2rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.lp-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-teal-deep);
  margin: 0;
  text-shadow: 0 0 18px rgba(136, 171, 170, 0.2);
}

.lp-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cocoa-dark);
  margin: 0;
}

.lp-heading-live {
  color: var(--lp-teal-deep);
}

.lp-subtext {
  margin: 0;
  line-height: 1.7;
  color: rgba(111, 53, 23, 0.8);
  font-size: 0.95rem;
}

.lp-subtext strong {
  color: var(--cocoa-dark);
  font-weight: 700;
}

/* Form layout */
.lp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.lp-field-full {
  grid-column: 1 / -1;
}

.lp-optional {
  font-size: 0.78em;
  opacity: 0.55;
  font-weight: 400;
  margin-left: 0.2em;
}

.lp-submit {
  width: 100%;
  margin-top: 0.25rem;
  justify-content: center;
  background: linear-gradient(135deg, var(--lp-teal-soft) 0%, var(--lp-teal) 52%, var(--lp-teal-deep) 100%);
  box-shadow: 0 18px 40px rgba(111, 151, 149, 0.34);
  color: #fff;
}
.lp-submit:hover:not(:disabled),
.lp-submit:focus-visible:not(:disabled) {
  box-shadow: 0 22px 44px rgba(111, 151, 149, 0.46);
  filter: saturate(1.1) brightness(1.04);
}
.lp-submit:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
}

/* Success state */
.lp-success[hidden] {
  display: none !important;
}

.lp-success {
  display: grid;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem 0 1rem;
}

.lp-success-icon {
  font-size: 2.8rem;
  margin: 0;
}

.lp-success-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cocoa-dark);
  margin: 0;
}

.lp-success-body {
  color: rgba(111, 53, 23, 0.8);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

/* Mobile: single column */
@media (max-width: 680px) {
  .lp-panel {
    width: min(860px, 96vw);
    border-radius: 1.8rem;
  }

  .lp-close {
    width: 3rem;
    height: 3rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .lp-close svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .lp-body {
    grid-template-columns: 1fr;
  }

  .lp-image-slot {
    height: 160px;
    border-radius: 1.8rem 1.8rem 0 0;
  }

  .lp-content {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .lp-fields {
    grid-template-columns: 1fr;
  }

  .lp-field-full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .footer-link-columns {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .footer-link-column {
    min-width: 0;
    justify-items: center;
  }

  .footer-link-columns > .footer-link-column:first-child {
    justify-items: center;
  }

  .footer-link-columns > .footer-link-column:first-child a {
    text-align: center;
  }

  .footer-link-column a,
  .footer-copyright {
    text-align: center;
  }

  .footer-link-divider {
    width: 100%;
    height: 1px;
  }

  .footer-copyright,
  .footer-disclaimer {
    justify-self: center;
    text-align: center;
  }
}

/* ── Keyframes ── */

@keyframes lp-drop-fall {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-120px) scaleY(0.4) scaleX(1); }
  12%  { opacity: 1; }
  60%  { transform: translateX(-50%) translateY(calc(var(--lp-pool-y) - 40px)) scaleY(1.15) scaleX(0.88); }
  80%  { transform: translateX(-50%) translateY(var(--lp-pool-y)) scaleY(0.82) scaleX(1.18); }
  100% { opacity: 1; transform: translateX(-50%) translateY(var(--lp-pool-y)) scaleY(1) scaleX(1); }
}

@keyframes lp-morph-rect {
  0%   { width: 180px;              height: 140px; border-radius: 50%;   opacity: 1; }
  25%  { width: 280px;              height: 200px; border-radius: 45%;   opacity: 1; }
  60%  { width: min(700px, 85vw);   height: 460px; border-radius: 3.5rem; opacity: 1; }
  85%  { width: min(860px, 92vw);   height: 520px; border-radius: 2.6rem; opacity: 1; }
  100% { width: min(860px, 92vw);   height: 520px; border-radius: 2.4rem; opacity: 0; }
}

@keyframes lp-panel-reveal {
  0%   { opacity: 0; transform: translate(-50%, -48%) scale(0.97); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════════
   Shop Plans (Pre-Order vs Subscribe)
   ══════════════════════════════════════════════ */

.shop-plans-section {
  padding-inline: 1.25rem;
}

.shop-plans-heading {
  text-align: center;
  align-items: center;
}

.shop-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.shop-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 251, 244, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.75rem;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.shop-plan-card-featured {
  background: rgba(255, 251, 244, 0.78);
  border-color: var(--honey);
  box-shadow: 0 8px 48px rgba(242, 184, 76, 0.22);
}

.shop-plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f9c870 0%, #ff7f1f 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  margin: 0;
}

.shop-plan-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0;
}

.shop-plan-name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--cocoa-dark);
  margin: 0;
  line-height: 1.15;
}

.shop-plan-desc {
  font-size: 0.88rem;
  color: var(--cocoa);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.shop-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-block: 0.25rem;
}

.shop-plan-amount {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.1rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cocoa-dark);
  line-height: 1;
}

.shop-plan-period {
  font-size: 0.9rem;
  color: var(--cocoa);
  font-weight: 500;
}

.shop-plan-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-plan-perks li {
  font-size: 0.875rem;
  color: var(--cocoa);
  line-height: 1.4;
  padding-left: 1.5rem;
  position: relative;
}

.shop-plan-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.shop-plan-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.shop-plan-test-note {
  font-size: 0.72rem;
  color: var(--cocoa);
  text-align: center;
  margin: 0;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .shop-plans-grid {
    grid-template-columns: 1fr;
  }

  .shop-plan-card-featured {
    order: -1;
  }
}

/* ── Gallery inline checkout ── */
.gallery-checkout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

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

.gallery-checkout-note {
  font-size: 0.75rem;
  color: var(--cocoa);
  text-align: center;
  margin: 0;
  opacity: 0.7;
  line-height: 1.4;
}

/* ── /mo price suffix ── */
.preorder-price-mo {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════════════
   SAPP CART — FAB + SLIDE-UP DRAWER
   ══════════════════════════════════════════════════════════════ */

/* Root container — fixed bottom-right anchor */
#sc-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 8500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

#sc-root.sc-open,
#sc-root.sc-minimized {
  pointer-events: auto;
}

/* ── Drawer ── */
.sc-drawer {
  background: var(--cream);
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(20, 14, 8, 0.28), 0 4px 16px rgba(20, 14, 8, 0.12);
  width: 300px;
  overflow: hidden;
  /* Hidden by default — slides down + fades out */
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

#sc-root.sc-open .sc-drawer {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.sc-drawer-inner {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Drawer header */
.sc-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sc-drawer-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.sc-icon-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.4;
  padding: 0;
  transition: opacity 180ms ease, background 180ms ease;
}

.sc-icon-btn:hover {
  opacity: 1;
  background: rgba(20, 14, 8, 0.07);
}

.sc-icon-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Item row */
.sc-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.sc-item-img {
  width: 70px;
  height: 86px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: var(--paper, #f9f4ec);
}

.sc-item-info {
  flex: 1;
  min-width: 0;
}

.sc-item-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--honey);
  margin: 0 0 0.2rem;
}

.sc-item-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.15rem;
}

.sc-item-flavor {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  color: var(--ink);
  opacity: 0.48;
  margin: 0 0 0.55rem;
}

.sc-item-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sc-item-price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.sc-mo {
  font-size: 0.72em;
  font-weight: 600;
  opacity: 0.65;
}

.sc-item-was {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  color: var(--ink);
  opacity: 0.35;
  text-decoration: line-through;
}

.sc-item-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--honey);
  color: #fff;
  padding: 0.12rem 0.42rem;
  border-radius: 100px;
}

/* Countdown timer */
.sc-timer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sc-timer-track {
  height: 3px;
  background: rgba(20, 14, 8, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.sc-timer-fill {
  height: 100%;
  width: 100%;
  background: var(--honey);
  border-radius: 100px;
  transition: width 500ms linear;
}

.sc-timer-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  color: var(--ink);
  opacity: 0.5;
  text-align: right;
}

/* Drawer actions */
.sc-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sc-checkout-btn {
  text-align: center;
  display: block;
  width: 100%;
  justify-content: center;
}

.sc-keep-btn {
  background: none;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.4;
  cursor: pointer;
  padding: 0.2rem;
  text-align: center;
  transition: opacity 180ms ease;
}

.sc-keep-btn:hover {
  opacity: 0.65;
}

/* ── FAB ── */
.sc-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--honey);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(20, 14, 8, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 300ms ease;
  /* Hidden until cart has an item */
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

#sc-root.sc-open .sc-fab,
#sc-root.sc-minimized .sc-fab {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.sc-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(20, 14, 8, 0.3);
}

.sc-fab:active {
  transform: scale(0.96);
}

.sc-fab-icon {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2;
}

.sc-fab-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: var(--amber, #d97706);
  color: #fff;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
}

/* Expire fade-out */
#sc-root.sc-expired {
  opacity: 0;
  transition: opacity 380ms ease;
}

/* Mobile: narrower drawer, closer to edge */
@media (max-width: 480px) {
  #sc-root {
    bottom: 1rem;
    right: 1rem;
  }

  .sc-drawer {
    width: calc(100vw - 2rem);
    max-width: 340px;
  }
}


/* ── Early Testers floating cloud benefits ────────────────────── */
.early-benefits-cloud-shell {
  position: relative;
}

.early-benefits-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem;
  min-height: 34rem;
  z-index: 1;
}

.early-benefit-bubble {
  --bubble-rise: 10px;
  --bubble-drift: 7px;
  --bubble-duration: 16s;
  position: relative;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.35rem 1.45rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.82));
  box-shadow:
    0 22px 48px rgba(105, 132, 166, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  animation: early-benefit-cloud-float var(--bubble-duration) ease-in-out infinite;
  transition: box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.early-benefit-bubble::before {
  content: "";
  position: absolute;
  inset: 0.7rem 18% auto 18%;
  height: 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(6px);
  pointer-events: none;
}

.early-benefit-bubble:hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  box-shadow:
    0 26px 56px rgba(105, 132, 166, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.early-benefit-bubble h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  line-height: 1.05;
  color: rgba(46, 30, 22, 0.92);
}

.early-benefit-bubble p {
  margin: 0;
  max-width: 30ch;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(31, 27, 25, 0.74);
}

.early-benefit-bubble--1 {
  grid-column: 1 / span 4;
  grid-row: 1;
  margin-top: 1.8rem;
  --bubble-duration: 15.5s;
  --bubble-rise: 11px;
  --bubble-drift: 8px;
}

.early-benefit-bubble--2 {
  grid-column: 5 / span 4;
  grid-row: 1;
  margin-top: 0.2rem;
  --bubble-duration: 17.5s;
  --bubble-rise: 8px;
  --bubble-drift: 5px;
}

.early-benefit-bubble--3 {
  grid-column: 9 / span 4;
  grid-row: 1;
  margin-top: 2.6rem;
  --bubble-duration: 16.8s;
  --bubble-rise: 10px;
  --bubble-drift: 7px;
}

.early-benefit-bubble--4 {
  grid-column: 2 / span 4;
  grid-row: 2;
  margin-top: 0.35rem;
  --bubble-duration: 18.4s;
  --bubble-rise: 12px;
  --bubble-drift: 6px;
}

.early-benefit-bubble--5 {
  grid-column: 7 / span 5;
  grid-row: 2;
  margin-top: 1.7rem;
  --bubble-duration: 17.2s;
  --bubble-rise: 10px;
  --bubble-drift: 8px;
}

.early-benefit-bubble--6 {
  grid-column: 4 / span 5;
  grid-row: 3;
  margin-top: -0.35rem;
  --bubble-duration: 16.6s;
  --bubble-rise: 8px;
  --bubble-drift: 5px;
}

@keyframes early-benefit-cloud-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(calc(var(--bubble-drift) * 0.45), calc(var(--bubble-rise) * -0.35), 0);
  }

  50% {
    transform: translate3d(var(--bubble-drift), calc(var(--bubble-rise) * -1), 0);
  }

  75% {
    transform: translate3d(calc(var(--bubble-drift) * 0.55), calc(var(--bubble-rise) * -0.5), 0);
  }
}

@media (max-width: 980px) {
  .early-benefits-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .early-benefit-bubble {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .early-benefit-bubble--6 {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 30rem);
  }
}

@media (max-width: 680px) {
  .early-benefits-cloud-shell {
    padding: 1.1rem;
    border-radius: 1.7rem;
  }

  .early-benefits-cloud {
    grid-template-columns: 1fr;
  }

  .early-benefit-bubble,
  .early-benefit-bubble--6 {
    width: 100%;
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .early-benefit-bubble {
    animation: none;
    transition: none;
  }
}

/* ── Early tester flow ────────────────────────────────────────── */
.flow-start-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.flow-start-card,
.flow-page-copy,
.flow-side-card,
.flow-terms-shell,
.flow-complete-shell,
.flow-payment-note {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.9rem;
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.flow-start-card h3,
.flow-side-card h3,
.flow-complete-shell h2,
.flow-terms-shell h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--cocoa-dark);
}

.flow-start-card p,
.flow-side-card p,
.flow-payment-note p {
  margin: 0;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.76);
}

.flow-start-card {
  display: grid;
  gap: 0.9rem;
}

.flow-start-card-outline {
  background: rgba(255, 251, 245, 0.34);
}

.flow-start-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.8;
  color: var(--cocoa-dark);
}

.flow-page-main {
  padding-bottom: 2rem;
}

.flow-page-main > .section:first-child {
  padding-bottom: 1rem;
}

.flow-page-grid {
  width: 100%;
  margin: 0;
  display: block;
}

.flow-page-copy {
  display: grid;
  gap: 1rem;
}

.flow-page-copy h1,
.flow-page-copy h2 {
  margin: 0;
}

.flow-progress {
  display: grid;
  gap: 0.65rem;
}

.flow-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(63, 29, 16, 0.56);
}

.flow-progress-bar {
  width: 100%;
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(111, 53, 23, 0.12);
}

.flow-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
}

.flow-progress-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(63, 29, 16, 0.42);
}

.flow-progress-labels span.is-current {
  color: var(--cocoa-dark);
}

.flow-side-card {
  display: grid;
  gap: 0.75rem;
}

.flow-form-section,
.flow-terms-section,
.flow-complete-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.flow-terms-shell {
  display: grid;
  gap: 1.1rem;
}

.flow-terms-shell p {
  margin: 0;
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.8);
}

.flow-terms-list {
  display: grid;
  gap: 0.95rem;
}

.flow-terms-item {
  padding: 1.2rem 1.25rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(111, 53, 23, 0.08);
}

.flow-terms-item h3 {
  margin-bottom: 0.45rem;
}

.flow-terms-item ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.7;
  color: rgba(31, 27, 25, 0.78);
}

.flow-inline-form {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.flow-acknowledgement {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(111, 53, 23, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 200ms ease, background 200ms ease, border-color 200ms ease;
}

.flow-acknowledgement label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.65;
  color: var(--cocoa-dark);
}

.flow-acknowledgement input {
  margin-top: 0.2rem;
  accent-color: var(--amber);
}

.flow-acknowledgement-locked {
  opacity: 0.55;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(111, 53, 23, 0.08);
}

.flow-acknowledgement-locked label {
  cursor: not-allowed;
  color: rgba(31, 27, 25, 0.55);
}

.flow-acknowledgement-locked input[type="checkbox"] {
  cursor: not-allowed;
}

.flow-terms-intro {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(31, 27, 25, 0.78);
}

.flow-terms-version {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  align-items: baseline;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(111, 53, 23, 0.08);
  font-size: 0.85rem;
  color: rgba(31, 27, 25, 0.78);
}

.flow-terms-scrollbox {
  position: relative;
  max-height: 60vh;
  min-height: 22rem;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(111, 53, 23, 0.18);
  box-shadow: inset 0 -24px 28px -22px rgba(111, 53, 23, 0.18);
  scroll-behavior: smooth;
  outline: none;
}

.flow-terms-scrollbox:focus-visible {
  box-shadow: 0 0 0 3px rgba(214, 143, 67, 0.4);
}

.flow-terms-scrollbox.is-at-bottom {
  box-shadow: inset 0 0 0 1px rgba(143, 188, 139, 0.5);
  border-color: rgba(143, 188, 139, 0.65);
}

.flow-terms-scrollbox::-webkit-scrollbar {
  width: 10px;
}

.flow-terms-scrollbox::-webkit-scrollbar-thumb {
  background: rgba(111, 53, 23, 0.32);
  border-radius: 999px;
}

.flow-terms-scrollbox::-webkit-scrollbar-track {
  background: rgba(111, 53, 23, 0.06);
  border-radius: 999px;
}

.flow-terms-doc {
  display: block;
  color: rgba(31, 27, 25, 0.88);
  line-height: 1.68;
  font-size: 0.95rem;
}

.flow-terms-doc-header {
  text-align: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(111, 53, 23, 0.14);
}

.flow-terms-doc-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(111, 53, 23, 0.75);
}

.flow-terms-doc-header h2 {
  margin: 0.3rem 0 0.2rem;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--cocoa-dark);
}

.flow-terms-doc-sub {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(111, 53, 23, 0.7);
}

.flow-terms-doc h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin: 1.25rem 0 0.4rem;
  color: var(--cocoa-dark);
}

.flow-terms-doc p {
  margin: 0 0 0.55rem;
  line-height: 1.7;
}

.flow-terms-caps {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: rgba(31, 27, 25, 0.92);
}

.flow-terms-doc-end {
  margin-top: 1.6rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(143, 188, 139, 0.16);
  border: 1px solid rgba(143, 188, 139, 0.45);
  color: rgba(31, 27, 25, 0.82);
  font-size: 0.9rem;
}

.flow-terms-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed rgba(111, 53, 23, 0.25);
  font-size: 0.9rem;
  color: rgba(31, 27, 25, 0.78);
}

.flow-terms-hint-pending,
.flow-terms-hint-done {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.flow-terms-hint-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(214, 143, 67, 0.9);
  box-shadow: 0 0 0 4px rgba(214, 143, 67, 0.25);
  animation: flow-terms-hint-pulse 1.6s ease-in-out infinite;
}

.flow-terms-hint-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(143, 188, 139, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

@keyframes flow-terms-hint-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.75; }
}

.flow-terms-legal-note {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(31, 27, 25, 0.62);
}

button[data-terms-submit][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.flow-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-payment-note {
  margin-top: 0;
}

.flow-test-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(63, 29, 16, 0.58);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.flow-test-link:hover,
.flow-test-link:focus-visible {
  color: var(--cocoa-dark);
}

.flow-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.flow-payment-grid .form-field-full {
  grid-column: 1 / -1;
}

.flow-complete-shell {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.flow-complete-shell p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.78);
}

.flow-complete-highlight {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.flow-complete-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  text-align: left;
}

.flow-complete-next article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(111, 53, 23, 0.08);
}

.flow-complete-next h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--cocoa-dark);
}

.flow-complete-next p {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .flow-page-grid,
  .flow-start-shell,
  .flow-complete-next {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .flow-payment-grid {
    grid-template-columns: 1fr;
  }

  .flow-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-form-actions .button,
  .flow-form-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .flow-progress-labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.3rem;
  }
}


/* ══════════════════════════════════════════════
   WHY IT WORKS — Section
   ══════════════════════════════════════════════ */

.why-it-works-band {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.why-it-works-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(249, 200, 112, 0.12), transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(255, 159, 67, 0.08), transparent 38%);
  pointer-events: none;
}

.wiw-proof {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2.4rem;
  padding: 0;
  text-align: center;
}

.wiw-proof-topline {
  margin: 0;
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(6.8rem, 9.8vw, 10.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  background: linear-gradient(90deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 26px rgba(198, 120, 42, 0.08);
}

.wiw-proof-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  gap: clamp(0.08rem, 0.45vw, 0.28rem);
  margin-top: 0;
  white-space: nowrap;
}

.wiw-proof-value-row {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(0.08rem, 0.45vw, 0.28rem);
}

.wiw-proof-more {
  display: inline;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.82em;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(111, 53, 23, 0.94);
}

.wiw-proof-equals {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.2rem, 5.1vw, 6rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(111, 53, 23, 0.62);
  transform: translateY(-0.015em);
}

.wiw-proof-value {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5.1rem, 7.1vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #7b360f;
  text-shadow:
    0 16px 36px rgba(198, 120, 42, 0.14),
    0 2px 0 rgba(255, 248, 236, 0.55);
}

.wiw-proof-caption {
  margin: 0.12rem 0 0;
  font-size: clamp(2.7rem, 3.55vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(111, 53, 23, 0.76);
  line-height: 1.02;
}

.wiw-proof-caption-soft {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.wiw-proof-caption-strong {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.82em;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(111, 53, 23, 0.94);
}

.wiw-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 0 2rem;
  align-items: start;
}

/* ---- Benefits (Left) ---- */

.wiw-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 0.5rem;
}

.wiw-intro-band {
  --wiw-heading-width: 10ch;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 190, 92, 0.22), transparent 22rem),
    radial-gradient(circle at 84% 72%, rgba(126, 167, 166, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(255, 248, 236, 0.96), rgba(255, 252, 247, 0.95) 48%, rgba(241, 249, 247, 0.94));
  border-top: 1px solid rgba(214, 143, 67, 0.14);
  border-bottom: 1px solid rgba(126, 167, 166, 0.16);
}

.wiw-intro-side {
  display: grid;
  align-content: center;
  min-width: 0;
}

.wiw-intro-side-left {
  justify-items: end;
  padding-right: clamp(0.35rem, 0.8vw, 0.8rem);
}

.wiw-intro-side-right {
  justify-items: start;
  padding-left: clamp(0.35rem, 0.8vw, 0.8rem);
}

.wiw-subtext-columns {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.wiw-intro-divider {
  width: 3px;
  height: clamp(16.5rem, 33vw, 22.5rem);
  justify-self: center;
  background: rgba(111, 53, 23, 0.72);
}

.wiw-heading {
  margin: 0;
  max-width: var(--wiw-heading-width);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: rgba(63, 29, 16, 0.96);
  text-align: left;
}

.wiw-subtext {
  margin: 0;
  max-width: 36ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.75;
  color: rgba(31, 27, 25, 0.78);
  text-align: left;
}

.wiw-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 244, 224, 0.76));
  border: 1px solid rgba(242, 184, 76, 0.24);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 4px 24px rgba(200, 120, 30, 0.07),
    0 1px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  cursor: default;
  transition: transform 240ms ease, box-shadow 240ms ease, opacity 560ms ease 0.1s, transform 560ms ease 0.1s;
}

.wiw-benefit:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 36px rgba(200, 120, 30, 0.13),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Override the reveal transition to allow our hover too */
.wiw-benefit.is-visible {
  transform: translateY(0);
}
.wiw-benefit.is-visible:hover {
  transform: translateY(-4px);
}

.wiw-benefit--delay-1.reveal { transition-delay: 0.08s; }
.wiw-benefit--delay-2.reveal { transition-delay: 0.18s; }
.wiw-benefit--delay-3.reveal { transition-delay: 0.28s; }

.wiw-benefit-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiw-benefit-icon svg,
.wiw-benefit-icon img {
  width: 96px;
  height: 96px;
}

.wiw-benefit-copy h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a2000;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.wiw-benefit-copy p {
  font-size: 0.85rem;
  line-height: 1.68;
  color: #6b4820;
  opacity: 0.9;
  margin: 0;
}

/* ---- Ingredient Table ---- */

.wiw-table-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem 2.5rem;
  font-family: "Fraunces", Georgia, serif;
}

.wiw-table-header {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  padding: 2rem 1.4rem 1rem;
  border-bottom: 1.5px solid rgba(200, 120, 30, 0.18);
  margin-bottom: 0.25rem;
}

.wiw-th {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a07040;
}

.wiw-th-amount,
.wiw-td-amount {
  text-align: center;
}

.wiw-table-row {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(200, 120, 30, 0.1);
  transition: background 200ms ease, opacity 560ms ease 0.1s, transform 560ms ease 0.1s;
  border-radius: 12px;
}

.wiw-table-row:hover {
  background: rgba(255, 248, 234, 0.7);
}

.wiw-td-ingredient {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wiw-row-icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiw-row-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.wiw-row-icon .wiw-row-icon-img-schisandra {
  width: 54px;
  height: 54px;
}

.wiw-row-icon .wiw-row-icon-img-honey {
  width: 102px;
  height: 102px;
  transform: translateY(-8px);
}

.wiw-row-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.wiw-ing-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3a2000;
  line-height: 1.2;
}

.wiw-ing-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #a07040;
  text-transform: uppercase;
}

.wiw-td-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8b4513;
}

.wiw-td-benefit {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4a3010;
}

/* ---- SAPP Stack (Center Spine) ---- */

.wiw-sapp-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: sticky;
  top: calc(50vh - 220px);
  align-self: start;
  padding: 0.5rem 0;
  z-index: 1;
}

.wiw-sapp-word {
  display: block;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-align: center;
  color: rgba(60, 30, 10, 0.12);
  will-change: transform, opacity, filter;
  user-select: none;
}

/* ── Word 1: Drop from above + fade ── */
.wiw-sapp-1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Word 2: Letter-spacing collapse ── */
.wiw-sapp-2 {
  opacity: 0;
  letter-spacing: 0.55em;
  transition: opacity 0.55s ease, letter-spacing 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.12s;
}

/* ── Word 3: Blur-to-clear ── */
.wiw-sapp-3 {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.88);
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.24s;
}

/* ── Word 4: Scale-in from large ── */
.wiw-sapp-4 {
  opacity: 0;
  transform: scale(1.3) rotate(-4deg);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.36s;
}

/* ── Word 5: Wipe-up via clip-path ── */
.wiw-sapp-5 {
  opacity: 1;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.48s;
}

/* ── Word 6: Orange gradient sweep from below ── */
.wiw-sapp-6 {
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.60s;
}

/* Activated state — fire when .is-active added to stack */
.wiw-sapp-stack.is-active .wiw-sapp-1 {
  opacity: 1;
  transform: translateY(0);
}
.wiw-sapp-stack.is-active .wiw-sapp-2 {
  opacity: 1;
  letter-spacing: 0.12em;
}
.wiw-sapp-stack.is-active .wiw-sapp-3 {
  opacity: 1;
  filter: none;
  transform: scale(1);
}
.wiw-sapp-stack.is-active .wiw-sapp-4 {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.wiw-sapp-stack.is-active .wiw-sapp-5 {
  clip-path: inset(0 0 0% 0);
}
.wiw-sapp-stack.is-active .wiw-sapp-6 {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Comparison Chart (Right) ---- */

.wiw-chart {
  padding-left: 0.5rem;
}

.wiw-chart .eyebrow {
  margin-bottom: 0.75rem;
}

.wiw-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 251, 242, 0.9), rgba(255, 245, 226, 0.78));
  border: 1px solid rgba(242, 184, 76, 0.22);
  box-shadow:
    0 6px 32px rgba(200, 120, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wiw-table {
  width: 100%;
  border-collapse: collapse;
}

.wiw-table thead tr {
  border-bottom: 1px solid rgba(242, 184, 76, 0.28);
}

.wiw-table th,
.wiw-table td {
  padding: 0.8rem 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.4;
}

.wiw-table thead th {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: #5a3a10;
  letter-spacing: 0.03em;
}

.wiw-th-metric {
  text-align: left !important;
}

.wiw-th-sapp {
  background: linear-gradient(135deg, rgba(249, 200, 112, 0.28), rgba(255, 127, 31, 0.18));
}

.wiw-table tbody th[scope="row"] {
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: #6b4820;
  white-space: nowrap;
  border-right: 1px solid rgba(242, 184, 76, 0.14);
}

.wiw-table tbody td {
  color: #7a5530;
  font-weight: 400;
  border-bottom: 1px solid rgba(242, 184, 76, 0.1);
}

.wiw-table tbody tr:last-child td,
.wiw-table tbody tr:last-child th {
  border-bottom: none;
}

.wiw-td-sapp {
  background: linear-gradient(135deg, rgba(249, 200, 112, 0.18), rgba(255, 127, 31, 0.1)) !important;
  font-weight: 600 !important;
  color: #a05000 !important;
  border-right: 1px solid rgba(242, 184, 76, 0.18) !important;
  border-left: 1px solid rgba(242, 184, 76, 0.18) !important;
}

.wiw-sapp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f9c870 0%, #ff9f43 52%, #ff7f1f 100%);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.8rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(255, 127, 31, 0.35);
}

.wiw-check {
  color: #2a9654;
  font-weight: 700;
  margin-right: 0.15em;
}

.wiw-cross {
  color: #c0392b;
  font-weight: 700;
  margin-right: 0.15em;
}

.wiw-neutral {
  color: #8a6840 !important;
  opacity: 0.75;
}

/* ── Responsive ── */

@media (max-width: 1023px) {
  .wiw-proof {
    width: min(calc(100% - 2rem), 44rem);
    margin-bottom: 2rem;
    padding: 0;
  }

  .wiw-proof-topline {
    font-size: clamp(1.85rem, 5.9vw, 3.2rem);
  }

  .wiw-proof-equals {
    font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  }

  .wiw-proof-value {
    font-size: clamp(2.95rem, 9vw, 4.8rem);
  }

  .wiw-proof-caption {
    font-size: clamp(1.02rem, 2.7vw, 1.32rem);
  }

  .wiw-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem 0;
    padding: 0 1.5rem;
  }

  .wiw-sapp-stack {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.75rem;
    padding: 0.5rem 0;
  }

  .wiw-sapp-word {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .wiw-benefits,
  .wiw-chart {
    padding: 0;
  }

  .wiw-intro-band {
    padding: 2.25rem 1.5rem;
    margin-bottom: 2rem;
  }

  .wiw-benefit {
    transition: transform 240ms ease, box-shadow 240ms ease;
  }
}

@media (max-width: 580px) {
  .why-it-works-band {
    padding: 0.55rem 0 4rem;
  }

  .wiw-proof {
    width: calc(100% - 0.7rem);
    min-height: 48vh;
    margin-bottom: 0.9rem;
    padding: 0.3rem 0 0.45rem;
    display: grid;
    align-content: center;
    justify-items: center;
  }

  .wiw-proof-topline {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(4rem, 17.8vw, 5.55rem);
    line-height: 1.14;
    letter-spacing: -0.05em;
  }

  .wiw-proof-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.9rem;
    white-space: normal;
  }

  .wiw-proof-value-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    gap: 0.55rem;
  }

  .wiw-proof-equals {
    font-size: 2.9rem;
    transform: translateY(-0.01em);
  }

  .wiw-proof-value {
    font-size: clamp(4.75rem, 16.4vw, 6.4rem);
  }

  .wiw-proof-more {
    font-size: 1em;
    line-height: 0.9;
  }

  .wiw-proof-caption {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.7rem;
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    letter-spacing: 0;
    line-height: 1.12;
    white-space: normal;
  }

  .wiw-proof-caption-strong {
    font-size: 1em;
    line-height: 1;
  }

  .wiw-intro-band {
    padding: 1.1rem 1.2rem 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .wiw-intro-side-left,
  .wiw-intro-side-right {
    justify-items: center;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .wiw-heading {
    max-width: none;
    width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.05;
    text-align: center;
  }

  .wiw-subtext {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: none;
    text-align: center;
    width: 100%;
  }

  .wiw-subtext-columns {
    gap: 0.5rem;
    width: 100%;
    margin-inline: auto;
    display: block;
    text-align: center;
  }

  .wiw-intro-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .wiw-table th,
  .wiw-table td {
    padding: 0.65rem 0.6rem;
    font-size: 0.76rem;
  }

  .wiw-table tbody th[scope="row"] {
    font-size: 0.72rem;
  }

  /* ── Ingredient table: 3-col compact on mobile ── */
  .wiw-table-wrap {
    padding: 0 0.4rem 1.5rem;
  }

  .wiw-table-header {
    grid-template-columns: 1fr 52px 1fr;
    padding: 0.9rem 0.6rem 0.65rem;
  }

  .wiw-table-row {
    grid-template-columns: 1fr 52px 1fr;
    padding: 0.65rem 0.6rem;
    gap: 0.35rem;
    align-items: center;
  }

  .wiw-td-ingredient {
    gap: 0.4rem;
  }

  .wiw-row-icon,
  .wiw-row-icon img {
    width: 50px;
    height: 50px;
  }

  .wiw-row-icon .wiw-row-icon-img-schisandra {
    width: 34px;
    height: 34px;
  }

  .wiw-row-icon .wiw-row-icon-img-honey {
    width: 64px;
    height: 64px;
    transform: translateY(-5px);
  }

  .wiw-ing-name {
    font-size: 0.78rem;
  }

  .wiw-ing-sub {
    font-size: 0.58rem;
  }

  .wiw-td-amount {
    font-size: 0.78rem;
    text-align: center;
  }

  .wiw-td-benefit {
    font-size: 0.76rem;
    line-height: 1.4;
    padding-left: 0.5rem;
  }

  .wiw-th-benefit {
    text-align: center;
    padding-left: 0.5rem;
  }

  .wiw-th {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wiw-sapp-word,
  .wiw-benefit {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    letter-spacing: 0.12em !important;
  }

  .wiw-sapp-5 {
    clip-path: none !important;
  }
}

/* ── wiw delay extensions ── */
.wiw-benefit--delay-4.reveal { transition-delay: 0.36s; }
.wiw-benefit--delay-5.reveal { transition-delay: 0.44s; }

/* ── Synergy note ── */
.wiw-synergy {
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.75), rgba(255, 243, 220, 0.6));
  border: 1px dashed rgba(242, 184, 76, 0.35);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wiw-synergy-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b07020;
  margin: 0 0 0.4rem;
}

.wiw-synergy p:last-child {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6b4820;
  margin: 0;
}
