/* ============================================================
   NIGHTREST — Nocturnal Wellness (MX)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --midnight:    #0B0D1F;
  --panel:       #12152E;
  --panel-up:    #171B3B;
  --panel-glass: rgba(23, 27, 59, 0.72);
  --amber:       #E3A857;
  --amber-deep:  #C6883A;
  --aurora:      #5FD9C7;
  --aurora-dim:  rgba(95, 217, 199, 0.15);
  --ivory:       #F5F1E8;
  --ivory-dim:   #E8E2D4;
  --ink:         #F5F1E8;
  --mid:         #9498B0;
  --light:       #5B5F7A;
  --border:      rgba(227, 168, 87, 0.18);
  --border-soft: rgba(255, 255, 255, 0.08);
  --white:       #FFFFFF;
  --glow-amber:  rgba(227, 168, 87, 0.35);
  --glow-aurora: rgba(95, 217, 199, 0.25);

  /* Legacy aliases */
  --black:      var(--midnight);
  --charcoal:   var(--ink);
  --dark:       #C8CAD8;
  --green:      var(--aurora);
  --green-mid:  var(--aurora);
  --green-pale: var(--aurora-dim);
  --red:        var(--amber);
  --red-mid:    var(--amber-deep);
  --navy:       var(--panel);
  --navy-mid:   var(--panel-up);
  --navy-deep:  var(--midnight);
  --cream:      var(--ivory);
  --cream-deep: var(--ivory-dim);
  --accent:     var(--amber);
  --jade:       var(--aurora);
  --jade-light: var(--aurora);
  --jade-deep:  var(--midnight);
  --jade-pale:  var(--aurora-dim);
  --terra:      var(--amber);
  --terra-dark: var(--amber-deep);
  --sand:       var(--midnight);
  --sand-deep:  var(--panel);
  --gold:       var(--amber);
  --gold-pale:  rgba(227, 168, 87, 0.12);

  --shadow-sm:  0 2px 20px rgba(0, 0, 0, 0.35);
  --shadow-md:  0 12px 48px rgba(0, 0, 0, 0.45);
  --shadow-lg:  0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px var(--glow-amber);
  --max-w:      1200px;
  --serif:      'Bodoni Moda', Georgia, serif;
  --sans:       'Manrope', system-ui, sans-serif;
  --r:          14px;
  --r-lg:       22px;
  --r-pill:     100px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--midnight);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(227, 168, 87, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(95, 217, 199, 0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color .2s, opacity .2s, border-color .2s; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.sec { padding: 100px 0; }
.sec-sm { padding: 64px 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--amber); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.lead { font-size: 1.08rem; color: var(--dark); line-height: 1.85; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s, box-shadow .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--midnight);
  box-shadow: 0 4px 24px var(--glow-amber);
}
.btn-dark:hover { color: var(--midnight); box-shadow: 0 8px 32px var(--glow-amber); }

.btn-green {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--midnight);
  box-shadow: 0 4px 24px var(--glow-amber);
}
.btn-green:hover { color: var(--midnight); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-ghost {
  background: transparent;
  color: var(--aurora);
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { opacity: .8; transform: none; color: var(--amber); }

.btn-white {
  background: var(--ivory);
  color: var(--midnight);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { opacity: .95; color: var(--midnight); }

/* ── Advertorial disclosure ───────────────────────────────── */
.ad-disclosure {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(11, 13, 31, 0.95);
  color: rgba(245, 241, 232, 0.7);
  border-bottom: 1px solid var(--border-soft);
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  min-height: 34px;
  backdrop-filter: blur(12px);
}
.ad-disclosure strong { font-weight: 800; color: var(--amber); }
.ad-disclosure .ad-disclosure-sep { opacity: .35; margin: 0 2px; }
.ad-disclosure .ad-disclosure-sub {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.7rem;
  color: rgba(245, 241, 232, 0.5);
}

/* ── Scroll progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 34px; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--aurora), var(--amber));
  z-index: 401;
  transition: width .1s linear;
  box-shadow: 0 0 12px var(--glow-amber);
}

/* ── Header (glass pill) ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 46px; left: 0; right: 0;
  z-index: 300;
  padding: 0 24px;
  transition: top .3s;
}
.site-header.solid { top: 42px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: calc(var(--max-w) - 80px);
  margin: 0 auto;
  padding: 0 28px;
  background: var(--panel-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--amber); font-weight: 700; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--panel-up) 0%, var(--midnight) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(227, 168, 87, 0.08);
}
.logo-mark svg { width: 18px; fill: none; stroke: var(--amber); stroke-width: 1.6; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a:not(.btn) {
  font-size: .82rem;
  font-weight: 500;
  color: var(--mid);
  transition: color .2s;
}
.main-nav a:not(.btn):hover { color: var(--amber); }
.nav-btn { padding: 10px 20px; font-size: .8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  margin: 12px 24px 0;
  padding: 20px 28px 28px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a:last-of-type { border-bottom: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--midnight) 0%, rgba(11, 13, 31, 0.7) 35%, rgba(11, 13, 31, 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(227, 168, 87, 0.08) 0%, transparent 55%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 15%, rgba(227,168,87,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 80%, rgba(95,217,199,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 88%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0 100px;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; }

.hero-glow-ring {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 168, 87, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 168, 87, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--glow-amber);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-pill span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.6; transform:scale(0.9); } }

.hero h1 {
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 640px;
}
.hero h1 em { color: var(--amber); font-style: italic; }
.hero .lead { color: var(--mid); max-width: 520px; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-cta .btn-outline {
  color: var(--ink);
  border-color: var(--border);
}
.hero-cta .btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(227, 168, 87, 0.06);
}

.hero-numbers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-num-item {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 18px 24px;
  min-width: 130px;
  position: relative;
  overflow: hidden;
}
.hero-num-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.hero-num-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-num-item span {
  font-size: .65rem;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-right-badge {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04);
}
.badge-icon {
  width: 48px; height: 48px;
  background: rgba(227, 168, 87, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 22px; stroke: var(--amber); fill: none; }
.badge-text strong { display: block; font-size: .95rem; color: var(--ink); margin-bottom: 4px; }
.badge-text span { font-size: .78rem; color: var(--mid); }

.hero-moon-visual {
  aspect-ratio: 1;
  max-width: 280px;
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-moon-visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,241,232,0.15) 0%, rgba(227,168,87,0.08) 40%, transparent 70%);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px var(--glow-amber), inset 0 0 40px rgba(227,168,87,0.05);
}
.hero-moon-visual svg {
  width: 80px;
  stroke: var(--amber);
  fill: none;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--glow-amber));
}

.hero-left, .hero-right { display: none; }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--panel);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(11, 13, 31, 0.5);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.trust-item:hover {
  border-color: var(--border);
  box-shadow: 0 0 24px rgba(227, 168, 87, 0.08);
}
.trust-item svg {
  width: 22px;
  stroke: var(--amber);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px var(--glow-amber));
}
.trust-item span { font-size: .82rem; font-weight: 600; color: var(--dark); line-height: 1.45; }

/* ── Callout ─────────────────────────────────────────────── */
.callout-strip {
  background: var(--midnight);
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}
.callout-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(227, 168, 87, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.callout-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.callout-inner blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 24px;
}
.callout-inner blockquote em { color: var(--amber); font-style: normal; }
.callout-cite {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
}

/* ── Ingredients bento grid ──────────────────────────────── */
.ingredients-sec { background: var(--midnight); }
.ingredients-sec .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}
.ingredients-sec .sec-head h2 { max-width: 480px; }
.ingredients-sec .sec-head p { max-width: 360px; text-align: right; color: var(--mid); }

.ingr-list { display: flex; flex-direction: column; }

.ingr-grid,
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}

.ingr-row {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  grid-column: span 6;
}
.ingr-row:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.ingr-row:nth-child(2) { grid-column: span 5; }
.ingr-row:nth-child(3) { grid-column: span 5; }
.ingr-row:nth-child(4) { grid-column: span 4; }
.ingr-row:nth-child(5) { grid-column: span 8; }

.ingr-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(227, 168, 87, 0.06);
  border-color: var(--border);
}

.ingr-num {
  display: flex;
  align-items: center;
  padding: 16px 24px 0;
}
.ingr-num span {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ingr-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.ingr-row:nth-child(1) .ingr-img { aspect-ratio: auto; flex: 1; min-height: 200px; }
.ingr-row:nth-child(5) {
  flex-direction: row;
  align-items: stretch;
}
.ingr-row:nth-child(5) .ingr-img {
  width: 42%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.ingr-row:nth-child(5) .ingr-num { display: none; }
.ingr-row:nth-child(5) .ingr-body { flex: 1; justify-content: center; }

.ingr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.ingr-row:hover .ingr-img img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }

.ingr-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 13, 31, 0.6) 100%);
  pointer-events: none;
}

.ingr-body {
  padding: 22px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}
.ingr-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.ingr-body .lead { font-size: .92rem; margin-bottom: 14px; color: var(--mid); }
.ingr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ingr-pill {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--aurora);
  background: var(--aurora-dim);
  border: 1px solid rgba(95, 217, 199, 0.2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.ingr-index-line { display: none; }

/* ── Steps timeline ──────────────────────────────────────── */
.steps-sec {
  background: var(--panel);
  padding: 96px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.steps-head { margin-bottom: 56px; text-align: center; }
.steps-head .label { justify-content: center; }
.steps-head .label::before { display: none; }
.steps-head h2 { margin-top: 8px; }

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), var(--aurora), var(--amber));
  opacity: 0.4;
  z-index: 0;
}

.step-card {
  background: transparent;
  padding: 0 0 48px 72px;
  position: relative;
  text-align: left;
}
.step-card:last-child { padding-bottom: 0; }

.step-num {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--midnight);
  border: 2px solid var(--amber);
  box-shadow: 0 0 20px var(--glow-amber);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  z-index: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(227, 168, 87, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 22px; stroke: var(--amber); fill: none; }
.step-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-card p { color: var(--mid); font-size: .92rem; line-height: 1.8; }

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  background: var(--midnight);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.stat-callout::before {
  content: '';
  position: absolute;
  top: 50%; left: 15%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px var(--glow-amber), inset 0 0 40px rgba(227, 168, 87, 0.05);
  pointer-events: none;
}
.stat-callout-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-callout-main {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-big {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  text-shadow: 0 0 60px var(--glow-amber);
  min-width: 100px;
  text-align: center;
}
.stat-callout-text h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--serif);
}
.stat-callout-text p { color: var(--mid); font-size: .95rem; margin: 0; max-width: 420px; }
.stat-callout-cta { flex-shrink: 0; }

/* ── Product ─────────────────────────────────────────────── */
.product-sec {
  background: var(--midnight);
  border-top: 1px solid var(--border-soft);
}
.product-sec .label { color: var(--amber); }
.product-sec h2 { color: var(--ink); }
.product-sec .lead { color: var(--dark); }

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-text {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
}
.product-text::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--aurora), var(--amber));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.product-photo { position: relative; }
.product-photo-inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(227, 168, 87, 0.08);
  aspect-ratio: 4/5;
  background: var(--panel);
  border: 1px solid var(--border-soft);
}
.product-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--panel-up);
  padding: 24px;
}

.product-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-glow);
  border: 3px solid var(--midnight);
}
.product-badge strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--midnight);
  line-height: 1.1;
}
.product-badge span { font-size: .55rem; color: rgba(11, 13, 31, 0.7); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

.product-text .label { margin-bottom: 14px; }
.product-text h2 { margin-bottom: 18px; }
.product-text .lead { margin-bottom: 14px; }
.product-text > p { margin-bottom: 28px; color: var(--mid); }

.ingr-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.ingr-tags a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--aurora);
  background: var(--aurora-dim);
  border: 1px solid rgba(95, 217, 199, 0.25);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  transition: border-color .2s, background .2s;
}
.ingr-tags a:hover { border-color: var(--aurora); background: rgba(95, 217, 199, 0.2); }

.product-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.proof-card {
  background: rgba(11, 13, 31, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.proof-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(227, 168, 87, 0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-card-icon svg { width: 18px; stroke: var(--amber); fill: none; }
.proof-card-text strong { display: block; font-size: .78rem; color: var(--ink); line-height: 1.2; }
.proof-card-text span { font-size: .7rem; color: var(--mid); }

.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
}
.feat-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(227, 168, 87, 0.12);
  color: var(--amber);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.product-note {
  font-size: .82rem;
  color: var(--light);
  border-left: 3px solid var(--amber);
  margin-bottom: 28px;
  line-height: 1.65;
  background: rgba(227, 168, 87, 0.06);
  padding: 16px 16px 16px 20px;
  border-radius: 0 var(--r) var(--r) 0;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-sec { background: var(--panel); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-aside {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.contact-aside .label { color: var(--amber); }
.contact-aside h2 { color: var(--ink); margin-bottom: 16px; }
.contact-aside .lead { color: var(--mid); margin-bottom: 36px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-list li:first-child { border-top: 1px solid var(--border-soft); }

.ci-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(227, 168, 87, 0.06);
}
.ci-icon svg { width: 18px; stroke: var(--amber); fill: none; }
.ci-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--light);
  margin-bottom: 4px;
}
.ci-val { font-size: .95rem; font-weight: 500; color: var(--ink); }
.ci-val a { color: var(--ink); }
.ci-val a:hover { color: var(--amber); }

.contact-form-box {
  background: var(--midnight);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 48px;
}
.contact-form-box h3 { margin-bottom: 6px; color: var(--ink); }
.contact-form-box .sub { font-size: .9rem; color: var(--mid); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: .95rem;
  background: var(--panel);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(227, 168, 87, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: .95rem;
}
.form-note {
  font-size: .78rem;
  color: var(--light);
  margin-top: 16px;
  text-align: center;
}
.form-note a { color: var(--amber); }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--aurora-dim);
  border-left: 3px solid var(--aurora);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--aurora);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--midnight); }
.faq-head { margin-bottom: 48px; }
.faq-list { max-width: 800px; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--border);
  box-shadow: 0 0 32px rgba(227, 168, 87, 0.08);
}
.faq-item:last-child { margin-bottom: 0; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s, background .2s;
}
.faq-question:hover { color: var(--amber); background: rgba(227, 168, 87, 0.04); }

.faq-icon {
  width: 30px; height: 30px;
  border: 1.5px solid var(--border-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, transform .3s, background .2s, box-shadow .2s;
}
.faq-icon svg { width: 12px; stroke: var(--mid); fill: none; transition: stroke .2s; }
.faq-item.open .faq-icon {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 16px var(--glow-amber);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: var(--midnight); }
.faq-item.open .faq-question { color: var(--amber); }

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}
.faq-answer p { font-size: .93rem; color: var(--mid); line-height: 1.8; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer {
  background: rgba(11, 13, 31, 0.95);
  border-top: 1px solid var(--border-soft);
  padding: 28px 0;
}
.disclaimer p {
  font-size: .8rem;
  line-height: 1.75;
  color: var(--light);
  margin: 0;
  text-align: center;
}
.disclaimer strong { color: var(--amber); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--midnight);
  border-top: 1px solid var(--border-soft);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3,1fr);
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-soft);
}
.foot-brand .logo { color: var(--ink); display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.foot-brand .logo span { color: var(--amber); }
.foot-brand p { font-size: .88rem; color: var(--mid); line-height: 1.75; max-width: 300px; }

.foot-col h5 {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  font-size: .88rem;
  color: var(--mid);
  font-weight: 400;
}
.foot-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: var(--light); margin: 0; }
.footer-bottom a { color: var(--mid); }
.footer-bottom a:hover { color: var(--amber); }

/* ── Legal pages ────────────────────────────────────────── */
.pg-hero {
  background: var(--panel);
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(227, 168, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pg-hero .crumb { font-size: .8rem; color: var(--light); margin-bottom: 20px; }
.pg-hero .crumb a { color: var(--mid); }
.pg-hero .crumb a:hover { color: var(--amber); }
.pg-hero h1 { color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.pg-hero p { color: var(--mid); margin: 0; font-size: 1.05rem; }
.pg-bar { width: 48px; height: 3px; background: linear-gradient(90deg, var(--amber), var(--aurora)); margin-top: 28px; border-radius: 2px; }

.content-sec { padding: 72px 0 100px; background: var(--midnight); }
.content-body { max-width: 760px; }
.content-body h2 {
  font-size: 1.4rem;
  margin: 44px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1rem; color: var(--mid); }
.content-body ul { margin: 0 0 1rem 24px; }
.content-body li { margin-bottom: 10px; color: var(--mid); }
.content-body a { color: var(--amber); font-weight: 500; }
.content-body a:hover { color: var(--aurora); }
.content-body strong { color: var(--dark); }

.info-box {
  background: var(--panel);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 32px 36px;
  margin-top: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--amber);
}
.info-box h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--ink); }
.info-box p { margin-bottom: 8px; font-size: .92rem; color: var(--mid); }
.info-box a { color: var(--amber); }

.page-hero { display: none; }
.contact-info-card { display: none; }
.contact-page-grid { display: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-moon-visual { display: none; }
  .product-wrap { gap: 48px; }
  .contact-wrap { gap: 40px; }
  .footer-top { grid-template-columns: 1.2fr repeat(3,1fr); gap: 32px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .ingr-row:nth-child(1),
  .ingr-row:nth-child(2),
  .ingr-row:nth-child(3),
  .ingr-row:nth-child(4),
  .ingr-row:nth-child(5) {
    grid-column: span 12;
    grid-row: auto;
  }
  .ingr-row:nth-child(5) { flex-direction: column; }
  .ingr-row:nth-child(5) .ingr-img { width: 100%; aspect-ratio: 16/10; }
  .ingr-row:nth-child(5) .ingr-num { display: flex; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 130px; }
  .hero-overlay { padding: 40px 0 72px; }

  .ingredients-sec .sec-head { flex-direction: column; align-items: flex-start; }
  .ingredients-sec .sec-head p { text-align: left; }

  .product-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .product-text { padding: 32px; }
  .product-badge { top: 12px; right: 12px; width: 86px; height: 86px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-form-box { padding: 32px; }
  .contact-aside { padding: 36px; }

  .stat-callout-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .product-proof { flex-direction: column; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 20px; max-width: none; margin: 0 8px; }
  .site-header { padding: 0 8px; }
  .hero-grid { padding: 0 24px; }
  .hero-overlay { padding: 32px 0 56px; }
  .hero-numbers { flex-direction: column; }
  .hero-num-item { min-width: 0; }

  .sec { padding: 72px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .ingr-body { padding: 20px 22px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .contact-aside { padding: 28px 24px; }

  .ad-disclosure { font-size: 0.68rem; letter-spacing: 0.1em; padding: 8px 12px; min-height: 32px; }
  .ad-disclosure .ad-disclosure-sub { font-size: 0.66rem; }
  .site-header { top: 32px; }
  .scroll-progress { top: 32px; }
}

@media (max-width: 480px) {
  .ad-disclosure .ad-disclosure-sub { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .product-photo-inner { aspect-ratio: 3/2; }
}
