/* ============================================================
   DARHIKA — Design System
   Palette: Licht (Light) · Verzadigd (Saturated) · Zilver (Silver)
            Chroom (Chrome) · Parelmoer (Pearlescent) · Donker-Lotus (Dark-Lotus)
   ============================================================ */

:root {
  /* Dark-Lotus core */
  --lotus-900: #201430;
  --lotus-800: #2b1e3a;
  --lotus-700: #3a2a4d;
  --lotus-600: #563a68;
  --lotus-500: #6d4a82;

  /* Saturated accents */
  --magenta: #964a8c;
  --magenta-bright: #b657a8;
  --teal: #248494;
  --teal-bright: #2ea6b8;

  /* Silver / Chrome */
  --silver-100: #eef1f5;
  --silver-200: #dfe3ea;
  --silver-300: #c4cad2;
  --silver-400: #9aa1ad;
  --chrome-hi: #e8ecf2;
  --chrome-lo: #78808c;

  /* Pearlescent lights */
  --pearl-lilac: #e2e0ec;
  --pearl-mint: #d6e6e8;
  --light: #f4f6f9;
  --white: #ffffff;

  /* Ink */
  --ink-900: #1b1524;
  --ink-700: #3d3548;
  --ink-500: #6a6478;
  --ink-300: #9b96a8;

  /* Semantic */
  --bg: var(--light);
  --surface: var(--white);
  --line: var(--silver-200);

  /* Gradients */
  --grad-lotus: linear-gradient(135deg, var(--lotus-900) 0%, var(--lotus-600) 100%);
  --grad-chrome: linear-gradient(180deg, var(--chrome-hi) 0%, var(--silver-300) 55%, var(--chrome-lo) 100%);
  --grad-pearl: linear-gradient(135deg, var(--pearl-lilac) 0%, var(--pearl-mint) 100%);
  --grad-accent: linear-gradient(120deg, var(--magenta) 0%, var(--teal) 100%);

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(32, 20, 48, .06);
  --sh-md: 0 12px 32px rgba(32, 20, 48, .10);
  --sh-lg: 0 28px 64px rgba(32, 20, 48, .16);
  --sh-lotus: 0 24px 60px rgba(58, 42, 77, .30);

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 42px;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype",
                  "Palatino", "Times New Roman", Georgia, serif;
  --font-body: "Segoe UI", "Helvetica Neue", "Inter", system-ui, -apple-system, Arial, sans-serif;

  /* Spacing rhythm */
  --gap: clamp(1rem, 2vw, 1.5rem);
  --pad-section: clamp(4rem, 8vw, 8rem);
  --wrap: 1220px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -.01em; }

/* ---------- Layout helpers ---------- */
.dh-wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.dh-section { padding-block: var(--pad-section); position: relative; }
.dh-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 1.1rem;
}
.dh-eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--grad-accent);
}
.dh-lede { color: var(--ink-500); font-size: 1.08rem; max-width: 60ch; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.dh-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 246, 249, .78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(196, 202, 210, .5);
  transition: box-shadow .3s ease;
}
.dh-header.is-scrolled { box-shadow: var(--sh-sm); }
.dh-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 76px;
}
.dh-brand { display: flex; align-items: center; gap: .7rem; }
.dh-brand__mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-lotus);
  display: grid; place-items: center;
  box-shadow: var(--sh-lotus), inset 0 1px 2px rgba(255,255,255,.25);
}
.dh-brand__mark svg { width: 22px; height: 22px; }
.dh-brand__name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: .04em; color: var(--lotus-800);
}
.dh-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.dh-menu a {
  font-size: .92rem; font-weight: 500; color: var(--ink-700);
  position: relative; padding: .3rem 0; transition: color .2s;
}
.dh-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--grad-accent); border-radius: 2px; transition: width .25s ease;
}
.dh-menu a:hover { color: var(--lotus-700); }
.dh-menu a:hover::after { width: 100%; }
.dh-nav__cta {
  padding: .7rem 1.4rem; border-radius: 999px; border: 0;
  background: var(--grad-lotus); color: var(--light); font-weight: 600; font-size: .9rem;
  box-shadow: var(--sh-lotus); transition: transform .2s ease, box-shadow .2s ease;
}
.dh-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(58,42,77,.4); }
.dh-burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--silver-300);
  border-radius: 12px; background: var(--white); position: relative;
}
.dh-burger span, .dh-burger span::before, .dh-burger span::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--lotus-700); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.dh-burger span { top: 50%; margin-top: -1px; }
.dh-burger span::before { top: -6px; }
.dh-burger span::after { top: 6px; }
.dh-burger.is-open span { background: transparent; }
.dh-burger.is-open span::before { transform: translate(-50%, 0) rotate(45deg); top: 0; }
.dh-burger.is-open span::after { transform: translate(-50%, 0) rotate(-45deg); top: 0; }

/* ============================================================
   1. HERO
   ============================================================ */
.dh-hero {
  position: relative; overflow: hidden;
  background: var(--grad-lotus); color: var(--light);
  isolation: isolate;
}
.dh-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .55;
}
.dh-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(32,20,48,.86) 0%, rgba(58,42,77,.55) 55%, rgba(150,74,140,.28) 100%);
}
.dh-hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.dh-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--pearl-mint); margin-bottom: 1.4rem;
}
.dh-hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--pearl-mint); }
.dh-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); color: var(--white);
  margin-bottom: 1.3rem; font-weight: 600;
}
.dh-hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--pearl-mint), var(--chrome-hi));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dh-hero p { color: rgba(244,246,249,.86); font-size: 1.12rem; max-width: 52ch; margin-bottom: 2rem; }
.dh-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.dh-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.8rem; border-radius: 999px; border: 0;
  font-weight: 600; font-size: 1rem; transition: transform .2s ease, box-shadow .2s ease;
}
.dh-btn--primary { background: var(--grad-chrome); color: var(--lotus-900); box-shadow: var(--sh-md); }
.dh-btn--primary:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.dh-btn--ghost {
  background: rgba(244,246,249,.08); color: var(--light);
  border: 1px solid rgba(223,227,234,.4);
}
.dh-btn--ghost:hover { background: rgba(244,246,249,.16); transform: translateY(-3px); }
.dh-hero__meta {
  margin-top: 2.4rem; display: flex; gap: 2.2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(223,227,234,.22); padding-top: 1.6rem;
}
.dh-hero__meta div strong {
  display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--chrome-hi);
}
.dh-hero__meta div span { font-size: .82rem; color: rgba(244,246,249,.7); letter-spacing: .04em; }

.dh-hero__stage { position: relative; display: grid; place-items: center; }
.dh-hero__glow {
  position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,230,232,.5) 0%, rgba(150,74,140,.18) 45%, transparent 70%);
  filter: blur(10px); z-index: 0;
}
.dh-hero__product {
  position: relative; z-index: 1; max-width: 400px; width: 78%;
  filter: drop-shadow(0 40px 60px rgba(20,12,32,.55));
  animation: dh-float 7s ease-in-out infinite;
}
.dh-price-badge {
  position: absolute; z-index: 2; right: 4%; top: 8%;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--grad-accent); color: var(--white);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--sh-lg), inset 0 2px 4px rgba(255,255,255,.3);
  transform: rotate(-8deg);
}
.dh-price-badge b { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; }
.dh-price-badge small { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
@keyframes dh-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ============================================================
   2. BENEFITS (healthy lifestyle)
   ============================================================ */
.dh-benefits { background: var(--surface); }
.dh-benefits__head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.dh-benefits__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--lotus-800); }
.dh-lifestyle {
  margin: 0 0 clamp(2rem, 5vw, 3rem); border-radius: var(--r-xl); overflow: hidden;
  position: relative; box-shadow: var(--sh-md); aspect-ratio: 21 / 7;
}
.dh-lifestyle img { width: 100%; height: 100%; object-fit: cover; }
.dh-lifestyle figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem clamp(1.4rem, 4vw, 2.6rem) 1.6rem; color: var(--white);
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  background: linear-gradient(0deg, rgba(32,20,48,.78), transparent);
}
.dh-benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
@media (max-width: 760px) { .dh-lifestyle { aspect-ratio: 4 / 3; } }
.dh-benefit-card {
  background: var(--light); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.6rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  position: relative; overflow: hidden;
}
.dh-benefit-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.dh-benefit-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.dh-benefit-card:hover::before { transform: scaleX(1); }
.dh-benefit-card__icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 1.2rem;
  background: var(--grad-pearl); display: grid; place-items: center;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.7);
}
.dh-benefit-card__icon svg { width: 26px; height: 26px; }
.dh-benefit-card h3 { font-size: 1.3rem; margin-bottom: .5rem; color: var(--lotus-800); }
.dh-benefit-card p { font-size: .95rem; color: var(--ink-500); margin: 0; }

/* ============================================================
   3. PRODUCT INFO (split)
   ============================================================ */
.dh-product { background: var(--grad-pearl); overflow: hidden; }
.dh-product__inner {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.dh-product__visual { position: relative; }
.dh-product__frame {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.6); aspect-ratio: 7 / 5;
}
.dh-product__frame img { width: 100%; height: 100%; object-fit: cover; }
.dh-product__chip {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 999px; padding: .8rem 1.6rem;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: .7rem;
  font-weight: 600; color: var(--lotus-800); white-space: nowrap;
}
.dh-product__chip svg { width: 20px; height: 20px; }
.dh-product__body h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--lotus-800); margin-bottom: 1.2rem; }
.dh-product__body p { color: var(--ink-700); margin-bottom: 1.6rem; }
.dh-spec-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .9rem; }
.dh-spec-list li { display: flex; gap: .9rem; align-items: flex-start; font-size: .98rem; color: var(--ink-700); }
.dh-spec-list li svg { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; }
.dh-spec-list li strong { color: var(--lotus-800); }

/* ============================================================
   4. INGREDIENTS
   ============================================================ */
.dh-ingredients { background: var(--surface); }
.dh-ingredients__head { text-align: center; max-width: 680px; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); }
.dh-ingredients__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--lotus-800); }
.dh-ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.dh-ingredient {
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem;
  background: linear-gradient(180deg, var(--white), var(--light));
  transition: box-shadow .3s ease, transform .3s ease;
}
.dh-ingredient:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.dh-ingredient__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.dh-ingredient__badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(46,166,184,.12); padding: .3rem .7rem; border-radius: 999px;
}
.dh-ingredient__dot { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-lotus); }
.dh-ingredient h3 { font-size: 1.25rem; color: var(--lotus-800); margin-bottom: .4rem; }
.dh-ingredient p { font-size: .92rem; color: var(--ink-500); margin: 0; }
.dh-ingredients__note {
  margin-top: 2.4rem; text-align: center; font-size: .86rem; color: var(--ink-300);
  max-width: 60ch; margin-inline: auto;
}

/* ============================================================
   5. HOW TO USE (timeline)
   ============================================================ */
.dh-usage { background: var(--grad-lotus); color: var(--light); overflow: hidden; position: relative; }
.dh-usage__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dh-usage__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.dh-usage__head p { color: rgba(244,246,249,.82); }
.dh-usage__eyebrow { color: var(--pearl-mint); }
.dh-steps { display: grid; gap: 1.2rem; }
.dh-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: flex-start;
  background: rgba(244,246,249,.06); border: 1px solid rgba(223,227,234,.16);
  border-radius: var(--r-md); padding: 1.4rem 1.6rem; transition: background .3s ease, transform .3s;
}
.dh-step:hover { background: rgba(244,246,249,.12); transform: translateX(6px); }
.dh-step__num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-chrome); color: var(--lotus-900);
}
.dh-step h3 { font-size: 1.2rem; color: var(--chrome-hi); margin-bottom: .3rem; }
.dh-step p { font-size: .94rem; color: rgba(244,246,249,.78); margin: 0; }

/* ============================================================
   6. FAQ
   ============================================================ */
.dh-faq { background: var(--surface); }
.dh-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.dh-faq__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--lotus-800); margin-bottom: 1rem; }
.dh-faq__head p { color: var(--ink-500); }
.dh-accordion { display: grid; gap: .9rem; }
.dh-ac-item { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--light); transition: box-shadow .3s; }
.dh-ac-item.is-open { box-shadow: var(--sh-sm); border-color: var(--silver-300); }
.dh-ac-q {
  width: 100%; text-align: left; border: 0; background: transparent;
  padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1.05rem; font-weight: 600; color: var(--lotus-800); font-family: var(--font-body);
}
.dh-ac-q__icon { flex: 0 0 auto; width: 24px; height: 24px; position: relative; transition: transform .3s ease; }
.dh-ac-q__icon::before, .dh-ac-q__icon::after {
  content: ""; position: absolute; background: var(--magenta); border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.dh-ac-q__icon::before { width: 14px; height: 2px; }
.dh-ac-q__icon::after { width: 2px; height: 14px; transition: transform .3s ease; }
.dh-ac-item.is-open .dh-ac-q__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.dh-ac-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.dh-ac-a__inner { padding: 0 1.5rem 1.4rem; color: var(--ink-500); font-size: .96rem; }

/* ============================================================
   7. ORDER
   ============================================================ */
.dh-order { background: var(--grad-pearl); position: relative; overflow: hidden; }
.dh-order__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dh-order__info h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--lotus-800); margin-bottom: 1.1rem; }
.dh-order__info p { color: var(--ink-700); margin-bottom: 1.8rem; }
.dh-order__price {
  display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.6rem;
}
.dh-order__price b { font-family: var(--font-display); font-size: 3rem; color: var(--lotus-800); }
.dh-order__price span { color: var(--ink-500); font-size: .95rem; }
.dh-trust-row { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.dh-trust-row div { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-700); font-weight: 500; }
.dh-trust-row svg { width: 20px; height: 20px; }

.dh-form-card {
  background: var(--white); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.7);
}
.dh-form-card h3 { font-size: 1.5rem; color: var(--lotus-800); margin-bottom: .4rem; }
.dh-form-card > p { color: var(--ink-500); font-size: .92rem; margin: 0 0 1.6rem; }
.dh-field { margin-bottom: 1.2rem; }
.dh-field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-700); margin-bottom: .5rem; }
.dh-field input {
  width: 100%; padding: .95rem 1.1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--silver-300); background: var(--light);
  font-family: inherit; font-size: 1rem; color: var(--ink-900); transition: border-color .2s, box-shadow .2s;
}
.dh-field input:focus {
  outline: none; border-color: var(--magenta); background: var(--white);
  box-shadow: 0 0 0 4px rgba(150,74,140,.14);
}
.dh-field input.is-invalid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.12); }
.dh-field__error { display: none; color: #c0392b; font-size: .8rem; margin-top: .4rem; }
.dh-field__error.is-shown { display: block; }
.dh-form-submit {
  width: 100%; padding: 1.05rem; border: 0; border-radius: var(--r-sm);
  background: var(--grad-lotus); color: var(--light); font-weight: 600; font-size: 1.05rem;
  box-shadow: var(--sh-lotus); transition: transform .2s ease, box-shadow .2s ease; margin-top: .4rem;
}
.dh-form-submit:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(58,42,77,.42); }
.dh-form-note { font-size: .78rem; color: var(--ink-300); text-align: center; margin-top: 1rem; }
.dh-form-note a { color: var(--magenta); text-decoration: underline; }

/* ============================================================
   8. FOOTER
   ============================================================ */
.dh-footer { background: var(--lotus-900); color: rgba(244,246,249,.75); }
.dh-footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.dh-footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; }
.dh-footer__brand .dh-brand__name { color: var(--white); }
.dh-footer p { font-size: .92rem; line-height: 1.7; margin: 0 0 .6rem; }
.dh-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.dh-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.dh-footer__links a { font-size: .92rem; transition: color .2s; }
.dh-footer__links a:hover { color: var(--pearl-mint); }
.dh-footer__contact { display: grid; gap: .6rem; font-size: .92rem; }
.dh-footer__contact a { transition: color .2s; }
.dh-footer__contact a:hover { color: var(--pearl-mint); }
.dh-footer__bottom {
  border-top: 1px solid rgba(223,227,234,.14); padding-block: 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(244,246,249,.55);
}
.dh-footer__bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.dh-footer__bottom nav a:hover { color: var(--pearl-mint); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.dh-cookie {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 140%);
  width: min(760px, 94%); z-index: 90;
  background: var(--white); border: 1px solid var(--silver-200); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 1.4rem 1.6rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1.2rem; align-items: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s;
  opacity: 0;
}
.dh-cookie.is-visible { transform: translate(-50%, 0); opacity: 1; }
.dh-cookie h4 { color: var(--lotus-800); font-size: 1.1rem; margin-bottom: .3rem; }
.dh-cookie p { font-size: .88rem; color: var(--ink-500); margin: 0; }
.dh-cookie p a { color: var(--magenta); text-decoration: underline; }
.dh-cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.dh-cookie__btn {
  padding: .7rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .86rem; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s;
}
.dh-cookie__btn:hover { transform: translateY(-2px); }
.dh-cookie__btn--accept { background: var(--grad-lotus); color: var(--light); box-shadow: var(--sh-lotus); }
.dh-cookie__btn--reject { background: var(--light); color: var(--ink-700); border-color: var(--silver-300); }
.dh-cookie__btn--learn { background: transparent; color: var(--magenta); text-decoration: underline; }

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.dh-page-hero {
  background: var(--grad-lotus); color: var(--light);
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
}
.dh-page-hero .dh-eyebrow { color: var(--pearl-mint); }
.dh-page-hero .dh-eyebrow::before { background: var(--pearl-mint); }
.dh-page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); margin-bottom: .8rem; }
.dh-page-hero p { color: rgba(244,246,249,.82); max-width: 60ch; }
.dh-legal { background: var(--surface); }
.dh-legal__wrap { width: min(860px, 92%); margin-inline: auto; padding-block: clamp(3rem, 6vw, 5rem); }
.dh-legal__wrap h2 {
  font-size: 1.6rem; color: var(--lotus-800); margin-top: 2.6rem; margin-bottom: .8rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--line);
}
.dh-legal__wrap h2:first-child { margin-top: 0; }
.dh-legal__wrap h3 { font-size: 1.2rem; color: var(--lotus-700); margin-top: 1.6rem; margin-bottom: .5rem; }
.dh-legal__wrap p { color: var(--ink-700); margin: 0 0 1rem; }
.dh-legal__wrap ul { color: var(--ink-700); margin: 0 0 1.2rem; padding-left: 1.3rem; display: grid; gap: .5rem; }
.dh-legal__wrap li { line-height: 1.6; }
.dh-legal__wrap a { color: var(--magenta); text-decoration: underline; }
.dh-legal__meta {
  background: var(--light); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.2rem 1.5rem; margin-bottom: 2rem; font-size: .9rem; color: var(--ink-500);
}
.dh-callout {
  background: var(--grad-pearl); border-radius: var(--r-md); padding: 1.4rem 1.6rem; margin: 1.6rem 0;
  border-left: 4px solid var(--magenta);
}
.dh-callout p { margin: 0; color: var(--lotus-800); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.dh-success {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--grad-lotus); color: var(--light); padding: 2rem; text-align: center; position: relative; overflow: hidden;
}
.dh-success::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,230,232,.28), transparent 70%); top: -180px; right: -160px;
}
.dh-success__card {
  position: relative; z-index: 1; background: rgba(244,246,249,.06);
  border: 1px solid rgba(223,227,234,.18); border-radius: var(--r-xl);
  padding: clamp(2.4rem, 6vw, 4rem); max-width: 620px; backdrop-filter: blur(6px);
}
.dh-success__check {
  width: 92px; height: 92px; margin: 0 auto 1.8rem; border-radius: 50%;
  background: var(--grad-chrome); display: grid; place-items: center; box-shadow: var(--sh-lg);
  animation: dh-pop .6s cubic-bezier(.22,1,.36,1);
}
.dh-success__check svg { width: 46px; height: 46px; }
@keyframes dh-pop { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.dh-success h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 1rem; }
.dh-success p { color: rgba(244,246,249,.85); margin-bottom: 1.4rem; }
.dh-success__steps { display: grid; gap: .8rem; text-align: left; margin: 1.8rem 0; }
.dh-success__steps div {
  display: flex; gap: .9rem; align-items: center; background: rgba(244,246,249,.05);
  border-radius: var(--r-sm); padding: .9rem 1.2rem; font-size: .92rem;
}
.dh-success__steps span {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--grad-accent);
  color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: .9rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.dh-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.dh-reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dh-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .dh-ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .dh-hero__inner { grid-template-columns: 1fr; }
  .dh-hero__stage { order: -1; margin-bottom: 1rem; }
  .dh-product__inner,
  .dh-usage__inner,
  .dh-faq__grid,
  .dh-order__inner { grid-template-columns: 1fr; }
  .dh-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .dh-menu, .dh-nav__cta { display: none; }
  .dh-burger { display: block; }
  .dh-menu.is-open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 1.4rem 5%;
    gap: 1.1rem; box-shadow: var(--sh-md); align-items: stretch;
  }
  .dh-menu.is-open a { padding: .5rem 0; }
  .dh-benefit-grid, .dh-ingredient-grid { grid-template-columns: 1fr; }
  .dh-footer__top { grid-template-columns: 1fr; }
  .dh-cookie { grid-template-columns: 1fr; }
  .dh-hero__meta { gap: 1.4rem; }
  .dh-price-badge { width: 78px; height: 78px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .dh-reveal { opacity: 1; transform: none; }
}
.dh-skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--lotus-800); color: var(--light); padding: .8rem 1.2rem; border-radius: 0 0 12px 0;
}
.dh-skip:focus { left: 0; }
