/* ============================================
   YOJEA — Design System
   ============================================ */

:root {
  /* Brand colors */
  --orange:     #E85D1A;
  --orange-deep:#C84A14;
  --coral:      #E87964;   /* from logo accent */
  --cream:      #F8F1E7;
  --cream-warm: #F1E8D8;
  --ink:        #1F1612;
  --ink-mute:   #5a4a40;
  --sage:       #6A7A5C;
  --shell:      #ECE4D5;

  /* Type */
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

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

button { font-family: inherit; cursor: pointer; }

/* Grain texture — used as a SVG <filter> via class */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.08; mix-blend-mode: multiply;
}

/* Mobile-frame mode: when active, viewport is constrained to a phone-shaped
   container in the center of the screen */
body.mobile-frame {
  background: #1a1410;
  padding: 24px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
body.mobile-frame #root {
  width: 390px;
  min-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  background: var(--cream);
}

/* Hide tweaks toggle from print, etc. */
@media print {
  .tweaks-panel { display: none !important; }
}

/* =====================================================
   SECTION 1 — HERO
   ===================================================== */
.s1 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  overflow: hidden;
  padding-bottom: 0;
}
.s1-grain { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.08; mix-blend-mode: multiply; pointer-events: none; }
.s1-blob {
  position: absolute;
  right: -8%;
  top: 6%;
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, rgba(232,93,26,0.22) 0%, rgba(232,93,26,0.06) 50%, transparent 75%);
  filter: blur(20px);
  pointer-events: none;
}

/* Nav */
.s1-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4.5vw, 64px);
}
.s1-nav-links {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
}
.s1-nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.s1-nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(31,22,18,0.18);
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

/* Grid */
.s1-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 4.5vw, 64px) 0;
  min-height: 100vh;
}

.s1-text { display: flex; flex-direction: column; }
.s1-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
}
.s1-eyebrow-line { width: 32px; height: 1px; background: var(--orange); display: inline-block; }

.s1-headline {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10.4vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.s1-headline .s1-row { display: block; }
.s1-headline .s1-row + .s1-row { margin-top: -0.06em; }
.s1-headline em {
  font-style: italic;
  color: var(--orange);
  font-size: 0.78em;
  position: relative;
  top: -0.08em;
  margin-left: 0.08em;
}

.s1-sub {
  margin: clamp(20px, 2.5vw, 36px) 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 460px;
}
.s1-sub strong { color: var(--ink); font-weight: 700; }

.s1-cta-row {
  margin-top: clamp(24px, 2.8vw, 40px);
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

.s1-btn-primary, .s1-btn-ghost {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}
.s1-btn-primary { background: var(--orange); color: #fff; border: none; }
.s1-btn-primary:hover { background: var(--orange-deep); }
.s1-btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.s1-btn-ghost:hover { background: var(--ink); color: #fff; }

.s1-badges {
  margin-top: clamp(24px, 2.5vw, 36px);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.s1-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(31,22,18,0.18);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.s1-badge i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3F8A3F;
  display: inline-block;
}

/* Photo column */
.s1-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-height: 70vh;
}
.s1-photo {
  height: 92%;
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(31,22,18,0.15));
}

.s1-floating-quote {
  position: absolute;
  top: clamp(20px, 4vw, 80px);
  right: clamp(12px, 4vw, 64px);
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px -10px rgba(31,22,18,0.18);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.s1-quote-star {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  font-family: var(--serif); font-style: italic;
}
.s1-quote-big { font-size: 13px; font-weight: 700; line-height: 1.2; }
.s1-quote-sm { font-size: 11px; color: var(--ink-mute); line-height: 1.2; margin-top: 2px; }

.s1-floating-ingredients {
  position: absolute;
  bottom: clamp(40px, 8vw, 140px);
  left: clamp(0px, 1vw, 32px);
  background: var(--ink);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.s1-ing-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px; line-height: 1;
  color: var(--orange);
}
.s1-ing-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0.7;
}
.s1-ing-label { font-size: 14px; font-weight: 500; margin-top: 2px; }

/* Mobile */
@media (max-width: 900px) {
  .s1-nav-links, .s1-nav-cta { display: none; }
  .s1-nav-burger { display: inline-flex; }
  .s1-grid {
    grid-template-columns: 1fr;
    padding-top: 8px;
    gap: 0;
  }
  /* Photo first, then text — flip order on mobile */
  .s1-photo-wrap { order: 1; min-height: 52vh; margin-top: 0; }
  .s1-text { order: 2; margin-top: 12px; }
  .s1-photo { max-height: 65vh; }
  .s1-floating-quote { padding: 10px 12px; top: -10px; right: 4px; }
  .s1-quote-star { width: 28px; height: 28px; font-size: 14px; }
  .s1-quote-big { font-size: 11px; }
  .s1-quote-sm { font-size: 9px; }
  .s1-floating-ingredients { padding: 10px 14px; bottom: 30px; left: 4px; }
  .s1-ing-num { font-size: 28px; }
  .s1-ing-eyebrow { font-size: 9px; }
  .s1-ing-label { font-size: 11px; }
  .s1-cta-row { flex-direction: column; align-items: stretch; }
  .s1-btn-primary, .s1-btn-ghost { justify-content: center; }
  .s1-blob { width: 100%; right: -30%; top: 30%; }
}

/* =====================================================
   SHARED — Click-hint cursor (draws attention to clickable bits)
   ===================================================== */
.click-hint {
  position: absolute;
  pointer-events: none;
  width: 36px;
  height: 36px;
  z-index: 6;
  /* Hidden by default — parent rules opt-in via :show or position class */
  opacity: 0;
  animation: ch-fade-in 0.5s ease-out 0.4s forwards;
}
.click-hint-cursor {
  position: absolute;
  top: 0; left: 0;
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(31,22,18,0.35));
  transform-origin: 50% 12%;
  animation: ch-tap 1.7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.click-hint-ring {
  position: absolute;
  top: 4px; left: 14px;
  width: 14px;
  height: 14px;
  border: 2px solid #E85D1A;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  animation: ch-ring 1.7s ease-out infinite;
}
.click-hint-ring-2 { animation-delay: 0.4s; }

@keyframes ch-fade-in {
  to { opacity: 1; }
}
@keyframes ch-tap {
  0%, 60%, 100% { transform: translate(0, 0) scale(1); }
  18%           { transform: translate(0, 3px) scale(0.9); }
  30%           { transform: translate(0, 0) scale(1); }
}
@keyframes ch-ring {
  0%, 8%  { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  22%     { opacity: 0.9; }
  60%     { opacity: 0; }
  100%    { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

/* Variant overrides for specific placements */
.click-hint-s2-ing {
  /* tucked snug into the bottom-right corner of the ingredient photo */
  bottom: -2px;
  left: 46px;
}
.click-hint-minum {
  /* sits at the bottom-center of the Minum Yojea button, finger touching it */
  top: 100%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -8px);
}

/* Hide when explicitly dismissed (after first click) */
.click-hint.is-dismissed {
  display: none;
}

/* =====================================================
   SECTION 2 — 3D scroll parallax (pinned)
   ===================================================== */
.s2 {
  position: relative;
  width: 100%;
  height: 500vh; /* 5x viewport — scroll runway */
  background: linear-gradient(180deg, var(--cream) 0%, var(--shell) 60%, var(--cream-warm) 100%);
}
.s2-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Decorative background */
.s2-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.s2-bg-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.s2-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}
.s2-bg-blob-1 {
  top: -10%; right: -8%;
  width: 36vw; height: 36vw;
  background: radial-gradient(circle, rgba(232,93,26,0.22) 0%, transparent 70%);
  animation: s2blob 22s ease-in-out infinite;
}
.s2-bg-blob-2 {
  bottom: -12%; left: -6%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(232,121,100,0.18) 0%, transparent 70%);
  animation: s2blob 28s ease-in-out infinite reverse;
}
@keyframes s2blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

.s2-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s2-canvas canvas {
  display: block;
}

.s2-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.s2-spinner {
  width: 28px; height: 28px;
  border: 2px solid rgba(31,22,18,0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: s2spin 0.9s linear infinite;
}
@keyframes s2spin { to { transform: rotate(360deg); } }

.s2-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  padding: 32px;
}
.s2-fallback-box {
  text-align: center;
  padding: 40px 48px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(31,22,18,0.25);
  border-radius: 20px;
  max-width: 460px;
}
.s2-fallback-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.s2-fallback-title {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.s2-fallback-sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-mute);
}

/* Center-top title with dissolve transition */
.s2-center-title {
  position: absolute;
  top: clamp(40px, 8vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  transition: transform 0.2s linear;
}
.s2-center-title-text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  position: relative;
  display: inline-block;
  min-height: 1.1em;
}

/* Dissolve transition */
.s2-dissolve {
  position: relative;
  display: inline-block;
}
.s2-dissolve-layer {
  display: inline-block;
  white-space: nowrap;
}
.s2-dissolve-layer.s2-dissolve-out {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.s2-dl {
  display: inline-block;
  transform-origin: 50% 50%;
}
.s2-dl-in {
  /* `both` fill-mode keeps final keyframe state (opacity:1) after animation */
  animation: s2DissolveIn 0.55s cubic-bezier(.18,.7,.22,1) both;
  animation-delay: calc(var(--idx) * 0.035s);
}
.s2-dl-out {
  animation: s2DissolveOut 0.55s cubic-bezier(.5,.05,.55,.1) both;
  animation-delay: calc(var(--idx) * 0.025s);
}
@keyframes s2DissolveIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.65);
    filter: blur(12px);
    color: var(--orange);
  }
  60% {
    opacity: 1;
    color: var(--orange);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    color: inherit;
  }
}
@keyframes s2DissolveOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-32px) scale(1.5) rotate(calc(var(--idx) * 1.2deg));
    filter: blur(10px);
  }
}

/* Step rail (right) */
.s2-rail {
  position: absolute;
  top: 50%;
  right: clamp(20px, 4vw, 56px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}
.s2-rail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31,22,18,0.18);
  transition: all 0.4s ease;
  position: relative;
}
.s2-rail-dot.active {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,93,26,0.12);
}

/* Ingredient cards */
.s2-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.s2-ing {
  position: absolute;
  width: clamp(170px, 18vw, 240px);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s cubic-bezier(.2,.6,.2,1) var(--delay, 0s);
}
.s2-ing.show { opacity: 1; transform: translateX(0); }

.s2-ing-l {
  left: clamp(20px, 5vw, 64px);
  flex-direction: row;
}
.s2-ing-l.show { transform: translateX(0); }
.s2-ing-r {
  right: clamp(20px, 5vw, 64px);
  flex-direction: row-reverse;
  text-align: right;
}

/* Photo container must be relative so the click-hint can pin to its corner */
.s2-ing-photo {
  width: 64px; height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  overflow: visible;
  background: var(--ink);
  box-shadow: 0 12px 26px -10px rgba(31,22,18,0.35);
  border: 3px solid #fff;
  box-sizing: border-box;
  position: relative;
}
.s2-ing-photo img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}
.s2-ing-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.s2-ing-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.s2-ing-line {
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  width: clamp(40px, 6vw, 80px);
}
.s2-ing-line-l { left: 100%; }
.s2-ing-line-r {
  right: 100%;
  background: linear-gradient(270deg, var(--orange), transparent);
}

/* Progress bar bottom */
.s2-progress {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  width: min(440px, 70vw);
  z-index: 5;
  text-align: center;
}
.s2-progress-hint {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(13px, 1.05vw, 16px);
  color: var(--ink-mute);
  letter-spacing: -0.005em;
  opacity: 0.85;
  animation: s2-hint-bob 3.4s ease-in-out infinite;
}
@keyframes s2-hint-bob {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(-3px); opacity: 1; }
}
.s2-progress-track {
  height: 2px;
  background: rgba(31,22,18,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.s2-progress-fill {
  height: 100%;
  background: var(--orange);
  transition: width 0.15s linear;
}
.s2-progress-label {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .s2 { height: 420vh; }
  .s2-center-title { top: 24px; }
  .s2-center-title-text { font-size: 40px; }
  .s2-rail { display: none; }
  .s2-ing {
    width: 138px;
    gap: 8px;
  }
  .s2-ing-photo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-width: 2.5px;
    box-shadow: 0 8px 18px -8px rgba(31,22,18,0.4);
  }
  .s2-ing-num { font-size: 11px; }
  .s2-ing-name { font-size: 12px; line-height: 1.15; }
  .s2-ing-hint { font-size: 9px; }
  .s2-ing-line { display: none; }
  .s2-ing-l { left: 14px; padding-left: 4px; }
  .s2-ing-r { right: 14px; padding-right: 4px; }
}

@media (max-width: 480px) {
  .s2-ing { width: 132px; gap: 7px; }
  .s2-ing-photo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }
  .s2-ing-l { left: 10px; padding-left: 4px; }
  .s2-ing-r { right: 10px; padding-right: 4px; }
}

/* =====================================================
   SECTION 3 — About + Video + Pillars
   ===================================================== */
.s3 {
  position: relative;
  width: 100%;
  background: var(--cream-warm);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.s3-grain {
  position: absolute; inset: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.s3-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}
.s3-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.s3-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.s3-eyebrow-line {
  width: 32px; height: 1px; background: var(--orange);
}
.s3-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.s3-title em {
  font-style: italic;
  color: var(--orange);
}
.s3-lead {
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
  max-width: 540px;
}

/* Video placeholder */
.s3-video-wrap {
  position: relative;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.s3-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f18 0%, #1a120e 100%);
  box-shadow: 0 30px 80px -20px rgba(31,22,18,0.35);
}
.s3-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-image:
    radial-gradient(ellipse at center, rgba(232,93,26,0.20) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 12px);
}
.s3-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -10px rgba(232,93,26,0.6);
  transition: transform 0.25s ease;
  position: relative;
}
.s3-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: s3pulse 2.4s ease-out infinite;
}
@keyframes s3pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.s3-play:hover { transform: scale(1.06); }
.s3-video-caption {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff;
}
.s3-video-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.s3-video-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.s3-video-frame-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Pillars */
.s3-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.s3-pillar {
  padding: 32px 28px 36px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid rgba(31,22,18,0.06);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.s3-pillar::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,26,0.10), transparent 70%);
}
.s3-pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 18px;
}
.s3-pillar-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.s3-pillar-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* Stats strip */
.s3-bottom-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
}
.s3-stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1;
  color: var(--orange);
}
.s3-stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.s3-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .s3-header { grid-template-columns: 1fr; gap: 24px; }
  .s3-pillars { grid-template-columns: 1fr; }
  .s3-bottom-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .s3-stat-divider { display: none; }
  .s3-video-title { font-size: 16px; }
  .s3-play { width: 64px; height: 64px; }
}


/* =====================================================
   SECTION 4 — Manfaat
   ===================================================== */
.s4 {
  position: relative;
  width: 100%;
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.s4-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.s4-head { position: sticky; top: 60px; }
.s4-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.s4-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.s4-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}
.s4-title em { font-style: italic; color: var(--orange); }
.s4-lead {
  margin: 24px 0 32px;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 420px;
}
.s4-head-meta {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(31,22,18,0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.s4-meta-item { display: flex; flex-direction: column; }
.s4-meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.s4-meta-num span {
  font-size: 14px;
  margin-left: 2px;
  color: var(--orange);
}
.s4-meta-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 600;
}
.s4-meta-divider {
  width: 1px; height: 36px;
  background: rgba(31,22,18,0.15);
}

.s4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.s4-card {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(31,22,18,0.08);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.s4-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(31,22,18,0.18);
}
.s4-card-2 { background: var(--ink); color: #fff; border-color: transparent; }
.s4-card-3 { background: var(--cream-warm); }
.s4-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.s4-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.s4-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.s4-card-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.s4-card-text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  flex: 1;
}
.s4-card-2 .s4-card-text { color: rgba(255,255,255,0.65); }
.s4-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.s4-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(31,22,18,0.15);
  border-radius: 999px;
  color: var(--ink-mute);
}
.s4-card-2 .s4-card-tag {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .s4-container { grid-template-columns: 1fr; gap: 40px; }
  .s4-head { position: static; }
  .s4-grid { grid-template-columns: 1fr; }
  .s4-card { min-height: auto; }
  .s4-head-meta { flex-wrap: wrap; }
}

/* =====================================================
   SECTION 5 — Cara Konsumsi
   ===================================================== */
.s5 {
  position: relative;
  width: 100%;
  background: var(--shell);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.s5-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}
.s5-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.s5-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  align-self: end;
  margin-bottom: 14px;
}
.s5-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.s5-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  justify-self: end;
  text-align: right;
}
.s5-title em { font-style: italic; color: var(--orange); }

.s5-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.s5-step {
  position: relative;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid rgba(31,22,18,0.08);
  border-radius: 20px;
}
.s5-step-numwrap {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(31,22,18,0.15);
}
.s5-step-roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0;
}
.s5-step-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.s5-step-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.s5-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.s5-step-arrow {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.s5-note {
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(31,22,18,0.04);
  border-radius: 14px;
}
.s5-note-icon {
  color: var(--orange);
  flex: 0 0 20px;
  margin-top: 2px;
}
.s5-note-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.s5-note-text strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .s5-head { grid-template-columns: 1fr; gap: 16px; }
  .s5-title { text-align: left; justify-self: start; }
  .s5-steps { grid-template-columns: 1fr; }
  .s5-step-arrow {
    top: auto;
    right: 50%;
    bottom: -30px;
    transform: translateX(50%) rotate(90deg);
  }
}

/* =====================================================
   SECTION 6 — Testimoni (scrapbook + marquee)
   ===================================================== */
.s6 {
  position: relative;
  width: 100%;
  background: var(--cream);
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.s6-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  position: relative;
}
.s6-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.s6-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }

/* ─── Centerpiece stage ──────────────────────────────────────── */
.s6-stage {
  position: relative;
  height: clamp(560px, 64vw, 760px);
  margin: 0 auto clamp(40px, 6vw, 72px);
  max-width: 1100px;
}
.s6-stage-bg {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  pointer-events: none;
}
.s6-stage-bg svg { width: 100%; height: 100%; }

.s6-stage-title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9.2vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  z-index: 2;
  pointer-events: none;
  text-wrap: balance;
}
.s6-stage-title em {
  font-style: italic;
  color: var(--orange);
}

/* ─── Floating polaroid cards ──────────────────────────────── */
.s6-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* No z-index here — children's inline z-index then stacks against
     the headline (z-index 2) so back cards (z=0) sit BEHIND the title
     while front cards (z>=3) sit on top. */
}
.s6-pop {
  position: absolute;
  width: clamp(160px, 17vw, 220px);
  aspect-ratio: 1 / 1;
  transform-origin: center;
  will-change: transform, opacity;
  margin: 0;
}
/* Cards in the upper half sit BEHIND the headline.
   Slight scale-down + lower z-index does the job; we keep filters
   light so text contrast remains strong (the headline still feels
   in front because it's bigger and on z-index 2). */
.s6-pop.is-behind .s6-pop-card {
  filter: saturate(0.95);
  box-shadow:
    0 8px 22px -16px rgba(31,22,18,0.30),
    0 0 0 1px rgba(31,22,18,0.04);
}
    0 14px 28px -16px rgba(31,22,18,0.28),
    0 4px 10px -6px rgba(31,22,18,0.14),
    0 0 0 1px rgba(31,22,18,0.04);
}
.s6-pop.is-behind .s6-pop-card::after {
  display: none;
}

.s6-pop-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 22px 40px -18px rgba(31,22,18,0.32),
    0 8px 14px -8px rgba(31,22,18,0.18),
    0 0 0 1px rgba(31,22,18,0.04);
  padding: 18px 18px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
/* Tone variants — alternating palette across the ring */
.s6-pop-cream  { background: var(--cream-warm); }
.s6-pop-ink    { background: var(--ink); color: #F8F1E7; }
.s6-pop-orange { background: var(--orange-deep); color: #fff; }

.s6-pop-stars {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1;
}
.s6-pop-ink .s6-pop-stars    { color: #FFB872; }
.s6-pop-orange .s6-pop-stars { color: #fff; }

.s6-pop-text {
  margin: 10px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.s6-pop-ink .s6-pop-text    { color: rgba(255,255,255,0.92); }
.s6-pop-orange .s6-pop-text { color: #fff; }

.s6-pop-author {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding-top: 10px;
  border-top: 1px solid rgba(31,22,18,0.08);
}
.s6-pop-ink .s6-pop-author,
.s6-pop-orange .s6-pop-author { border-top-color: rgba(255,255,255,0.18); }

.s6-pop-name {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
.s6-pop-city {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

/* Lifecycle phases — pop animations.
   All transforms start with translate(-50%, -50%) so the card is
   anchored by its CENTER at the (left, top) coordinate in JSX. */
.s6-pop.is-hidden  {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6) rotate(var(--rot, 0deg));
}
.s6-pop.is-showing {
  animation: s6-pop-in 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.s6-pop.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(var(--scale, 1)) rotate(var(--rot, 0deg));
  animation: s6-pop-bob 4s ease-in-out infinite;
}
.s6-pop.is-leaving {
  animation: s6-pop-out 0.42s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
@keyframes s6-pop-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(calc(var(--rot, 0deg) - 18deg));
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(calc(var(--scale, 1) * 1.06)) rotate(var(--rot, 0deg));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(var(--scale, 1)) rotate(var(--rot, 0deg));
  }
}
@keyframes s6-pop-out {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(var(--scale, 1)) rotate(var(--rot, 0deg)); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(calc(var(--rot, 0deg) + 14deg)); }
}
@keyframes s6-pop-bob {
  0%, 100% { transform: translate(-50%, -50%) scale(var(--scale, 1)) rotate(var(--rot, 0deg)); }
  50%      { transform: translate(-50%, calc(-50% - 6px)) scale(var(--scale, 1)) rotate(var(--rot, 0deg)); }
}

/* ─── Quote marquee (pauses on hover) ──────────────────────── */
.s6-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(31,22,18,0.08);
  border-bottom: 1px solid rgba(31,22,18,0.08);
  background: rgba(255,255,255,0.5);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.s6-marquee-track {
  display: flex;
  gap: 22px;
  align-items: center;
  width: max-content;
  animation: s6-marquee 150s linear infinite;
}
.s6-marquee:hover .s6-marquee-track {
  animation-play-state: paused;
}
@keyframes s6-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reverse direction marquee — scrolls right instead of left */
.s6-marquee.s6-marquee-reverse .s6-marquee-track {
  animation-name: s6-marquee-reverse;
}
@keyframes s6-marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Photo marquee variant — bigger track, more breathing room */
.s6-marquee.s6-marquee-photo {
  padding: 24px 0;
  border-top: none;
  background: transparent;
}
.s6-marquee.s6-marquee-photo .s6-marquee-track {
  gap: 18px;
  animation-duration: 90s;
}

/* ─── Square text cards for marquee #2 (no photo) ─── */
.s6-mqsq {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
  height: 200px;
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid rgba(31,22,18,0.08);
  border-radius: 14px;
  box-shadow: 0 12px 26px -16px rgba(31,22,18,0.22);
  flex-shrink: 0;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
/* Alternating tones for visual variety */
.s6-mqsq:nth-child(3n+2) { background: var(--ink); color: #F8F1E7; border-color: transparent; }
.s6-mqsq:nth-child(5n+3) { background: var(--cream-warm); }
.s6-mqsq:nth-child(7n+4) { background: var(--orange-deep); color: #fff; border-color: transparent; }

.s6-marquee:hover .s6-mqsq:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(31,22,18,0.32);
}
.s6-mqsq-stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.s6-mqsq:nth-child(3n+2) .s6-mqsq-stars,
.s6-mqsq:nth-child(7n+4) .s6-mqsq-stars { color: #FFB872; }
.s6-mqsq:nth-child(7n+4) .s6-mqsq-stars { color: #fff; }

.s6-mqsq-text {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.s6-mqsq:nth-child(3n+2) .s6-mqsq-text { color: rgba(255,255,255,0.92); }
.s6-mqsq:nth-child(7n+4) .s6-mqsq-text { color: #fff; }

.s6-mqsq-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(31,22,18,0.08);
}
.s6-mqsq:nth-child(3n+2) .s6-mqsq-author,
.s6-mqsq:nth-child(7n+4) .s6-mqsq-author { border-top-color: rgba(255,255,255,0.18); }

.s6-mqsq-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  flex-shrink: 0;
}
.s6-mqsq:nth-child(3n+2) .s6-mqsq-avatar { background: #fff; color: var(--ink); }
.s6-mqsq:nth-child(7n+4) .s6-mqsq-avatar { background: var(--ink); color: #fff; }
.s6-mqsq:nth-child(5n+3) .s6-mqsq-avatar { background: #fff; }

.s6-mqsq-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.s6-mqsq-name {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
.s6-mqsq-city {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

.s6-marquee-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid rgba(31,22,18,0.08);
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--sans);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.s6-marquee:hover .s6-marquee-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px -14px rgba(31,22,18,0.25);
}
.s6-marquee-stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.s6-marquee-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.s6-marquee-author {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── "Dengarkan cerita mereka" — video marquee ─────────────
   Vertical YouTube Shorts thumbnails scroll across a third row.
   Cards are 9:16 aspect with hover lift + play-button overlay.
   Clicking opens the original Shorts URL in a new tab. */
.s6-video-section {
  margin-top: clamp(56px, 7vw, 96px);
  width: 100%;
}
.s6-video-head {
  text-align: center;
  margin-bottom: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.s6-eyebrow-tight {
  margin-bottom: 0;
}
.s6-video-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.s6-video-title em {
  font-style: italic;
  color: var(--orange);
}
.s6-marquee-video {
  padding: 8px 0 24px;
  border-top: none;
  background: transparent;
}
.s6-video-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(8px, 1.6vw, 18px);
}
.s6-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 26px -12px rgba(232,93,26,0.55);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background 0.25s ease;
}
.s6-explore-btn:hover {
  transform: translateY(-2px);
  background: var(--orange-deep);
  box-shadow: 0 16px 32px -12px rgba(232,93,26,0.6);
}
.s6-explore-btn svg {
  transition: transform 0.25s ease;
}
.s6-explore-btn:hover svg {
  transform: translateX(3px);
}
.s6-marquee-video .s6-marquee-track {
  gap: 18px;
  animation-duration: 70s;
}
.s6-vcard {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.s6-marquee-video:hover .s6-vcard:hover {
  transform: translateY(-6px);
}
.s6-vcard-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #1a120e;
  box-shadow:
    0 14px 30px -14px rgba(31,22,18,0.40),
    0 0 0 1px rgba(31,22,18,0.06);
}
.s6-vcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.s6-marquee-video:hover .s6-vcard:hover .s6-vcard-thumb img {
  transform: scale(1.06);
}
.s6-vcard-play {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.5);
  transition: transform 0.25s ease;
}
.s6-vcard-play svg { width: 22px; height: 22px; margin-left: 2px; }
.s6-marquee-video:hover .s6-vcard:hover .s6-vcard-play {
  transform: scale(1.08);
}
.s6-vcard-tag {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex; align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.s6-vcard-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 4px;
}
.s6-vcard-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.s6-vcard-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: -0.005em;
}

@media (max-width: 700px) {
  .s6-vcard { width: 150px; }
  .s6-vcard-play { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .s6-vcard-play svg { width: 18px; height: 18px; }
}

/* ─── Stats footer ────────────────────────────────────────── */
.s6-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
}
.s6-meta-stat {
  padding: 0 8px;
}
.s6-meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.s6-meta-num span {
  font-size: 0.5em;
  color: var(--ink-mute);
  font-style: normal;
  margin-left: 2px;
}
.s6-meta-lab {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .s6-stage { height: clamp(520px, 110vw, 700px); }
  .s6-stage-title { font-size: clamp(36px, 10vw, 56px); }
  .s6-pop { width: clamp(110px, 26vw, 150px); }
  .s6-pop-text { font-size: 11px; line-height: 1.35; -webkit-line-clamp: 3; }
  .s6-pop-stars { font-size: 9px; }
  .s6-pop-name  { font-size: 10px; }
  .s6-pop-city  { font-size: 8px; }
  .s6-pop-card  { padding: 12px 12px 10px; gap: 6px; }
  .s6-marquee-card { padding: 10px 16px; gap: 10px; }
  .s6-marquee-quote { font-size: 13px; }
  .s6-marquee-author { font-size: 10px; }
  .s6-mqsq { width: 240px; height: 180px; padding: 18px; }
  .s6-mqsq-text { font-size: 14px; -webkit-line-clamp: 4; }
}
@media (max-width: 560px) {
  .s6 { padding: clamp(60px, 14vw, 100px) clamp(16px, 4vw, 28px); }
  .s6-stage { height: 540px; }
  .s6-stage-title { font-size: 38px; }
  .s6-pop  { width: 96px; }
  .s6-pop-card { padding: 10px 10px 8px; }
  .s6-pop-text { font-size: 10px; -webkit-line-clamp: 2; }
  .s6-meta { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 380px) {
  .s6-stage { height: 500px; }
  .s6-pop { width: 88px; }
}

/* =====================================================
   SECTION 7 — FAQ
   ===================================================== */
.s7 {
  position: relative;
  width: 100%;
  background: var(--cream-warm);
  padding: clamp(80px, 12vw, 160px) 0;
}
.s7-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.s7-head { position: sticky; top: 60px; }
.s7-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.s7-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.s7-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}
.s7-title em { font-style: italic; color: var(--orange); }
.s7-lead {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.s7-lead a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact Us button — WhatsApp CTA below the FAQ lead paragraph */
.s7-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 22px -12px rgba(31,22,18,0.40);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
}
.s7-contact-btn:hover {
  transform: translateY(-2px);
  background: #25D366;
  box-shadow: 0 14px 28px -12px rgba(37,211,102,0.45);
}
.s7-contact-icon,
.s7-contact-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s7-contact-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}
.s7-contact-btn:hover .s7-contact-arrow {
  transform: translateX(3px);
  background: rgba(255,255,255,0.22);
}

/* Numbered list inside a FAQ answer (cara konsumsi) */
.s7-a-list {
  margin: 4px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s7-a-list li {
  font-size: inherit;
  line-height: 1.55;
  color: inherit;
}

.s7-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s7-item {
  border: 1px solid rgba(31,22,18,0.10);
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  transition: background 0.25s ease;
}
.s7-item.is-open { background: #fff; }
.s7-q {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-family: var(--sans);
}
.s7-q-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  flex: 0 0 28px;
}
.s7-q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.s7-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(31,22,18,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
}
.s7-item.is-open .s7-q-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}
.s7-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.s7-item.is-open .s7-a-wrap { grid-template-rows: 1fr; }
.s7-a {
  overflow: hidden;
  padding: 0 24px 0 70px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mute);
}
.s7-item.is-open .s7-a { padding-bottom: 24px; }

@media (max-width: 900px) {
  .s7-container { grid-template-columns: 1fr; gap: 32px; }
  .s7-head { position: static; }
  .s7-a { padding-left: 56px; padding-right: 16px; }
  .s7-q { padding: 18px 18px; gap: 12px; }
  .s7-q-text { font-size: 15px; }
}

/* =====================================================
   SECTION 8 — Final CTA
   ===================================================== */
.s8 {
  position: relative;
  width: 100%;
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.s8-grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  mix-blend-mode: screen;
  pointer-events: none;
}
.s8-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  max-width: 720px;
  margin-left: clamp(20px, 8vw, 120px);
}
.s8-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.s8-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.s8-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.s8-title em {
  font-style: italic;
  color: var(--orange);
}
.s8-lead {
  margin: 28px 0 36px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
}

.s8-price {
  display: flex; align-items: baseline; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.s8-price-old {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.s8-price-new {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.s8-price-new span:first-of-type { color: var(--orange); }
.s8-price-unit {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-left: 12px;
  letter-spacing: 0;
  font-weight: 500;
}
.s8-price-badge {
  background: var(--orange);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.s8-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.s8-btn-primary, .s8-btn-ghost {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 18px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: none;
}
.s8-btn-primary { background: var(--orange); color: #fff; }
.s8-btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.s8-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.s8-btn-ghost:hover { background: rgba(255,255,255,0.08); }

.s8-trust {
  display: flex; flex-wrap: wrap; gap: 20px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.s8-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.s8-trust-item svg { color: var(--orange); flex-shrink: 0; }

.s8-product {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 600px;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.s8-product-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.12);
}
.s8-product-ring-1 { inset: 0; }
.s8-product-ring-2 { inset: 8%; border-color: rgba(232,93,26,0.25); }
.s8-product-ring-3 {
  inset: 16%;
  background: radial-gradient(circle, rgba(232,93,26,0.18) 0%, transparent 70%);
  border: none;
}
.s8-product-img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
}
.s8-product-tag {
  position: absolute;
  bottom: 12%;
  left: 4%;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  z-index: 3;
  rotate: -10deg;
  box-shadow: 0 20px 50px -10px rgba(232,93,26,0.6);
}
.s8-product-tag-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
}
.s8-product-tag-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .s8-product { width: 36vw; opacity: 0.35; right: -10%; }
}
@media (max-width: 900px) {
  .s8-product { display: none; }
  .s8-container { margin: 0 auto; }
  .s8-title { font-size: clamp(40px, 9vw, 64px); }
  .s8-price-new { font-size: 36px; }
}

/* =====================================================
   SECTION 9 — Footer
   ===================================================== */
.s9 {
  position: relative;
  width: 100%;
  background: rgb(90, 14, 18);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0 0;
  overflow: hidden;
}
.s9-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}
.s9-top {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.s9-brand { max-width: 280px; }
.s9-logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}
.s9-brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.s9-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.s9-col { display: flex; flex-direction: column; gap: 12px; }
.s9-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.s9-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.s9-col a:hover { color: var(--orange); }

/* Copy-to-clipboard contact links (email + WhatsApp number) — styled to
   match .s9-col a but reset from default <button> chrome. */
.s9-copy-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  width: fit-content;
}
.s9-copy-link:hover { color: var(--orange); }
.s9-copy-link.is-copied { color: var(--orange); }

/* Contact rows: icon + label aligned on one line */
#kontak .s9-col:last-child a,
.s9-copy-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.s9-link-icon {
  flex: none;
  color: var(--orange);
  transition: color 0.2s ease;
}

.s9-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.s9-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.s9-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.s9-legal {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.s9-legal a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.s9-legal a:hover { color: var(--orange); }
.s9-legal span { opacity: 0.4; }

.s9-mega {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 26vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,93,26,0.25);
  text-align: center;
  margin-top: -0.15em;
  margin-bottom: -0.2em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .s9-top { grid-template-columns: 1fr; }
  .s9-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .s9-bottom { flex-direction: column; align-items: flex-start; }
}


/* =====================================================
   SECTION 2 — Ingredient popup
   ===================================================== */
.s2-ing {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: inherit;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.s2-ing-text { display: flex; flex-direction: column; }
.s2-ing-r .s2-ing-text { align-items: flex-end; }
.s2-ing-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.s2-ing:hover .s2-ing-hint,
.s2-ing:focus-visible .s2-ing-hint { opacity: 1; }
.s2-ing:hover .s2-ing-photo {
  transform: scale(1.08);
}
.s2-ing-photo {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.s2-ing:hover .s2-ing-photo {
  box-shadow: 0 16px 30px -8px rgba(232,93,26,0.45);
}

.s2-pop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(20,16,13,0.55);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: s2PopFade 0.25s ease both;
}
@keyframes s2PopFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.s2-pop-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--cream);
  border-radius: 24px;
  max-width: 760px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.45);
  animation: s2PopRise 0.4s cubic-bezier(.18,.7,.22,1) both;
}
@keyframes s2PopRise {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.s2-pop-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,22,18,0.1);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  transition: background 0.2s ease, transform 0.2s ease;
}
.s2-pop-close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }

.s2-pop-photo {
  background: linear-gradient(135deg, #fff 0%, var(--cream-warm) 100%);
  position: relative;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  overflow: hidden;
}
/* Outer dotted ring — sized off the image, sits OUTSIDE it */
.s2-pop-photo::before {
  content: '';
  position: absolute;
  width: min(72%, 260px);
  aspect-ratio: 1/1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dotted rgba(232,93,26,0.55);
  border-radius: 50%;
  animation: s2-ring-spin 40s linear infinite;
}
/* Soft radial halo behind the photo */
.s2-pop-photo::after {
  content: '';
  position: absolute;
  width: min(78%, 280px);
  aspect-ratio: 1/1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(232,93,26,0.18) 0%,
    rgba(232,93,26,0.08) 45%,
    rgba(232,93,26,0) 75%);
  border-radius: 50%;
  pointer-events: none;
}
@keyframes s2-ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.s2-pop-photo img {
  position: relative;
  z-index: 2;
  width: min(60%, 220px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 5px rgba(31,22,18,0.08),
    0 20px 36px -10px rgba(31,22,18,0.28);
}

.s2-pop-body {
  padding: 40px 36px 36px;
  display: flex; flex-direction: column;
}
.s2-pop-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.s2-pop-eyebrow-line { width: 24px; height: 1px; background: var(--orange); }
.s2-pop-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.s2-pop-latin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 6px 0 18px;
}
.s2-pop-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 22px;
}
.s2-pop-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.s2-pop-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid rgba(31,22,18,0.15);
  border-radius: 999px;
  color: var(--ink-mute);
}

@media (max-width: 700px) {
  .s2-pop-card { grid-template-columns: 1fr; max-width: 420px; }
  .s2-pop-photo {
    min-height: 240px;
    padding: 40px 32px;
  }
  .s2-pop-photo img { width: min(55%, 180px); }
  .s2-pop-photo::before { width: min(68%, 220px); }
  .s2-pop-photo::after  { width: min(75%, 240px); }
  .s2-pop-body { padding: 24px 24px 28px; }
  .s2-pop-name { font-size: 32px; }
}

/* =====================================================
   SECTION 3 — Full-bleed video + overlapping title (OVERRIDE)
   ===================================================== */
.s3 {
  position: relative;
  width: 100%;
  background: var(--cream-warm);
  padding: 0;
  overflow: hidden;
}
.s3-grain { display: none; }

.s3-video-full {
  position: relative;
  width: 100%;
  padding: clamp(44px, 6vw, 80px) 0 clamp(44px, 6vw, 72px);
  background: linear-gradient(135deg, #2a1f18 0%, #1a120e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  overflow: hidden;
}
.s3-video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,93,26,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(232,121,100,0.18), transparent 50%);
}
.s3-video-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Vertical YouTube Shorts iframe — sits centered in the banner.
   The outer frame is a rounded "phone-like" mask; the inner box
   forces the 9:16 aspect ratio of YouTube Shorts. */
.s3-video-frame {
  position: relative;
  z-index: 2;
  width: min(460px, 88vw);
  max-height: 82vh;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 0 8px rgba(255,255,255,0.04);
  background: #000;
}
.s3-video-frame-inner {
  position: absolute;
  inset: 0;
}
.s3-video-frame-inner iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Fullscreen button — sits BELOW the video, not overlaying it */
.s3-video-fs {
  position: relative !important;
  float: none !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  z-index: 4;
  flex-direction: row !important;
  align-self: center;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.s3-video-fs svg { width: 16px; height: 16px; }
.s3-video-fs:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.s3-play {
  position: relative;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px -10px rgba(232,93,26,0.65);
  transition: transform 0.25s ease;
  z-index: 2;
}
.s3-play:hover { transform: scale(1.08); }
.s3-play-pulse {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: s3pulse 2.4s ease-out infinite;
}
@keyframes s3pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.s3-video-tag-tl,
.s3-video-tag-tr {
  position: absolute;
  top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.s3-video-tag-tl { left: 28px; }
.s3-video-tag-tr { right: 28px; background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); }
.s3-video-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #E85D1A;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(232,93,26,0.25);
  animation: s3dotPulse 1.6s ease-in-out infinite;
}
@keyframes s3dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,93,26,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(232,93,26,0.10); }
}
.s3-video-caption {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex; flex-direction: column; gap: 4px;
  color: #fff;
  z-index: 2;
}
.s3-video-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.s3-video-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* OVERLAPPING CONTENT — pulled up over the video */
.s3-content {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}
.s3-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(28px, 5vw, 80px) clamp(80px, 12vw, 140px);
  background: var(--cream-warm);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -20px 50px -20px rgba(31,22,18,0.18);
}
.s3-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.s3-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.s3-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  max-width: 1000px;
}
.s3-title em { font-style: italic; color: var(--orange); }
.s3-lead {
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0 0 18px;
  max-width: 760px;
}
.s3-lead:last-of-type { margin-bottom: 56px; }

/* Override old s3-header / s3-video-wrap / s3-pillars (kept blank if present) */
.s3-header, .s3-video-wrap, .s3-pillars { display: none; }

.s3-bottom-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
}
.s3-stat { text-align: center; }
.s3-stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1;
  color: var(--orange);
}
.s3-stat-label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.s3-stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .s3-video-full { padding: 36px 0 56px; }
  .s3-video-frame { width: min(380px, 84vw); max-height: 78vh; border-radius: 18px; }
  .s3-play { width: 80px; height: 80px; }
  .s3-video-tag-tl, .s3-video-tag-tr { font-size: 9px; padding: 8px 12px; top: 16px; }
  .s3-video-tag-tl { left: 16px; }
  .s3-video-tag-tr { right: 16px; }
  .s3-video-caption { bottom: 16px; left: 16px; }
  .s3-video-title { font-size: 16px; }
  .s3-video-fs { padding: 10px 18px; font-size: 12px; }
  .s3-content { margin-top: -32px; }
  .s3-container { padding: 40px 24px 60px; border-radius: 24px 24px 0 0; }
  .s3-bottom-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  .s3-stat-divider { display: none; }
}

/* =====================================================
   SECTION HAID — Manfaat (sticky title + sachet + benefits)
   ===================================================== */
.sh {
  position: relative;
  width: 100%;
  height: 560vh; /* longer runway so each phase has breathing room */
  transition: background 0.4s linear;
}
.sh-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.sh-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(255,90,60,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(180,30,30,0.45), transparent 55%);
  pointer-events: none;
  transition: opacity 0.2s linear;
  z-index: 1;
}

/* STICKY title — left column, always visible */
.sh-title-wrap {
  position: absolute;
  top: 50%;
  left: clamp(28px, 5vw, 80px);
  transform: translateY(-50%);
  z-index: 4;
  max-width: 460px;
  transition: color 0.5s ease;
}
.sh-title-wrap.light { color: var(--ink); }
.sh-title-wrap.dark { color: #fff; }
.sh-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.sh-eyebrow-line { width: 32px; height: 1px; background: var(--orange); opacity: 0.7; }
.sh-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: inherit;
}
.sh-title em { font-style: italic; color: var(--orange); }
.sh-title-sub {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  margin: 0;
  opacity: 0.7;
  max-width: 380px;
}

/* Sachet — horizontal photo crossing the screen */
.sh-sachet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(110px, 14vw, 180px);
  z-index: 5;
  will-change: transform;
  transition: transform 0.05s linear;
}
.sh-sachet-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 3.4;     /* matches sachet image proportions */
}
.sh-sachet-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  animation: sh-sachet-float 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes sh-sachet-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(1.6deg); }
}

/* The cap flap piece that flies off when sachet tears */
.sh-sachet-cap {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 7%;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.4,1.6,.5,1), opacity 0.5s ease;
  pointer-events: none;
}
.sh-sachet-cap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

/* Jagged torn-paper edge revealed under the cap */
.sh-tear-edge {
  position: absolute;
  top: 6.2%;
  left: 0;
  width: 100%;
  height: 22px;
  pointer-events: none;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.15));
}

/* VERTICAL pour — falls straight DOWN from the rip,
   regardless of sachet's rotation (we counter-rotate via the rotate property
   on .sh-sachet — the parent rotates everything 90deg, so to make the pour
   appear vertical in screen space we counter-rotate it back). */
.sh-pour {
  position: absolute;
  top: 0;
  left: 50%;
  /* parent is rotated +90deg (CW), so to point pour "down" on screen we add -90deg */
  transform: translate(-50%, -100%) rotate(-90deg);
  transform-origin: 50% 100%;
  width: 50px;
  pointer-events: none;
  transition: opacity 0.3s ease, height 0.2s linear;
}
.sh-pour-stream {
  position: absolute;
  top: 0; left: 50%;
  width: 14px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    rgba(255,210,74,0) 0%,
    rgba(255,210,74,0.9) 6%,
    rgba(255,184,31,0.95) 60%,
    rgba(255,184,31,0) 100%);
  border-radius: 50px;
  filter: blur(0.5px);
}
.sh-drop {
  position: absolute;
  border-radius: 50% 50% 60% 60% / 60% 60% 100% 100%;
  background: radial-gradient(circle at 30% 30%, #FFE38A 0%, #FFC93C 55%, #E89A0C 100%);
  box-shadow: 0 6px 12px -2px rgba(232,154,12,0.4);
  transform: translate(-50%, 0);
  pointer-events: none;
}

/* Benefits stack — right side */
.sh-benefits {
  position: absolute;
  top: 50%;
  right: clamp(28px, 5vw, 80px);
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 420px);
  display: flex; flex-direction: column;
  gap: 12px;
  z-index: 4;
}
.sh-benefit {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.3);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.18,.7,.22,1);
  backdrop-filter: blur(8px);
}
.sh-benefit-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
  flex: 0 0 32px;
}
.sh-benefit-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.sh-benefit-tick {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.sh-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 4;
}
.sh-hint.light { color: var(--ink-mute); }
.sh-hint.dark { color: rgba(255,255,255,0.7); }
.sh-hint-bar {
  width: 120px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.sh-hint-fill {
  position: absolute;
  inset: 0;
  background: var(--orange);
  transition: width 0.15s linear;
}

@media (max-width: 1100px) {
  .sh-benefits { width: clamp(260px, 38vw, 340px); }
  .sh-sachet { width: clamp(100px, 14vw, 150px); }
}
@media (max-width: 900px) {
  .sh { height: 520vh; }
  .sh-title-wrap {
    top: clamp(60px, 8vh, 100px);
    transform: none;
    max-width: 90%;
  }
  .sh-title { font-size: 28px; }
  .sh-title-sub { font-size: 13px; }
  .sh-sachet { width: 90px; top: calc(22% + 175px); }
  .sh-benefits {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
    top: auto;
    bottom: 70px;
    transform: none;
    gap: 6px;
    max-height: 42vh;
    overflow: hidden;
  }
  .sh-benefit { padding: 10px 14px; }
  .sh-benefit-text { font-size: 12px; }
}

/* =====================================================
   SECTION HORMON — imbalance explanation
   ===================================================== */
.sho {
  position: relative;
  width: 100%;
  background: var(--cream);
  padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.sho-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}
.sho-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 36px;
}
.sho-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }

.sho-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.sho-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.sho-title em { font-style: italic; color: var(--orange); }

.sho-diagram {
  background: linear-gradient(180deg, var(--cream-warm) 0%, rgba(241,232,216,0.4) 100%);
  border-radius: 24px;
  padding: 24px 28px 22px;
  border: 1px solid rgba(31,22,18,0.06);
  display: flex; flex-direction: column; align-items: center;
}
.sho-diagram svg { width: 100%; max-width: 400px; height: auto; }

/* Full-width card variant — diagram sits on top of the section */
.sho-diagram--card {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: clamp(44px, 6vw, 72px);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 56px) clamp(28px, 3.5vw, 44px);
  border-radius: clamp(24px, 2.4vw, 34px);
  transition: background 0.6s ease, border-color 0.6s ease;
}
/* Imbalanced → dark card so the red/yellow pulse glows against it */
.sho-diagram--card:not(.is-balanced) {
  background: #5A0E12;
  border-color: rgba(255,255,255,0.08);
}
/* keep all card content above the FX layer */
.sho-diagram--card > .sho-status,
.sho-diagram--card > .sho-stage,
.sho-diagram--card > .sho-diagram-caption { position: relative; z-index: 1; }

/* ── State-reactive background FX ───────────────────────────── */
.sho-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sho-fx > span {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* HARSH RED PULSE — visible when imbalanced. Hard-edged radial stops +
   a fast, snappy ease give it an aggressive "rough" throb. */
.sho-fx-red {
  width: 80%;
  height: 130%;
  top: -15%;
  left: 10%;
  background: radial-gradient(circle at center,
    rgba(255,140,30,0.85) 0%,
    rgba(240,110,20,0.6) 24%,
    rgba(210,80,12,0.34) 44%,
    rgba(190,70,10,0.14) 60%,
    transparent 74%);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
}
.sho-fx-red-2 {
  width: 60%;
  height: 90%;
  top: 5%;
  left: 28%;
  background: radial-gradient(circle at center,
    rgba(255,150,40,0.7) 0%,
    rgba(240,110,20,0.42) 30%,
    rgba(210,80,12,0.18) 55%,
    transparent 72%);
}
.sho-diagram--card:not(.is-balanced) .sho-fx-red {
  opacity: 1;
  animation: sho-pulse-red 1.5s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
.sho-diagram--card:not(.is-balanced) .sho-fx-red-2 {
  opacity: 1;
  animation: sho-pulse-red-2 1.1s steps(6, end) infinite;
}
@keyframes sho-pulse-red {
  0%   { transform: scale(0.82); opacity: 0.45; }
  18%  { transform: scale(1.12); opacity: 0.95; }
  30%  { transform: scale(1.02); opacity: 0.7; }
  50%  { transform: scale(1.16); opacity: 0.9; }
  100% { transform: scale(0.82); opacity: 0.45; }
}
@keyframes sho-pulse-red-2 {
  0%   { transform: scale(0.9)  translate(0, 0);    opacity: 0.5; }
  50%  { transform: scale(1.18) translate(-2%, 1%); opacity: 0.85; }
  100% { transform: scale(0.9)  translate(0, 0);    opacity: 0.5; }
}

/* SOFT FREEFORM (MESH) GRADIENT — visible when balanced. Several blended
   radial blobs of sky blue / white / sea blue that drift continuously. */
.sho-fx-blue {
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  border-radius: 0;
  background:
    radial-gradient(42% 52% at 20% 28%, rgba(159,214,242,0.95) 0%, transparent 68%),
    radial-gradient(46% 56% at 80% 22%, rgba(255,255,255,0.92) 0%, transparent 70%),
    radial-gradient(52% 60% at 78% 78%, rgba(46,116,171,0.92) 0%, transparent 72%),
    radial-gradient(46% 56% at 24% 84%, rgba(95,176,224,0.9) 0%, transparent 72%),
    linear-gradient(125deg, #c2e4f6 0%, #eaf6fd 50%, #bfe0f4 100%);
  background-size: 180% 180%;
  opacity: 0;
  filter: blur(14px);
  transition: opacity 1s ease;
}
/* second mesh layer — different blobs, counter-drift for organic motion */
.sho-fx-blue-2 {
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background:
    radial-gradient(40% 48% at 65% 35%, rgba(255,255,255,0.6) 0%, transparent 66%),
    radial-gradient(48% 54% at 30% 60%, rgba(120,195,235,0.4) 0%, transparent 70%),
    radial-gradient(44% 50% at 85% 55%, rgba(70,150,205,0.35) 0%, transparent 70%);
  background-size: 200% 200%;
  mix-blend-mode: screen;
}
.sho-diagram--card.is-balanced .sho-fx-blue {
  opacity: 0.92;
  animation: sho-wave-blue 16s ease-in-out infinite;
}
.sho-diagram--card.is-balanced .sho-fx-blue-2 {
  opacity: 1;
  animation: sho-wave-blue-2 22s ease-in-out infinite;
}
@keyframes sho-wave-blue {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 30%; }
  50%  { background-position: 70% 100%; }
  75%  { background-position: 20% 60%; }
  100% { background-position: 0% 0%; }
}
@keyframes sho-wave-blue-2 {
  0%   { background-position: 100% 100%; }
  33%  { background-position: 0% 60%; }
  66%  { background-position: 60% 0%; }
  100% { background-position: 100% 100%; }
}

.sho-diagram--card .sho-stage { max-width: 760px; }
.sho-diagram--card svg { max-width: 760px; }
/* Make the status read like a proper title at the top of the card */
.sho-diagram--card .sho-status {
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.3em;
  margin-bottom: clamp(10px, 2vw, 26px);
}

/* Stage — wraps the SVG + floating symptom bubbles around it */
.sho-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 12px 80px;            /* tighter vertical gap above/below SVG */
  margin: 0 auto;
}
.sho-stage svg {
  position: relative;
  z-index: 2;
  overflow: visible;
  display: block;
  margin: 0 auto;
}

/* Floating symptom bubbles — scattered across the entire "Akar Masalah"
   section, sitting behind the content layer. */
.sho-symptoms {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.sho-symptom {
  position: absolute;
  transform: translate(-50%, -50%);
  /* Smoothly drift to each new random position. The long transition makes
     the random repositioning look like organic wandering, not teleporting. */
  transition: top 7s cubic-bezier(0.42, 0, 0.58, 1),
              left 7s cubic-bezier(0.42, 0, 0.58, 1);
  /* Small idle bob on the wrapper for some life between repositions */
  animation: sho-symptom-bob 3.2s ease-in-out infinite alternate;
  will-change: top, left, transform;
}
.sho-symptom-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 32% 28%,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.55) 30%,
      rgba(232,93,26,0.18) 70%,
      rgba(200,74,20,0.28) 100%);
  border: 1px solid rgba(232,93,26,0.35);
  box-shadow:
    inset 2px 3px 6px rgba(255,255,255,0.8),
    inset -2px -4px 8px rgba(200,74,20,0.18),
    0 12px 24px -10px rgba(200,74,20,0.4);
}
.sho-symptom-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b2614;
  line-height: 1.1;
  padding: 0 10px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
/* Over the dark hormone box → flip the label to a light color so it reads */
.sho-symptom.is-over-box .sho-symptom-label {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

/* Subtle idle bob — adds some motion between random repositions */
@keyframes sho-symptom-bob {
  from { transform: translate(-50%, calc(-50% - 5px)); }
  to   { transform: translate(-50%, calc(-50% + 7px)); }
}

/* Pop burst — ring + 8 shards */
.sho-symptom-pop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.sho-symptom-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232,93,26,0.7);
  transform: scale(1);
}
.sho-symptom-shard {
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: rgba(232,93,26,0.9);
  box-shadow: 0 0 8px rgba(232,93,26,0.7);
}

/* POP-OUT phase: bubble vanishes outward, ring expands, shards fly out */
.sho-symptom.is-popping-out {
  animation: none;
}
.sho-symptom.is-popping-out .sho-symptom-inner {
  animation: sho-symptom-vanish 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.sho-symptom.is-popping-out .sho-symptom-pop {
  animation: sho-symptom-pop-show 0.7s ease-out forwards;
}
.sho-symptom.is-popping-out .sho-symptom-ring {
  animation: sho-symptom-ring-expand 0.7s ease-out forwards;
}
.sho-symptom.is-popping-out .sho-symptom-shard {
  animation: sho-symptom-shard-fly 0.65s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}

/* POP-IN phase: reverse burst — ring contracts, shards arrive, bubble scales up */
.sho-symptom.is-popping-in {
  animation: none;
}
.sho-symptom.is-popping-in .sho-symptom-inner {
  animation: sho-symptom-appear 0.55s cubic-bezier(0.18, 1.5, 0.4, 1) forwards;
}
.sho-symptom.is-popping-in .sho-symptom-pop {
  animation: sho-symptom-pop-show 0.6s ease-out forwards;
}
.sho-symptom.is-popping-in .sho-symptom-ring {
  animation: sho-symptom-ring-contract 0.55s ease-out forwards;
}
.sho-symptom.is-popping-in .sho-symptom-shard {
  animation: sho-symptom-shard-arrive 0.5s cubic-bezier(0.4, 0, 0.3, 1) forwards;
}

/* GONE phase: hide bubble until reset */
.sho-symptom.is-gone .sho-symptom-inner {
  opacity: 0;
  transform: scale(0);
}
.sho-symptom.is-gone .sho-symptom-pop {
  display: none;
}
.sho-symptom.is-gone {
  animation: none;
}

@keyframes sho-symptom-pop-show {
  0%, 100% { opacity: 1; }
}
@keyframes sho-symptom-vanish {
  0%   { transform: scale(1);    opacity: 1; filter: blur(0); }
  40%  { transform: scale(1.18); opacity: 1; filter: blur(0); }
  100% { transform: scale(0.2);  opacity: 0; filter: blur(4px); }
}
@keyframes sho-symptom-appear {
  0%   { transform: scale(0);    opacity: 0; filter: blur(4px); }
  60%  { transform: scale(1.18); opacity: 1; filter: blur(0); }
  100% { transform: scale(1);    opacity: 1; filter: blur(0); }
}
@keyframes sho-symptom-ring-expand {
  0%   { transform: scale(1);   opacity: 1; border-width: 2px; }
  100% { transform: scale(2.1); opacity: 0; border-width: 0.5px; }
}
@keyframes sho-symptom-ring-contract {
  0%   { transform: scale(2.1); opacity: 0;   border-width: 0.5px; }
  25%  { opacity: 0.8; }
  100% { transform: scale(1);   opacity: 0;   border-width: 2px; }
}
@keyframes sho-symptom-shard-fly {
  0%   { transform: rotate(var(--a)) translateY(0)    scale(1);   opacity: 1; }
  100% { transform: rotate(var(--a)) translateY(60px) scale(0.3); opacity: 0; }
}
@keyframes sho-symptom-shard-arrive {
  0%   { transform: rotate(var(--a)) translateY(60px) scale(0.3); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: rotate(var(--a)) translateY(0)    scale(1);   opacity: 0; }
}

/* Bubble radii animate smoothly when balance is toggled */
.sho-bubble {
  transition: r 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* While imbalanced the radii are re-randomized continuously; use a long,
   gentle sine ease (no overshoot) and a duration longer than the JS
   interval so the circles glide without ever snapping to a stop. */
.sho-diagram--card:not(.is-balanced) .sho-bubble {
  transition: r 3.2s cubic-bezier(0.37, 0, 0.63, 1);
}
.sho-bubble-label,
.sho-bubble-sub {
  transition: opacity 0.4s ease;
}

/* Hormone groups (circle + labels) — static, no floating motion. */
.sho-bubble-group {
  transform-box: fill-box;
  transform-origin: center;
}

/* Yojea envelope — rounded rectangle. Hidden until balanced,
   then scales in with a dash sweep + fade. */
.sho-envelope {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.6);
  opacity: 0;
  stroke-dashoffset: 220;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease,
    stroke-dashoffset 1.1s ease-out;
}
.sho-envelope-fill {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}
.sho-diagram.is-balanced .sho-envelope {
  transform: scale(1);
  opacity: 1;
  stroke-dashoffset: 0;
  animation: sho-envelope-rotate 28s linear infinite;
}
.sho-diagram.is-balanced .sho-envelope-fill {
  transform: scale(1);
  opacity: 1;
}
@keyframes sho-envelope-rotate {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -220; }
}

/* Sparkles drift when balanced */
.sho-sparkles {
  opacity: 0.55;
  transition: opacity 0.5s ease;
}
.sho-diagram.is-balanced .sho-sparkles {
  opacity: 1;
  animation: sho-sparkle-pulse 2.4s ease-in-out infinite;
}
/* When balanced, recolor the orange accents to fit the calm blue mesh */
.sho-diagram.is-balanced .sho-envelope { stroke: #2E74AB; }
.sho-diagram.is-balanced .sho-envelope-fill { fill: rgba(46,116,171,0.06); }
.sho-diagram.is-balanced .sho-sparkles { fill: #2E74AB; }
@keyframes sho-sparkle-pulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

/* Status indicator — matches the "Akar Masalah" eyebrow look */
.sho-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.5s ease;
}
.sho-status[data-state="balanced"] {
  color: #1E5C8A;
}
/* On the dark imbalanced card, the status label needs a light/warm color */
.sho-diagram--card:not(.is-balanced) .sho-status { color: #fff; }

/* Imbalanced (dark-red card) — faint ring on the dark Progesteron circle. */
.sho-diagram--card:not(.is-balanced) .sho-bubble-group--b .sho-bubble {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.2;
}
/* Aggressive throb on the hormone circles while imbalanced — fast, snappy,
   the two circles beat out of sync for an agitated feel. */
/* (Imbalanced circle resizing is driven by JS — random radii that are
   always distinct and either one can be larger. The .sho-bubble `r`
   transition below animates the changes smoothly.) */
.sho-diagram--card:not(.is-balanced) .sho-action {
  background: var(--orange);
  color: #fff;
}
.sho-diagram--card:not(.is-balanced) .sho-action:hover { background: #D44E12; }
.sho-diagram--card:not(.is-balanced) .sho-action-dot { background: #fff; }
.sho-status-line {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.sho-status-text {
  display: inline-block;
}
/* In the top card, give the status label breathing room above the circles */
.sho-diagram--card .sho-status { margin-bottom: clamp(6px, 1.6vw, 18px); }
.sho-diagram--card .sho-diagram-caption { margin-top: clamp(8px, 1.8vw, 20px); }

.sho-diagram-caption {
  margin-top: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Action button */
.sho-action {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #F8F1E7;
  background: var(--ink);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px -8px rgba(31,22,18,0.4);
  position: relative;
}
.sho-action:hover {
  background: #2A1E18;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(31,22,18,0.5);
}
.sho-action:active { transform: translateY(0); }
.sho-action[aria-pressed="true"] {
  background: #2E74AB;
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(46,116,171,0.6);
}
.sho-action[aria-pressed="true"]:hover { background: #266699; }
.sho-action-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transition: background 0.25s ease;
}
.sho-action[aria-pressed="true"] .sho-action-dot {
  background: #fff;
}

.sho-right {
  padding-top: 8px;
}
.sho-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.sho-lead strong {
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}
.sho-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0 0 18px;
  max-width: 520px;
}
.sho-body em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}

.sho-features {
  margin-top: 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(31,22,18,0.08);
}
/* Full-width horizontal trio below the two columns */
.sho-features--row {
  flex-direction: row;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
}
.sho-features--row .sho-feature { flex: 1 1 0; }
.sho-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.sho-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sho-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.sho-feature-text {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .sho-grid { grid-template-columns: 1fr; }
  .sho-title { font-size: 36px; }
  .sho-right { padding-top: 0; }
  /* Stack the feature trio on narrow screens */
  .sho-features--row { flex-direction: column; gap: 16px; }
  .sho-features--row .sho-feature { flex: none; }
  /* On mobile we want the hormone bubbles to read much bigger. Three things
     work together: (1) drop the SVG max-width cap so it can grow with the
     viewport, (2) remove the heavy stage padding that was sized to hold the
     old in-stage symptoms (symptoms now live at the section level), and
     (3) the React layer bumps internal radii. */
  .sho-diagram svg { max-width: none; }
  .sho-diagram { padding: 28px 16px 24px; }
  .sho-stage { padding: 8px 0; max-width: none; }
}

/* =====================================================
   SECTION LAB — white rounded slide-in
   ===================================================== */
.sl {
  position: relative;
  width: 100%;
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

/* Rising bubbles overlay — seamless fizz across the section */
.sl-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.sl-bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.78) 28%,
    rgba(255,236,220,0.35) 60%,
    rgba(232,93,26,0.12) 90%,
    rgba(232,93,26,0) 100%);
  border: 1px solid rgba(232,93,26,0.18);
  box-shadow:
    inset -2px -3px 6px rgba(232,93,26,0.10),
    inset 2px 3px 6px rgba(255,255,255,0.8),
    0 4px 14px rgba(31,22,18,0.06);
  will-change: transform, opacity;
  animation-name: sl-bubble-rise;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes sl-bubble-rise {
  0%   { transform: translate(0, 0) scale(0.55); opacity: 0; }
  8%   { opacity: 0.9; }
  70%  { opacity: 0.9; }
  100% { transform: translate(var(--drift, 0px), calc(-100vh - 100px)) scale(1.08); opacity: 0; }
}

/* Bubbles rising up — seamlessly streaming from below the card,
   floating up across the section as you scroll in. They sit above
   the cream bg but BELOW the white card content. */
.sl-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sl-bubble {
  position: absolute;
  bottom: -40px;
  width: var(--bsz, 18px);
  height: var(--bsz, 18px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.7) 40%,
    rgba(255,255,255,0.25) 70%,
    rgba(255,255,255,0) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  opacity: 0;
  animation: sl-bubble-rise var(--bd, 9s) linear var(--bdelay, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes sl-bubble-rise {
  0%   { transform: translate(0, 0) scale(0.6);  opacity: 0; }
  10%  { opacity: 0.9; }
  60%  { transform: translate(var(--bdrift, 20px), -50vh) scale(1); opacity: 0.85; }
  100% { transform: translate(calc(var(--bdrift, 20px) * 1.6), -110vh) scale(1.1); opacity: 0; }
}
.sl-card {
  position: relative;
  background: #fff;
  border-radius: 40px 40px 0 0;
  padding: clamp(80px, 10vw, 140px) clamp(28px, 5vw, 80px) 0;
  transition: transform 0.6s cubic-bezier(.18,.7,.22,1), opacity 0.6s ease;
  box-shadow: 0 -30px 70px -20px rgba(31,22,18,0.18);
  overflow: hidden;
  z-index: 1;
}

.sl-card-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  padding: 8px 14px;
  border: 1px solid rgba(232,93,26,0.3);
  border-radius: 999px;
  background: rgba(232,93,26,0.06);
  margin-bottom: 28px;
}
.sl-card-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(232,93,26,0.2);
}

.sl-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 980px;
  color: var(--ink);
}
.sl-title em { font-style: italic; color: var(--orange); }

/* 2-column header — text on left, 3D test tube on right */
.sl-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sl-header-text { min-width: 0; }
.sl-header .sl-title { margin-bottom: 28px; }
.sl-header .sl-lead { margin-bottom: 0; }

/* ─── Lab certificate image stack (replaces 3D test tube) ─────
   5 stacked rounded cards sit in the right column of the header.
   They slide in from the right when the section enters the viewport,
   then auto-rotate which page sits on top. Click → opens full PDF.
   The .entered flag flips the per-card transform from "off-screen
   right" to its stacked pose; transition-delay is set inline for
   stagger so cards arrive one after another. */
.sl-lab-stack {
  position: relative;
  width: 100%;
  height: 460px;
  max-width: 380px;
  margin: 0 auto;
  cursor: pointer;
  perspective: 1200px;
}
.sl-lab-stack-glow {
  position: absolute;
  top: 50%; left: 55%;
  width: 80%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(232,93,26,0.22), rgba(232,93,26,0));
  filter: blur(28px);
  pointer-events: none;
  animation: sl-lab-glow 4.5s ease-in-out infinite;
}
@keyframes sl-lab-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}
.sl-lab-page {
  position: absolute;
  top: 50%; left: 50%;
  width: 280px;
  height: 360px;
  margin: -180px 0 0 -140px;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 22px 44px -22px rgba(31,22,18,0.40),
    0 6px 14px -6px rgba(31,22,18,0.18),
    0 0 0 1px rgba(31,22,18,0.06);
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.7s ease;
  will-change: transform, opacity;
}
.sl-lab-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.sl-lab-page-stamp {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,22,18,0.08);
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.sl-lab-stack:hover .sl-lab-page {
  /* Lift the whole stack slightly on hover */
  filter: brightness(1.02);
}
.sl-lab-stack:hover .sl-lab-page:first-child {
  transform: translate(0, -16px) rotate(-1deg) scale(1.02);
}
.sl-lab-stack-hint {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(31,22,18,0.22);
  z-index: 100;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .sl-lab-stack { height: 380px; max-width: 320px; }
  .sl-lab-page { width: 230px; height: 290px; margin: -145px 0 0 -115px; }
}

@media (max-width: 900px) {
  .sl-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.sl-lead {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0 0 64px;
  max-width: 820px;
}
.sl-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.sl-compounds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sl-compound {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--cream);
  border-radius: 24px;
  border: 1px solid rgba(31,22,18,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sl-compound:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(31,22,18,0.18);
}
.sl-compound-icon {
  width: 72px; height: 72px;
  margin-bottom: 24px;
  padding: 8px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(31,22,18,0.06);
}
.sl-compound-icon svg { width: 100%; height: 100%; }

.sl-compound-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.sl-compound-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--ink);
}
.sl-compound-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 24px;
  flex: 1;
}
.sl-compound-bar {
  width: 100%;
  height: 6px;
  background: rgba(31,22,18,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.sl-compound-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-radius: 3px;
}
.sl-compound-bar-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}

.sl-download-wrap {
  position: relative;
  z-index: 3;
  display: flex; justify-content: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.sl-download {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 22px 16px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 24px 60px -16px rgba(31,22,18,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.sl-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -16px rgba(31,22,18,0.6);
}
.sl-download-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sl-download-text { display: flex; flex-direction: column; line-height: 1.15; }
.sl-download-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.sl-download-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.sl-download-arrow {
  display: flex; align-items: center;
  padding-left: 4px;
  color: var(--orange);
}

.sl-field {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-top: 24px;
  /* Fade edges */
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.sl-field-item {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 100px;
  will-change: transform;
  pointer-events: none;
}
.sl-field-item svg { width: 100%; height: 100%; }

@media (max-width: 1100px) {
  .sl-compounds { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .sl-card { border-radius: 28px 28px 0 0; padding: 60px 22px 0; }
  .sl-compounds { grid-template-columns: 1fr; }
  .sl-compound-name { font-size: 30px; }
  .sl-download { flex-wrap: wrap; padding: 12px 16px 12px 12px; }
  .sl-download-icon { width: 38px; height: 38px; }
  .sl-download-title { font-size: 13px; }
  .sl-field { height: 180px; }
}


/* ============================================
   GLOBAL TOPNAV — fixed, reactive to active section
   ============================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4.5vw, 56px);
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  font-family: var(--sans);
}
.topnav.is-scrolled {
  background: rgba(253, 235, 221, 0.15);
  box-shadow: 0 1px 0 rgba(31, 22, 18, 0.06);
  padding-top: 10px;
  padding-bottom: 10px;
}
.topnav-logo { display: flex; align-items: center; flex-shrink: 0; }

.topnav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(31,22,18,0.06);
  border-radius: 999px;
  padding: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.topnav.is-scrolled .topnav-links {
  background: rgba(255,255,255,0.65);
}
.topnav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  border-radius: 999px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.topnav-link:hover { background: rgba(31, 22, 18, 0.05); }
.topnav-link-text { display: inline-block; }
.topnav-link-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.topnav-link.is-active {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 6px 14px -6px rgba(232,93,26,0.55);
}
.topnav-link.is-active .topnav-link-dot {
  opacity: 1;
  transform: scale(1);
  background: #fff;
  animation: topnav-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes topnav-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%      { box-shadow: 0 0 0 4px rgba(255,255,255,0); }
}

.topnav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.topnav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(232,93,26,0.55);
}

.topnav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(31,22,18,0.18);
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  flex-shrink: 0;
}
.topnav-burger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.topnav.is-open .topnav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.topnav.is-open .topnav-burger span:nth-child(2) { opacity: 0; }
.topnav.is-open .topnav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.topnav-drawer {
  display: none;
}
@media (max-width: 900px) {
  .topnav-links, .topnav-cta { display: none; }
  .topnav-burger { display: inline-flex; }
  .topnav-drawer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%; left: 12px; right: 12px;
    margin-top: 6px;
    padding: 14px;
    background: rgba(248, 241, 231, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(31,22,18,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px -16px rgba(31,22,18,0.25);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .topnav.is-open .topnav-drawer {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .topnav-drawer-link {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .topnav-drawer-link.is-active {
    background: var(--orange);
    color: #fff;
  }
  .topnav-drawer-cta {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
  }
}

/* Hide the old in-hero nav (kept in case anything else references it) */
.s1 .s1-nav { display: none; }

/* Adjust hero padding so it doesn't sit too tight under the fixed nav */
.s1 { padding-top: clamp(64px, 9vh, 96px); }

/* ============================================
   HERO — animated radial gradient aurora
   ============================================ */
.s1-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.s1-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform, opacity;
}
.s1-aurora-1 {
  width: 56vw; height: 56vw;
  top: -10%; right: -14%;
  background: radial-gradient(circle, rgba(232,93,26,0.32) 0%, rgba(232,93,26,0.05) 55%, transparent 75%);
  opacity: 0.7;
  animation: s1-aurora-a 14s ease-in-out infinite;
}
.s1-aurora-2 {
  width: 44vw; height: 44vw;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle, rgba(232,121,100,0.28) 0%, rgba(232,121,100,0.05) 55%, transparent 75%);
  opacity: 0.55;
  animation: s1-aurora-b 18s ease-in-out infinite;
}
.s1-aurora-3 {
  width: 32vw; height: 32vw;
  top: 28%; left: 32%;
  background: radial-gradient(circle, rgba(106,122,92,0.18) 0%, transparent 70%);
  opacity: 0.45;
  animation: s1-aurora-c 22s ease-in-out infinite;
}
.s1-aurora-4 {
  width: 28vw; height: 28vw;
  bottom: 16%; right: 24%;
  background: radial-gradient(circle, rgba(255,184,114,0.24) 0%, transparent 65%);
  opacity: 0.5;
  animation: s1-aurora-d 16s ease-in-out infinite;
}
/* Bigger, looping orbits so the gradient is *always* visibly drifting.
   Each blob takes a different elliptical path with its own period so the
   composite never repeats exactly — feels alive rather than mechanical. */
@keyframes s1-aurora-a {
  0%   { transform: translate(0,       0)     scale(1);    opacity: 0.7; }
  25%  { transform: translate(-9vw,    5vw)   scale(1.10); opacity: 0.85; }
  50%  { transform: translate(-3vw,    11vw)  scale(0.95); opacity: 0.68; }
  75%  { transform: translate(7vw,     4vw)   scale(1.05); opacity: 0.78; }
  100% { transform: translate(0,       0)     scale(1);    opacity: 0.7; }
}
@keyframes s1-aurora-b {
  0%   { transform: translate(0,       0)     scale(1);    opacity: 0.55; }
  33%  { transform: translate(8vw,    -6vw)   scale(1.12); opacity: 0.72; }
  66%  { transform: translate(12vw,    3vw)   scale(1.04); opacity: 0.6;  }
  100% { transform: translate(0,       0)     scale(1);    opacity: 0.55; }
}
@keyframes s1-aurora-c {
  0%   { transform: translate(0,       0)     scale(0.95); opacity: 0.45; }
  25%  { transform: translate(-7vw,    6vw)   scale(1.10); opacity: 0.6;  }
  50%  { transform: translate(2vw,     9vw)   scale(1.05); opacity: 0.52; }
  75%  { transform: translate(8vw,     2vw)   scale(0.98); opacity: 0.55; }
  100% { transform: translate(0,       0)     scale(0.95); opacity: 0.45; }
}
@keyframes s1-aurora-d {
  0%   { transform: translate(0,       0)     scale(1);    opacity: 0.5;  }
  20%  { transform: translate(-6vw,   -4vw)   scale(1.12); opacity: 0.7;  }
  50%  { transform: translate(-10vw,   3vw)   scale(1.18); opacity: 0.62; }
  80%  { transform: translate(-4vw,    7vw)   scale(1.06); opacity: 0.58; }
  100% { transform: translate(0,       0)     scale(1);    opacity: 0.5;  }
}

/* Make sure hero content layers above the aurora */
.s1-grid, .s1-text, .s1-photo-wrap { position: relative; z-index: 1; }

/* ============================================
   HERO — cycling testimonial pop-ups around the photo
   ============================================ */
.s1-testi {
  position: absolute;
  z-index: 4;
  background: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow:
    0 18px 32px -14px rgba(31,22,18,0.22),
    0 0 0 1px rgba(31,22,18,0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 188px;
  max-width: 60vw;
  pointer-events: none;
  will-change: transform, opacity, filter;
  animation:
    s1-testi-in 0.75s cubic-bezier(0.22, 0.9, 0.32, 1.02) both,
    s1-testi-out 0.55s cubic-bezier(0.55, 0.0, 0.78, 0.2) 4.55s both;
}
.s1-testi-a {
  top: 38%;
  left: -6%;
  --rot: -4deg;
}
.s1-testi-b {
  bottom: 22%;
  right: -2%;
  --rot: 3deg;
}
.s1-testi-stars {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.s1-testi-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.s1-testi-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(31,22,18,0.08);
}
.s1-testi-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.s1-testi-city {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
/* Raise = drift UP into place. Sink = the reverse, dropping back down.
   Slight blur + scale wobble makes it feel airy rather than mechanical. */
@keyframes s1-testi-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.94) rotate(var(--rot, 0deg));
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--rot, 0deg));
    filter: blur(0);
  }
}
@keyframes s1-testi-out {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--rot, 0deg));
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(28px) scale(0.94) rotate(var(--rot, 0deg));
    filter: blur(6px);
  }
}

@media (max-width: 900px) {
  .s1-testi { width: 150px; padding: 10px 12px; }
  .s1-testi-text { font-size: 12px; }
  .s1-testi-a { top: 10%; left: 0; }
  .s1-testi-b { display: none; }
}
