/* ============================================================
   PURECORE® by Lemon Pharma — Landing Page
   Type: Figtree · Premium-minimal pharma · warm neutral canvas
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  /* canvas */
  --paper: #FBFAF6;
  --paper-2: #F2EEE5;
  --paper-3: #ECE7DB;
  --card: #FFFFFF;
  --ink: #19150F;
  --ink-2: #4A4339;
  --muted: #837A6C;
  --line: rgba(25, 21, 15, 0.10);
  --line-2: rgba(25, 21, 15, 0.16);

  /* signature accent */
  --accent: #b71b4f;
  --accent-deep: color-mix(in srgb, var(--accent) 72%, #15110a);

  /* product label colors */
  --c-d3: #F4C400;       /* vitamin d3 yellow */
  --c-d5: #B41850;       /* vitamin d3 5000 magenta */
  --c-green: #5B7A41;    /* d3+k2, k2 green */
  --c-a: #E08A1B;        /* vitamin a orange */
  --c-selen: #7E9AA6;    /* selen slate-blue */
  --c-zink: #B0A07E;     /* zink taupe */

  --maxw: 1240px;
  --r: 18px;
  --r-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(25,21,15,.05), 0 8px 24px rgba(25,21,15,.05);
  --shadow-md: 0 2px 6px rgba(25,21,15,.06), 0 24px 60px rgba(25,21,15,.09);
  --shadow-bottle: 0 40px 80px -28px rgba(25,21,15,.38);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 98px; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1, h2, h3 { line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; }

.display {
  font-size: clamp(44px, 6.6vw, 86px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h2 { font-size: clamp(32px, 4vw, 52px); }
.h3 { font-size: clamp(21px, 2.2vw, 27px); font-weight: 700; letter-spacing: -0.02em; }

.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-2); line-height: 1.55; }
.muted { color: var(--muted); }

.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-head { max-width: 760px; }
.section-head .h2 { margin: 16px 0 0; }
.section-head .lead { margin-top: 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .2s, color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(25,21,15,.5); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn .arw { transition: transform .25s; }
.btn:hover .arw { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,250,246,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.brand .sub {
  font-size: 40px; font-weight: 800; letter-spacing: -.01em; text-transform: none;
  line-height: 1; color: var(--ink); padding-left: 16px; margin-left: 2px;
  border-left: 1px solid var(--line-2); display: flex; align-items: center; height: 56px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15.5px; font-weight: 500; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 22px; font-size: 15px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 82px 0 auto 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 16px 32px 28px; display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 4px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy { max-width: 580px; }
.hero-copy .display { margin: 22px 0 0; }
.hero-copy .display em { font-style: normal; color: #b71b4f; }
.hero-copy .lead { margin-top: 26px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .n { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.hero-meta .l { font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* hero stage */
.stage { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; }
.stage .glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(94,126,140,.20), rgba(94,126,140,0) 68%);
  filter: blur(6px);
}
.stage .ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--line-2);
}
.stage .ring.r1 { width: 440px; height: 440px; }
.stage .ring.r2 { width: 580px; height: 580px; border-style: dashed; opacity: .5; }
.stage .bottle {
  position: absolute; filter: drop-shadow(var(--shadow-bottle));
  animation: float 6s ease-in-out infinite;
}
.stage .bottle.main { height: 500px; z-index: 3; }
.stage .bottle.left { height: 360px; left: 2%; bottom: 30px; z-index: 2; opacity: .96; animation-delay: -2s; }
.stage .bottle.right { height: 360px; right: 2%; bottom: 30px; z-index: 2; opacity: .96; animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.badge-float {
  position: absolute; z-index: 4; background: var(--card); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 600;
}
.badge-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-green); }
.badge-float.b-top { top: 54px; right: 4%; }
.badge-float.b-bot { bottom: 64px; left: 0; }
.badge-float small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 26px; display: flex; align-items: center; gap: 15px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; }
.trust-item svg { flex-shrink: 0; color: var(--accent-deep); }
.trust-item .t { font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.trust-item .s { font-size: 13px; color: var(--muted); }

/* ============================================================
   WHY DROPS
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 38px 34px; transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center; color: var(--accent-deep); margin-bottom: 24px;
}
.feature .h3 { margin-bottom: 12px; }
.feature p { color: var(--ink-2); font-size: 16.5px; }
.feature .num {
  position: absolute; top: 22px; right: 26px; font-size: 14px; font-weight: 700;
  color: var(--line-2); letter-spacing: .05em;
}

/* ============================================================
   PRODUCT RANGE
   ============================================================ */
.range { background: var(--paper-2); }
.range-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.filters { display: flex; gap: 8px; background: var(--card); padding: 6px; border-radius: 100px; border: 1px solid var(--line); }
.filters button {
  padding: 10px 20px; border-radius: 100px; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.filters button.active { background: var(--ink); color: #fff; }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px;
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column; position: relative; cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--cc, var(--accent)); transform: scaleX(0); transform-origin: left;
  transition: transform .4s; z-index: 2;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-img {
  position: relative; aspect-ratio: 1/1.04; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.card-img .tint {
  position: absolute; width: 200px; height: 200px; border-radius: 50%; bottom: 14%; opacity: .14;
  background: var(--cc, var(--accent)); filter: blur(28px); transition: opacity .35s, transform .35s;
}
.card:hover .card-img .tint { opacity: .28; transform: scale(1.08); }
.card-img img { height: 86%; width: auto; position: relative; z-index: 1; transition: transform .4s; }
.card:hover .card-img img { transform: translateY(-6px) scale(1.03); }
.card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 11.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px;
  background: color-mix(in srgb, var(--cc) 16%, #fff); color: color-mix(in srgb, var(--cc) 75%, #19150f);
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; border-top: 1px solid var(--line); }
.card-body h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.card-body .benefit { font-size: 14.5px; color: var(--muted); line-height: 1.45; min-height: 42px; }
.card-spec { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.dose {
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 8px;
  background: color-mix(in srgb, var(--cc) 18%, #fff); color: color-mix(in srgb, var(--cc) 78%, #19150f);
}
.drops { font-size: 13px; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.card-foot { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.card-foot .more { font-size: 14.5px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.card-foot .more .arw { transition: transform .25s; }
.card:hover .card-foot .more .arw { transform: translateX(4px); }
.card-zutaten {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}
.card-zutaten .cz-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.card-zutaten p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.card-buy {
  display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 16px;
  padding: 13px 18px; border-radius: 100px; font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  background: var(--ink); color: #fff;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.card-buy svg { transition: transform .25s; }
.card-buy:hover { background: var(--cc, var(--accent)); color: color-mix(in srgb, var(--cc) 24%, #19150f); transform: translateY(-2px); box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--cc) 60%, transparent); }
.card-buy:hover svg { transform: translateX(2px) scale(1.05); }

/* ============================================================
   QUALITY
   ============================================================ */
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.quality-copy .h2 { margin: 16px 0 22px; }
.quality-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.quality-list li { display: flex; gap: 15px; align-items: flex-start; }
.quality-list .chk {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 1px;
}
.quality-list .qt { font-weight: 700; font-size: 17px; }
.quality-list .qd { font-size: 15px; color: var(--muted); }
.quality-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.quality-stats .n { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.quality-stats .l { font-size: 13.5px; color: var(--muted); }

.quality-visual { position: relative; }
.ph {
  border-radius: var(--r); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; min-height: 480px;
  border: 1px solid var(--line);
}
.ph img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.quality-visual .badge-float { position: absolute; bottom: 24px; left: -22px; }

/* ============================================================
   USAGE
   ============================================================ */
.usage { background: var(--paper-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .sn {
  font-size: 15px; font-weight: 800; color: var(--accent-deep); letter-spacing: .04em;
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.step .sn::before { content: ''; width: 38px; height: 1.5px; background: var(--line-2); }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left; font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--ink);
}
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ''; position: absolute; background: var(--accent-deep); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .pm::before { width: 15px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 15px; transition: transform .3s; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 16.5px; line-height: 1.6; max-width: 620px; }

/* ============================================================
   BEDARFSFINDER
   ============================================================ */
.finder { background: var(--paper); }
.finder-card {
  margin-top: 52px; background: var(--card); border: 3px solid #FFED00;
  border-radius: 28px; padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.finder-needs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px;
}
.need-chip {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 18px; border-radius: 16px; background: var(--paper);
  border: 1.5px solid var(--line); position: relative; overflow: hidden;
  transition: border-color .22s, background .22s, transform .22s, box-shadow .22s;
}
.need-chip:hover { transform: translateY(-2px); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.need-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--paper-3);
  display: flex; align-items: center; justify-content: center; color: var(--accent-deep);
  transition: background .22s, color .22s;
}
.need-ic svg { width: 24px; height: 24px; }
.need-tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.need-label { font-weight: 700; font-size: 16px; letter-spacing: -.01em; color: var(--ink); }
.need-hint { font-size: 12.5px; color: var(--muted); }
.need-check {
  position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.5); transition: opacity .22s, transform .22s;
}
.need-check svg { width: 13px; height: 13px; }
.need-chip.on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff); }
.need-chip.on .need-ic { background: var(--accent); color: #fff; }
.need-chip.on .need-check { opacity: 1; transform: scale(1); }

.finder-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
}
.finder-count { font-size: 15px; font-weight: 600; color: var(--muted); }
.finder-bar .btn:disabled { opacity: .4; pointer-events: none; }

/* result */
.finder-result { position: relative; }
.finder-rec {
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(20px, 4vw, 48px); align-items: center;
  background: color-mix(in srgb, var(--cc) 8%, #fff); border: 1px solid color-mix(in srgb, var(--cc) 24%, transparent);
  border-radius: 22px; padding: clamp(24px, 3vw, 40px); border-top: 5px solid var(--cc);
}
.finder-rec-media { position: relative; height: 280px; display: flex; align-items: center; justify-content: center; }
.finder-rec-media img { height: 100%; width: auto; filter: drop-shadow(0 26px 44px rgba(20,17,12,.3)); position: relative; z-index: 1; }
.finder-rec-glow { position: absolute; width: 230px; height: 230px; border-radius: 50%; background: var(--cc); opacity: .22; filter: blur(38px); }
.finder-rec-k { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: color-mix(in srgb, var(--cc) 60%, #19150f); }
.finder-rec-name { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.03em; margin: 10px 0 8px; line-height: 1; }
.finder-rec-benefit { font-size: 18px; color: var(--ink-2); font-weight: 500; }
.finder-rec-matches { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.finder-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600;
  padding: 7px 14px 7px 11px; border-radius: 100px; background: #fff;
  border: 1px solid color-mix(in srgb, var(--cc) 28%, transparent); color: var(--ink);
}
.finder-tag svg { width: 13px; height: 13px; color: var(--cc); }
.finder-rec-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.finder-rec-spec { font-size: 14px; font-weight: 700; color: color-mix(in srgb, var(--cc) 60%, #19150f); }

.finder-alt {
  display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; margin-top: 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.finder-alt:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--cc) 40%, transparent); box-shadow: var(--shadow-sm); }
.finder-alt img { height: 56px; width: auto; flex-shrink: 0; }
.finder-alt-tx { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.finder-alt-k { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.finder-alt-n { font-size: 17px; font-weight: 700; color: var(--ink); }
.finder-alt-arw { color: var(--cc); font-size: 20px; font-weight: 700; transition: transform .2s; }
.finder-alt:hover .finder-alt-arw { transform: translateX(4px); }

.finder-restart {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 14.5px; font-weight: 600;
  color: var(--muted); transition: color .2s;
}
.finder-restart:hover { color: var(--ink); }
.finder-restart svg { transition: transform .4s; }
.finder-restart:hover svg { transform: rotate(-90deg); }

@media (max-width: 680px) {
  .finder-rec { grid-template-columns: 1fr; text-align: center; }
  .finder-rec-media { height: 200px; }
  .finder-rec-matches, .finder-rec-actions { justify-content: center; }
  .finder-bar { flex-direction: column; align-items: stretch; }
  .finder-bar .btn { justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 104px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 280px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; padding: 7px 0; font-size: 15.5px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center;
}
.footer-bottom .cr { font-size: 14px; color: var(--muted); }
.footer-disc { font-size: 12.5px; color: var(--muted); line-height: 1.5; max-width: 900px; margin-top: 22px; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   PRODUCT DETAIL MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 17, 12, 0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 28px;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card); border-radius: 24px; width: 100%; max-width: 1000px;
  max-height: 92vh; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(20,17,12,.5);
  transform: translateY(24px) scale(.98); transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.modal-overlay.open .modal { transform: none; }

.modal-close {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.7);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; backdrop-filter: blur(4px);
}
.modal-close:hover { background: #fff; transform: rotate(90deg); }

/* header band */
.m-head {
  position: relative; display: grid; grid-template-columns: 1fr 280px; gap: 24px;
  padding: 44px 48px 40px; align-items: center;
  background: color-mix(in srgb, var(--cc) 12%, #fff);
  border-top: 6px solid var(--cc); overflow: hidden;
}
.m-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--cc) 60%, #19150f);
}
.m-title { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; letter-spacing: -.03em; margin: 12px 0 0; line-height: .98; }
.m-title .m-sub { font-weight: 600; color: var(--muted); font-size: .62em; letter-spacing: -.01em; }
.m-benefit { font-size: 18px; color: var(--ink-2); margin-top: 12px; font-weight: 500; }
.m-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.m-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px; background: rgba(255,255,255,.7); color: var(--ink-2);
  border: 1px solid color-mix(in srgb, var(--cc) 30%, transparent);
}
.m-chip-solid { background: var(--cc); color: color-mix(in srgb, var(--cc) 25%, #19150f); font-weight: 700; border: none; }
.m-head-img { position: relative; height: 280px; display: flex; align-items: center; justify-content: center; }
.m-head-img img { height: 100%; width: auto; filter: drop-shadow(0 24px 40px rgba(20,17,12,.28)); position: relative; z-index: 1; }
.m-glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: var(--cc); opacity: .2; filter: blur(36px); }

/* scroll body */
.modal-scroll { overflow-y: auto; padding: 38px 48px 40px; }

.m-claim {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper-2); border-left: 4px solid var(--cc); border-radius: 14px;
  padding: 24px 28px; margin-bottom: 36px;
}
.m-claim-mark { font-size: 38px; line-height: .8; font-weight: 800; color: var(--cc); }
.m-claim p { font-size: clamp(18px, 1.9vw, 22px); font-weight: 600; letter-spacing: -.01em; line-height: 1.4; color: var(--ink); }

.m-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.m-block { margin-bottom: 30px; }
.m-block:last-child { margin-bottom: 0; }
.m-h3 { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.m-text { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.m-text-sm { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* nutrition table */
.nt { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.nt th {
  background: color-mix(in srgb, var(--cc) 20%, #fff); text-align: left; font-size: 12.5px; font-weight: 700;
  padding: 12px 14px; color: color-mix(in srgb, var(--cc) 70%, #19150f); vertical-align: bottom; line-height: 1.25;
}
.nt th:nth-child(2), .nt td:nth-child(2) { text-align: center; }
.nt th:last-child, .nt td:last-child { text-align: right; }
.nt td { padding: 13px 14px; font-size: 15px; border-top: 1px solid var(--line); }
.nt .nt-name { font-weight: 700; color: var(--ink); }
.nt .nt-amt { color: var(--ink-2); }
.nt .nt-nrv { font-weight: 700; color: var(--ink); }
.m-fine { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.45; }

.m-warn {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 16px;
  background: color-mix(in srgb, var(--c-a) 12%, #fff); border: 1px solid color-mix(in srgb, var(--c-a) 30%, transparent);
  border-radius: 12px; padding: 14px 16px;
}
.m-warn svg { color: var(--c-a); flex-shrink: 0; margin-top: 2px; }
.m-warn p { font-size: 13.5px; color: color-mix(in srgb, var(--c-a) 55%, #19150f); line-height: 1.5; font-weight: 500; }

.m-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 38px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.m-meta-item { background: var(--paper); padding: 16px 18px; display: flex; flex-direction: column; gap: 5px; }
.m-meta-item .ml { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.m-meta-item .mv { font-size: 15px; font-weight: 700; color: var(--ink); }
.m-meta-item .mv-badge { color: var(--accent-deep); }

.m-maker {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); line-height: 1.6;
}
.m-maker strong { color: var(--ink-2); }
.m-back { flex-shrink: 0; }

@media (max-width: 760px) {
  .modal-overlay { padding: 0; }
  .modal { max-width: 100%; max-height: 100vh; height: 100%; border-radius: 0; }
  .m-head { grid-template-columns: 1fr; padding: 56px 24px 28px; gap: 8px; text-align: left; }
  .m-head-img { height: 200px; order: -1; margin-bottom: 8px; }
  .modal-scroll { padding: 28px 24px 36px; }
  .m-cols { grid-template-columns: 1fr; gap: 0; }
  .m-meta { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-hero { padding: 150px 0 0; }
.legal-hero .back {
  display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600;
  color: var(--muted); margin-bottom: 28px; transition: color .2s, gap .2s;
}
.legal-hero .back:hover { color: var(--ink); gap: 12px; }
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -.035em; }
.legal-hero .lead { margin-top: 18px; max-width: 620px; }

.legal-body { padding: 56px 0 clamp(72px, 9vw, 120px); }
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.legal-toc { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 2px; }
.legal-toc a { font-size: 15px; font-weight: 500; color: var(--muted); padding: 9px 14px; border-radius: 10px; transition: background .2s, color .2s; }
.legal-toc a:hover { background: var(--paper-2); color: var(--ink); }
.legal-content { max-width: 760px; }
.legal-block { padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 20px; }
.legal-block h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin: 26px 0 10px; }
.legal-block p { font-size: 16.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-block a:hover { color: var(--ink); }
.legal-block ul, .legal-block ol { margin: 4px 0 14px; padding-left: 22px; }
.legal-block li { font-size: 16.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 8px; }
.legal-note {
  display: flex; gap: 13px; align-items: flex-start; background: color-mix(in srgb, var(--c-d3) 14%, #fff);
  border: 1px solid color-mix(in srgb, var(--c-d3) 34%, transparent); border-radius: 14px; padding: 18px 22px; margin-bottom: 36px;
}
.legal-note svg { color: color-mix(in srgb, var(--c-d3) 52%, #19150f); flex-shrink: 0; margin-top: 1px; }
.legal-note p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.wf-box {
  background: var(--paper-2); border: 1px dashed var(--line-2); border-radius: 14px; padding: 26px 28px; margin-top: 8px;
}
.wf-box .wf-line { color: var(--muted); font-size: 15px; line-height: 2.2; }

.legal-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 34px; box-shadow: var(--shadow-sm);
}
.legal-dl { display: grid; grid-template-columns: 168px 1fr; gap: 14px 24px; }
.legal-dl dt { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding-top: 2px; }
.legal-dl dd { font-size: 16.5px; color: var(--ink); line-height: 1.5; font-weight: 500; }
.legal-name { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: 4px; }

.bio-badge {
  display: inline-flex; align-items: center; gap: 14px; background: color-mix(in srgb, var(--c-green) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--c-green) 28%, transparent); border-radius: 14px; padding: 16px 22px; margin-top: 6px;
}
.bio-badge .leaf { width: 42px; height: 42px; border-radius: 50%; background: var(--c-green); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.bio-badge .bt { font-weight: 700; font-size: 16px; color: color-mix(in srgb, var(--c-green) 55%, #19150f); }
.bio-badge .bs { font-size: 14px; color: var(--ink-2); }
.bio-badge .bs strong { font-weight: 700; letter-spacing: .02em; }

.credits { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

@media (max-width: 880px) {
  .legal-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dt { margin-top: 12px; }
  .legal-dl dd { margin-bottom: 4px; }
}

/* ============================================================
   TWEAK HOOKS
   ============================================================ */
body.hero-plain .stage .ring,
body.hero-plain .stage .glow { display: none; }
body.cards-neutral .card { --cc: var(--accent) !important; }
body.cards-neutral .card-tag { background: var(--paper-2); color: var(--ink-2); }

#tweaks-root { position: fixed; z-index: 2147483000; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .stage { height: 460px; order: -1; }
  .stage .bottle.main { height: 400px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(odd) { border-left: none; }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: flex; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  .quality-stats { gap: 26px; }
}
