/* ══════════════════════════════════════════════════════════════
   OVOO™ — ovoobeauty.com
   Shared stylesheet for every page. No framework, no build step.

   The palette is taken directly from the product packaging:
   matte black bottle · deep navy label · gold pinstripes ·
   orange logo swoosh. Nothing here is invented — the site should
   look like the bottle the customer receives.

   ORDER OF CONTENTS
     1.  Tokens
     2.  Reset & base
     3.  Layout helpers
     4.  Buttons
     5.  Navigation
     6.  Hero
     7.  Trust bar
     8.  Section furniture
     9.  Before / after
    10.  Steps (how to use)
    11.  Benefit cards
    12.  Variant cards
    13.  Product page — gallery & buy box
    14.  FAQ
    15.  Wholesale band & forms
    16.  Prose (about, privacy)
    17.  CTA band
    18.  Footer
    19.  Lightbox, scroll-top, reveal
    20.  Responsive
   ══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand — sampled from the packaging */
  --ink:          #0B0B0F;   /* matte black bottle */
  --ink-soft:     #16161C;
  --navy:         #16203F;   /* label field */
  --navy-deep:    #0C142E;   /* deepest part of the label gradient */
  --gold:         #C9A227;   /* pinstripe */
  --gold-light:   #E6C976;
  --orange:       #F26A21;   /* logo swoosh */
  --orange-soft:  #FF8A47;

  /* Neutrals */
  --white:        #FFFFFF;
  --cream:        #F8F6F3;
  --gray-050:     #F3F3F5;
  --gray-100:     #E7E7EB;
  --gray-300:     #C2C2CC;
  --gray-500:     #7A7A88;
  --gray-700:     #45454F;

  /* Semantic */
  --bg:           var(--white);
  --bg-alt:       var(--cream);
  --text:         var(--ink);
  --text-muted:   var(--gray-500);
  --border:       var(--gray-100);

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Rhythm */
  --container:    1180px;
  --gutter:       24px;
  --section-y:    clamp(56px, 8vw, 104px);

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  --shadow-sm:    0 2px 8px rgba(11, 11, 15, .06);
  --shadow:       0 10px 30px rgba(11, 11, 15, .10);
  --shadow-lg:    0 24px 60px rgba(11, 11, 15, .18);

  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { margin: 0 0 1em; text-wrap: pretty; }

/* Keyboard focus — visible on every interactive element */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; }

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

/* ── 3. LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-y); }
.section-alt  { background: var(--bg-alt); }
.section-dark { background: var(--ink); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-dark p, .section-navy p { color: rgba(255, 255, 255, .74); }

/* ── 4. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — the Amazon buy action */
.btn-amazon {
  background: var(--orange); color: var(--white);
  box-shadow: 0 8px 22px rgba(242, 106, 33, .34);
}
.btn-amazon:hover { background: var(--orange-soft); box-shadow: 0 12px 30px rgba(242, 106, 33, .42); }

/* Secondary — dark */
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--navy); }

/* Gold — wholesale */
.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 8px 22px rgba(201, 162, 39, .30);
}
.btn-gold:hover { background: var(--gold-light); }

/* Outline variants */
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn-sm { padding: 12px 22px; font-size: .82rem; }
.btn-block { width: 100%; }

/* ── 5. NAVIGATION ─────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}

.logo { display: inline-flex; align-items: center; text-decoration: none; }
/* The real artwork, cut out of the supplied file to transparent PNG. It is the
   lowercase "ovoo" wordmark with the orange brush stroke baked in — the stroke
   is part of the logo, not a CSS decoration, so there is no ::after here.
   Delivered at 360x128 and displayed at 40px tall, which keeps it sharp on 2x
   and 3x screens. `width`/`height` are on the <img> so the nav does not reflow
   while it loads.
   Two files, because the mark is black: the footer sits on navy and uses the
   white variant. Both are generated from the same source; see
   documentation/media-assets.md. */
.logo-mark {
  display: block;
  height: 40px; width: auto;
}
.logo-sub {
  display: block; margin-top: 4px;
  font-size: .54rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted);
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block; padding: 10px 14px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  color: var(--gray-700); border-radius: var(--radius-pill);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--gray-050); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 700; }

.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  font-weight: 800 !important; padding: 11px 20px !important;
  letter-spacing: .02em;
}
.nav-cta:hover { background: var(--orange-soft) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.mobile-menu {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border); background: var(--white);
  padding: 8px var(--gutter) 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px 4px; text-decoration: none; font-weight: 600;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-050);
}
.mobile-menu a:last-child { border-bottom: 0; }
/* The shop link is the menu's primary action — on desktop it's an orange pill,
   so it shouldn't flatten into plain text here. */
.mobile-menu a.m-cta {
  margin-top: 14px; border-bottom: 0; border-radius: var(--radius-pill);
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; text-align: center;
  padding: 16px 20px;
}

/* ── 6. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(35, 52, 102, .55), transparent 62%),
    radial-gradient(760px 520px at 10% 92%, rgba(201, 162, 39, .16), transparent 60%),
    linear-gradient(168deg, var(--ink) 0%, var(--navy-deep) 58%, var(--ink) 100%);
  color: var(--white);
  padding-block: clamp(52px, 7vw, 92px);
}
/* Faint starfield, echoing the label artwork */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 24%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 62% 12%, rgba(255,255,255,.35), transparent),
    radial-gradient(2px 2px   at 84% 46%, rgba(255,255,255,.4),  transparent),
    radial-gradient(1.5px 1.5px at 35% 72%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 72% 82%, rgba(255,255,255,.28), transparent);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
}

.hero h1 { color: var(--white); text-transform: uppercase; letter-spacing: -.025em; }
.hero h1 em {
  font-style: normal; display: block;
  background: linear-gradient(94deg, var(--gold-light), var(--gold) 55%, var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: rgba(255, 255, 255, .78);
  max-width: 52ch; margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.hero-points li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .95rem; color: rgba(255, 255, 255, .84);
}
.hero-points li::before {
  content: '✓'; flex: 0 0 auto;
  width: 21px; height: 21px; margin-top: 1px;
  display: grid; place-items: center;
  background: rgba(201, 162, 39, .18); color: var(--gold-light);
  border-radius: 50%; font-size: .7rem; font-weight: 900;
}

/* Hero product image */
.hero-media {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.hero-media::after {
  content: ''; position: absolute; z-index: 0;
  width: min(88%, 420px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 162, 39, .26), transparent 66%);
  filter: blur(8px);
}
/* The hero shot is a clickable link straight to the Amazon listing. */
.hero-shot {
  position: relative; z-index: 1; display: block;
  max-width: 470px; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .38);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-shot:hover { transform: translateY(-5px); box-shadow: 0 38px 74px rgba(0, 0, 0, .62); }
.hero-shot img { width: 100%; height: auto; }

/* Persistent affordance so it reads as clickable, not decorative */
.hero-shot-cta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 20px 16px; text-align: center;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--white);
  background: linear-gradient(to top, rgba(11, 11, 15, .88), transparent);
}
.hero-shot:hover .hero-shot-cta { color: var(--orange-soft); }

.hero-badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  padding: 11px 19px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700; color: var(--white);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(242, 106, 33, .22);
}

/* ── 7. TRUST BAR ──────────────────────────────────────────── */
.trust-bar { background: var(--ink-soft); color: var(--white); padding-block: 20px; }
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px clamp(24px, 5vw, 60px);
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255, 255, 255, .82);
}
.trust-item strong { color: var(--gold-light); font-weight: 800; }

/* ── 8. SECTION FURNITURE ──────────────────────────────────── */
.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head h2 { text-transform: uppercase; }
.section-head p  { font-size: 1.05rem; color: var(--text-muted); margin: 0; }
.section-dark .section-head p, .section-navy .section-head p { color: rgba(255,255,255,.68); }

/* ── 9. BEFORE / AFTER ─────────────────────────────────────── */
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.ba-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-half { position: relative; }
.ba-half img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ba-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 7px 10px; text-align: center;
  font-family: var(--font-display);
  font-size: .64rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.ba-tag.before { background: rgba(11, 11, 15, .82); color: rgba(255, 255, 255, .85); }
.ba-tag.after  { background: var(--gold); color: var(--ink); }
.ba-caption { padding: 15px 18px; font-size: .88rem; color: var(--text-muted); text-align: center; }

.disclaimer {
  margin-top: 26px; text-align: center;
  font-size: .78rem; color: var(--text-muted); line-height: 1.6;
}
.section-dark .disclaimer, .section-navy .disclaimer { color: rgba(255,255,255,.5); }

/* ── 10. STEPS ─────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 22px; counter-reset: step;
}
.step {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px 26px; text-align: center;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -19px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--ink); color: var(--gold-light);
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  border-radius: 50%; border: 3px solid var(--white);
}
.step img { border-radius: var(--radius-sm); margin-bottom: 16px; aspect-ratio: 1; object-fit: cover; }
.step h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4em; }
.step p  { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ── 11. BENEFIT CARDS ─────────────────────────────────────── */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 20px; }
.benefit {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, .45); }
.benefit-ico {
  width: 46px; height: 46px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: rgba(201, 162, 39, .14); color: var(--gold-light);
  border-radius: 12px;
}
.benefit h3 { color: var(--white); font-size: 1.06rem; text-transform: uppercase; letter-spacing: .03em; }
.benefit p  { font-size: .92rem; margin: 0; }

/* ── 12. VARIANT CARDS ─────────────────────────────────────── */
.variants { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.variant {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.variant:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.variant-img {
  display: block; background: var(--gray-050);
  padding: 30px; text-align: center;
}
.variant-img img { margin-inline: auto; max-height: 300px; width: auto; }
.variant-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.variant-tag {
  align-self: flex-start; margin-bottom: 12px;
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .64rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--navy); color: var(--gold-light);
}
.variant-body h3 { margin-bottom: .4em; }
.variant-body p  { font-size: .93rem; color: var(--text-muted); flex: 1; }
.variant-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── 13. PRODUCT PAGE — GALLERY & BUY BOX ──────────────────── */
.product-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px); align-items: start;
}

.gallery-main {
  background: var(--gray-050); border-radius: var(--radius-lg);
  padding: 30px; margin-bottom: 14px; cursor: zoom-in;
}
.gallery-main img { margin-inline: auto; max-height: 460px; width: auto; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 78px; padding: 6px; background: var(--gray-050);
  border: 2px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-thumb.active { border-color: var(--ink); }

.buy-box { position: sticky; top: 100px; }
.buy-eyebrow {
  font-family: var(--font-display); font-size: .7rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.buy-box h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .35em; }
.buy-lead { font-size: 1.05rem; color: var(--text-muted); }

.price {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 900;
  letter-spacing: -.02em; color: var(--ink);
  margin: 20px 0 0;
}
.price span { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--text-muted); }

/* Payment methods accepted on direct/wholesale orders */
.pay-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 14px;
}
.pay-badge {
  padding: 7px 14px; border-radius: 6px;
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
}
.pay-badge.visa   { background: #1A1F71; }
.pay-badge.mc     { background: #B8471E; }
.pay-badge.paypal { background: #003087; }

.inquiry-emails { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 22px; }

.spec-list { list-style: none; margin: 24px 0; padding: 0; border-top: 1px solid var(--border); }
.spec-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: .92rem;
}
.spec-list dt, .spec-list .k { color: var(--text-muted); }
.spec-list .v { font-weight: 700; text-align: right; }

.buy-actions { display: grid; gap: 12px; margin-top: 26px; }
.buy-note { font-size: .82rem; color: var(--text-muted); margin-top: 14px; }

/* Safety / patch-test callout — required prominence for a hair colorant */
.callout {
  border-left: 4px solid var(--gold);
  background: #FFFBF0;
  padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.callout h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5em; }
.callout p:last-child { margin-bottom: 0; }
.callout p { font-size: .89rem; color: var(--gray-700); }

/* ── 13b. INGREDIENTS ──────────────────────────────────────── */
.ing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.ing {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.section-dark .ing, .section-navy .ing {
  background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .10);
}
.ing-mark {
  width: 52px; height: 52px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border: 2px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-size: 1.25rem;
}
.section-dark .ing-mark { border-color: var(--gold-light); color: var(--gold-light); }
.ing h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .45em; }
.section-dark .ing h3 { color: var(--white); }
.ing p { font-size: .86rem; color: var(--text-muted); margin: 0; }
.section-dark .ing p { color: rgba(255, 255, 255, .7); }

/* ── 13c. SAFETY BLOCK ─────────────────────────────────────── */
.safety { max-width: 900px; margin-inline: auto; }
.safety-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 11px; }
.safety-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .92rem; color: var(--gray-700);
}
.safety-list li::before {
  content: '!'; flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 2px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  border-radius: 50%; font-size: .72rem; font-weight: 900;
}

/* ── 14. FAQ ───────────────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 700;
  color: var(--ink); text-align: left;
}
.faq-q::after {
  content: '+'; flex: 0 0 auto; font-size: 1.5rem; font-weight: 400;
  color: var(--orange); transition: transform .25s var(--ease);
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-a.open { max-height: 620px; }
.faq-a p { padding-bottom: 20px; margin: 0; color: var(--text-muted); font-size: .95rem; }

/* ── 15. WHOLESALE BAND & FORMS ────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px); align-items: center;
}
.split img { border-radius: var(--radius-lg); }

.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; margin-bottom: 7px;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--gray-100); border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, .14);
}
.form-note { font-size: .82rem; color: var(--text-muted); margin: 14px 0 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: .92rem; }
.alert-ok   { background: #EAF7EE; border-left: 4px solid #2E9E52; }
.alert-fail { background: #FDECEC; border-left: 4px solid #D2453F; }

/* ── 15b. WELLNESS ARTICLES ────────────────────────────────── */
.article-lead, .article-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.article-lead:hover, .article-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold);
}

.article-lead { padding: clamp(28px, 4vw, 44px); }
.article-lead h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 14px 0 .5em; }
.article-lead p { font-size: 1.02rem; color: var(--text-muted); max-width: 68ch; }

.article-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.article-card { padding: 26px 24px; display: flex; flex-direction: column; }
.article-card h3 { margin: 12px 0 .5em; }
.article-card p { font-size: .92rem; color: var(--text-muted); flex: 1; }

.article-tag {
  display: inline-block; padding: 5px 13px; border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--navy); color: var(--gold-light);
}
.article-meta {
  display: block; margin-top: 14px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-muted);
}

/* Article body — reuses .prose, adds the byline strip and product card */
.article-head { border-bottom: 1px solid var(--border); padding-bottom: 22px; margin-bottom: 30px; }
.article-head .article-meta { margin-top: 10px; }

.article-product {
  margin: 40px 0 0; padding: 28px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.article-product h3 { font-size: 1.1rem; margin-bottom: .5em; }
.article-product p { font-size: .93rem; color: var(--text-muted); }

/* ── 16. PROSE ─────────────────────────────────────────────── */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; font-size: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--orange); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: .93rem; }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--gray-050); font-weight: 700; }

.page-head {
  background: var(--ink); color: var(--white);
  padding-block: clamp(48px, 6vw, 80px); text-align: center;
}
.page-head h1 { color: var(--white); text-transform: uppercase; margin-bottom: .3em; }
.page-head p  { color: rgba(255,255,255,.7); max-width: 620px; margin-inline: auto; }

/* ── 17. CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background:
    radial-gradient(760px 400px at 50% 0%, rgba(35, 52, 102, .6), transparent 62%),
    var(--ink);
  color: var(--white); text-align: center;
}
.cta-band h2 { color: var(--white); text-transform: uppercase; }
.cta-band p  { max-width: 560px; margin-inline: auto 1.6em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── 18. FOOTER ────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(255, 255, 255, .62); padding-block: 60px 28px; font-size: .9rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .10);
}
/* The footer mark is the white variant — set in the markup, not here, since a
   background-image swap would recolor the orange stroke along with it. */
footer .logo-mark { height: 34px; }
footer .logo-sub  { color: rgba(255, 255, 255, .45); }
.footer-brand p { max-width: 42ch; margin-top: 18px; }
.footer-col h4 {
  color: var(--white); font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 2px; }
/* Footer links are the densest tappable cluster on the page. Padding gives
   each one a ~36px touch target instead of the 16px the text alone provides —
   the `li` margin drops to compensate, so the footer's rhythm is unchanged. */
.footer-col li a { display: inline-block; padding: 10px 0; }
.footer-col a, .footer-brand a {
  color: rgba(255, 255, 255, .62); text-decoration: none;
  transition: color .18s var(--ease);
}
.footer-col a:hover, .footer-brand a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 22px; font-size: .8rem; color: rgba(255, 255, 255, .38);
}
.footer-bottom a { color: inherit; text-decoration: none; display: inline-block; padding: 8px 0; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── 19. LIGHTBOX, SCROLL-TOP, REVEAL ──────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(11, 11, 15, .93);
  place-items: center; padding: 40px; cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; border-radius: var(--radius); cursor: default; }
.lb-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: 0; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

.scroll-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-size: 1.15rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  box-shadow: var(--shadow);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.shown { opacity: 1; transform: none; }

/* ── 20. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner,
  .product-top,
  .split { grid-template-columns: 1fr; }
  /* On phones the pitch comes before the picture.
     Leading with the image pushed the headline to ~600px and the buy buttons
     off the fold entirely — a visitor saw a bottle and no reason to tap.
     Text first puts the promise and both CTAs in the first screen; the product
     shot follows immediately underneath. */
  .hero-media { margin-top: 34px; }
  .hero-shot { max-width: 420px; }
  .buy-box { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .ba-grid { grid-template-columns: 1fr; }
}

@media print {
  #navbar, .mobile-menu, .scroll-top, .lightbox, .cta-band { display: none !important; }
  body { color: #000; }
}
