:root{
    --white:#ffffff;
    --sage-50:#f2f8f3;
    --sage-100:#e2f0e4;
    --forest-900:#0f3d27;
    --forest-700:#1c6b41;
    --mint-500:#3fae6f;
    --mint-300:#8fd6ab;
    --coral-500:#e2665c;
    --ink-900:#132019;
    --ink-600:#3f524a;
    --ink-400:#6d8177;
    --line:#d3e6d8;
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:10px;
    --shadow-1: 0 1px 2px rgba(15,61,39,.06);
    --shadow-2: 0 12px 30px -8px rgba(15,61,39,.18);
    --shadow-3: 0 30px 60px -20px rgba(15,61,39,.35);
    --font-display: "Fraunces", serif;
    --font-body: "Manrope", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:var(--font-body);
    color:var(--ink-900);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12.5px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--forest-700);
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:500;
  }
  .eyebrow::before{
    content:"";
    width:6px; height:6px; border-radius:50%;
    background:var(--mint-500);
    display:inline-block;
  }
  h1,h2,h3{
    font-family:var(--font-display);
    color:var(--forest-900);
    line-height:1.08;
    margin:0;
    font-weight:600;
  }
  p{color:var(--ink-600); line-height:1.65; margin:0;}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 28px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{
    background:linear-gradient(180deg,var(--mint-500),var(--forest-700));
    color:#fff;
    box-shadow:0 14px 28px -10px rgba(28,107,65,.55);
  }
  .btn-primary:hover{ box-shadow:0 18px 34px -8px rgba(28,107,65,.6); }
  .btn-ghost{
    background:#fff;
    color:var(--forest-900);
    border:1px solid var(--line);
  }

  /* ---------------- Header ---------------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 28px;
    max-width:1180px; margin:0 auto;
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    font-family:var(--font-display);
    font-weight:700; font-size:21px;
    color:var(--forest-900);
    text-decoration:none;
  }
  .logo svg{ width:32px; height:32px; }
  .nav-links{
    display:flex; align-items:center; gap:32px;
    list-style:none; margin:0; padding:0;
    font-weight:600; font-size:14.5px;
  }
  .nav-links a{ text-decoration:none; color:var(--ink-600); }
  .nav-links a:hover{ color:var(--forest-900); }
  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .nav-toggle{ display:none; }
  @media (max-width:880px){
    .nav-links{ display:none; }
    .nav-toggle{ display:block; background:none; border:none; cursor:pointer; }
  }

  /* ---------------- Hero ---------------- */
  .hero{
    padding:76px 0 60px;
    background:
      radial-gradient(1100px 500px at 78% -10%, var(--sage-100), transparent 60%),
      var(--white);
    overflow:hidden;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
  }
  .hero h1{
    font-size:clamp(34px,4.4vw,54px);
    margin:18px 0 20px;
    letter-spacing:-.01em;
  }
  .hero .lede{
    font-size:17.5px;
    max-width:520px;
    margin-bottom:30px;
  }
  .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
  .trust-row{
    display:flex; gap:22px; flex-wrap:wrap;
    padding-top:22px; border-top:1px solid var(--line);
  }
  .trust-item{
    display:flex; align-items:center; gap:8px;
    font-size:13px; font-weight:600; color:var(--ink-600);
  }
  .trust-item svg{ width:18px; height:18px; color:var(--forest-700); flex-shrink:0; }

  .hero-art{ position:relative; display:flex; justify-content:center; }
  .art-stage{
    position:relative; width:100%; max-width:420px; aspect-ratio:1/1.02;
    perspective:1200px;
  }
  .art-blob{
    position:absolute; inset:6%;
    background:linear-gradient(160deg,var(--sage-100),#fff 60%);
    border-radius:44% 56% 62% 38% / 46% 40% 60% 54%;
    box-shadow:var(--shadow-3);
  }
  .bottle-card{
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    transform:rotateY(-8deg) rotateX(4deg);
    transform-style:preserve-3d;
    transition:transform .5s ease;
  }
  .art-stage:hover .bottle-card{ transform:rotateY(-2deg) rotateX(1deg); }
  .bottle-card svg{ width:78%; filter:drop-shadow(0 26px 34px rgba(15,61,39,.28)); }
  .bottle-card img{ width:96%; }
  .floaty{ position:absolute; filter:drop-shadow(0 10px 14px rgba(15,61,39,.18)); animation:bob 6s ease-in-out infinite; }
  .floaty.leaf{ width:64px; top:6%; right:2%; animation-delay:.4s; }
  .floaty.berry{ width:58px; bottom:8%; left:-2%; animation-delay:1.2s; }
  .floaty.badge{
    width:auto; bottom:12%; right:-4%;
    background:#fff; border-radius:16px; padding:10px 14px;
    box-shadow:var(--shadow-2); display:flex; align-items:center; gap:8px;
    font-size:12.5px; font-weight:700; color:var(--forest-900);
    animation-delay:.8s;
  }
  .floaty.badge svg{ width:16px; height:16px; color:var(--mint-500); }
  @keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }
  @media (prefers-reduced-motion:reduce){ .floaty{ animation:none; } .bottle-card{ transition:none; } }

  @media (max-width:900px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-art{ order:-1; margin-bottom:8px; }
  }

  /* ---------------- Section shell ---------------- */
  section{ padding:76px 0; }
  .section-head{ max-width:640px; margin-bottom:44px; }
  .section-head h2{ font-size:clamp(28px,3.2vw,38px); margin-top:14px; }
  .section-head p{ margin-top:14px; font-size:16px; }
  .alt{ background:var(--sage-50); }

  /* ---------------- Benefits ---------------- */
  .benefit-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .benefit-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
    padding:26px 22px; box-shadow:var(--shadow-1);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .benefit-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-2); }
  .icon-tile{
    width:46px; height:46px; border-radius:13px;
    background:linear-gradient(160deg,var(--mint-300),var(--forest-700));
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px; box-shadow:var(--shadow-1);
  }
  .icon-tile svg{ width:24px; height:24px; color:#fff; }
  .benefit-card h3{ font-size:18px; margin-bottom:8px; }
  .benefit-card p{ font-size:14.5px; }
  @media (max-width:920px){ .benefit-grid{ grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .benefit-grid{ grid-template-columns:1fr;} }

  /* ---------------- How it works ---------------- */
  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; counter-reset:step; }
  .step{ position:relative; padding-left:2px; }
  .step .num{
    font-family:var(--font-display); font-size:44px; font-weight:600;
    color:var(--mint-300); line-height:1; margin-bottom:14px; display:block;
  }
  .step h3{ font-size:19px; margin-bottom:10px; }
  .step p{ font-size:14.5px; }
  @media (max-width:820px){ .steps{ grid-template-columns:1fr; gap:34px; } }

  /* ---------------- Ingredients ---------------- */
  .ing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .ing-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
    padding:24px; display:flex; gap:16px;
  }
  .ing-mark{
    width:40px; height:40px; border-radius:50%; flex-shrink:0;
    background:var(--sage-100); display:flex; align-items:center; justify-content:center;
  }
  .ing-mark svg{ width:20px; height:20px; color:var(--forest-700); }
  .ing-card h3{ font-size:16.5px; margin-bottom:6px; }
  .ing-card p{ font-size:14px; }
  .label-note{
    margin-top:22px; padding:16px 18px; border-radius:var(--radius-sm);
    background:var(--sage-100); font-size:13.5px; color:var(--ink-600);
    border-left:3px solid var(--forest-700);
  }
  @media (max-width:900px){ .ing-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:600px){ .ing-grid{ grid-template-columns:1fr; } }

  /* ---------------- Pricing ---------------- */
  .pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
  .price-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:30px 26px; display:flex; flex-direction:column; box-shadow:var(--shadow-1);
  }
  .price-card.featured{
    border-color:var(--forest-700); box-shadow:var(--shadow-3);
    transform:translateY(-10px);
    background:linear-gradient(180deg,#fff,var(--sage-50));
  }
  .price-tag{
    font-family:var(--font-mono); font-size:11.5px; letter-spacing:.08em;
    text-transform:uppercase; color:var(--forest-700); font-weight:600;
    background:var(--sage-100); display:inline-block; padding:5px 12px; border-radius:999px;
    margin-bottom:16px; width:fit-content;
  }
  .price-card h3{ font-size:20px; margin-bottom:4px; }
  .price-amount{ font-family:var(--font-display); font-size:38px; color:var(--forest-900); margin:14px 0 2px; }
  .price-per{ font-size:13px; color:var(--ink-400); margin-bottom:20px; }
  .price-list{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:10px; flex-grow:1; }
  .price-list li{ font-size:14px; color:var(--ink-600); display:flex; gap:8px; align-items:flex-start; }
  .price-list svg{ width:16px; height:16px; color:var(--mint-500); flex-shrink:0; margin-top:2px; }
  @media (max-width:900px){ .pricing-grid{ grid-template-columns:1fr; } .price-card.featured{ transform:none; } }

  .guarantee-strip{
    margin-top:36px; display:flex; align-items:center; gap:18px;
    background:var(--forest-900); color:#fff; border-radius:var(--radius-md);
    padding:24px 28px; flex-wrap:wrap;
  }
  .guarantee-strip svg{ width:38px; height:38px; color:var(--mint-300); flex-shrink:0; }
  .guarantee-strip h4{ font-family:var(--font-display); font-size:17px; margin:0 0 4px; color:#fff; }
  .guarantee-strip p{ color:#d7e9dd; font-size:13.5px; margin:0; }

  /* ---------------- FAQ ---------------- */
  .faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
  .faq-item{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm);
    overflow:hidden;
  }
  .faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    padding:18px 20px; display:flex; justify-content:space-between; align-items:center;
    font-family:var(--font-body); font-weight:700; font-size:15.5px; color:var(--forest-900);
  }
  .faq-q svg{ width:18px; height:18px; flex-shrink:0; transition:transform .2s ease; color:var(--forest-700); }
  .faq-item.open .faq-q svg{ transform:rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
  .faq-a p{ padding:0 20px 20px; font-size:14.5px; }
  .faq-item.open .faq-a{ max-height:280px; }

  /* ---------------- Final CTA ---------------- */
  .final-cta{
    background:linear-gradient(165deg,var(--forest-900),#0a2417);
    color:#fff; border-radius:var(--radius-lg);
    padding:56px 40px; text-align:center;
    margin:0 28px; max-width:1124px; margin-inline:auto;
  }
  .final-cta h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
  .final-cta p{ color:#c9ddd0; max-width:520px; margin:14px auto 26px; }

  /* ---------------- Footer ---------------- */
  footer{ padding:56px 0 30px; border-top:1px solid var(--line); }
  .foot-grid{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom:34px; }
  .foot-brand p{ max-width:280px; font-size:13.5px; margin-top:12px; }
  .foot-cols{ display:flex; gap:56px; flex-wrap:wrap; }
  .foot-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--forest-900); margin-bottom:12px; }
  .foot-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
  .foot-col a{ font-size:13.5px; color:var(--ink-600); text-decoration:none; }
  .foot-col a:hover{ color:var(--forest-900); }
  .disclaimer{
    font-size:12px; line-height:1.7; color:var(--ink-400);
    border-top:1px solid var(--line); padding-top:24px;
  }
  .disclaimer p{ font-size:12px; color:var(--ink-400); margin-bottom:8px; }

/* ---------------- Legal / prose pages ---------------- */
.page-hero{
  padding:56px 0 40px;
  background: radial-gradient(900px 400px at 85% -20%, var(--sage-100), transparent 60%), var(--white);
  border-bottom:1px solid var(--line);
}
.page-hero .crumbs{
  font-size:13px; color:var(--ink-400); margin-bottom:14px;
}
.page-hero .crumbs a{ color:var(--ink-400); text-decoration:none; }
.page-hero .crumbs a:hover{ color:var(--forest-700); }
.page-hero h1{ font-size:clamp(30px,4vw,44px); }
.page-hero .updated{ margin-top:14px; font-size:13.5px; color:var(--ink-400); }

.prose{ max-width:760px; margin:0 auto; padding:56px 0 20px; }
.prose h2{ font-size:22px; margin:36px 0 12px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size:17px; margin:22px 0 8px; color:var(--forest-900); }
.prose p{ font-size:15px; margin-bottom:14px; }
.prose ul{ margin:0 0 14px; padding-left:20px; }
.prose li{ font-size:15px; color:var(--ink-600); margin-bottom:8px; line-height:1.6; }
.prose a{ color:var(--forest-700); font-weight:600; }
.prose .callout{
  background:var(--sage-50); border-left:3px solid var(--forest-700);
  border-radius:var(--radius-sm); padding:16px 18px; font-size:14px; color:var(--ink-600);
  margin:20px 0;
}
.prose .contact-box{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px; margin-top:30px; font-size:14.5px;
}

/* ---------------- Approach comparison ---------------- */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.compare-col{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:26px 24px;
}
.compare-col h3{ font-size:17px; margin-bottom:14px; color:var(--ink-600); }
.compare-col.highlight{
  border-color:var(--forest-700); box-shadow:var(--shadow-2);
  background:linear-gradient(180deg,#fff,var(--sage-50));
}
.compare-col.highlight h3{ color:var(--forest-900); }
.compare-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.compare-list li{
  font-size:14px; color:var(--ink-600); line-height:1.5;
  padding-left:20px; position:relative;
}
.compare-list li::before{
  content:"–"; position:absolute; left:0; color:var(--ink-400);
}
.compare-col.highlight .compare-list li::before{ content:"✓"; color:var(--mint-500); font-weight:700; }
@media (max-width:760px){ .compare-grid{ grid-template-columns:1fr; } }

/* ---------------- Research note ---------------- */
.research-note{
  display:flex; gap:16px; align-items:flex-start;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px 24px; margin-top:30px;
}
.research-note svg{ width:26px; height:26px; color:var(--forest-700); flex-shrink:0; margin-top:2px; }
.research-note h4{ font-family:var(--font-display); font-size:16px; color:var(--forest-900); margin:0 0 6px; }
.research-note p{ font-size:13.5px; }

/* ---------------- Bonus callout on pricing ---------------- */
.bonus-tag{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:700; color:var(--forest-700);
  background:var(--sage-100); border-radius:999px; padding:5px 11px; margin-top:14px;
}

/* ---------------- Formula science section ---------------- */
.diff-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:8px; }
.diff-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px 20px;
}
.diff-card .num-tag{
  font-family:var(--font-mono); font-size:11px; color:var(--mint-500); font-weight:700;
  letter-spacing:.06em; margin-bottom:10px; display:block;
}
.diff-card h3{ font-size:15.5px; margin-bottom:8px; }
.diff-card p{ font-size:13.5px; }
@media (max-width:920px){ .diff-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .diff-grid{ grid-template-columns:1fr; } }

.sci-table-wrap{ overflow-x:auto; margin-top:36px; border:1px solid var(--line); border-radius:var(--radius-md); }
table.sci-table{ width:100%; border-collapse:collapse; font-size:14px; min-width:520px; }
table.sci-table th{
  text-align:left; background:var(--forest-900); color:#fff; font-weight:600;
  padding:13px 18px; font-size:12.5px; text-transform:uppercase; letter-spacing:.04em;
}
table.sci-table td{ padding:13px 18px; border-top:1px solid var(--line); color:var(--ink-600); }
table.sci-table tr:nth-child(even){ background:var(--sage-50); }
table.sci-table td em, table.sci-table td strong{ color:var(--forest-900); }

/* ---------------- Bundle art ---------------- */
.bundle-art{ display:flex; justify-content:center; margin:0 0 40px; }
.bundle-art svg{ max-width:520px; width:100%; filter:drop-shadow(0 22px 30px rgba(15,61,39,.16)); }

/* ---------------- Routine (illustrated, non-photo) section ---------------- */
.routine-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:center; }
.routine-art{ display:flex; justify-content:center; }
.routine-art svg{ width:100%; max-width:380px; filter:drop-shadow(0 18px 26px rgba(15,61,39,.12)); }
.routine-points{ list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:16px; }
.routine-points li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; color:var(--ink-600); }
.routine-points svg{ width:20px; height:20px; color:var(--forest-700); flex-shrink:0; margin-top:1px; }
@media (max-width:860px){ .routine-grid{ grid-template-columns:1fr; } .routine-art{ order:-1; } }

/* ---------------- Label preview (ingredients section) ---------------- */
.label-preview-wrap{ display:flex; justify-content:center; margin:30px 0 8px; }
.label-preview-wrap svg{ width:100%; max-width:260px; filter:drop-shadow(0 16px 22px rgba(15,61,39,.16)); }

/* ---------------- Standalone illustration <img> sizing ---------------- */

/* ===================================================================
   Uploaded image placements — responsive, performance-oriented
   =================================================================== */

/* Hero product shot (replaces SVG bottle) */
.bottle-card img{ width:100%; height:auto; display:block; filter:drop-shadow(0 26px 34px rgba(15,61,39,.28)); }
.bottle-card picture{ display:block; width:100%; }

/* Single bottle in ingredients section */
.label-preview-wrap{ display:flex; justify-content:center; margin:30px 0 10px; }
.label-preview-wrap picture{ display:block; width:100%; max-width:300px; }
.label-preview-wrap img{ width:100%; height:auto; display:block; border-radius:var(--radius-md); filter:drop-shadow(0 16px 24px rgba(15,61,39,.16)); }

/* Bundle image in pricing section */
.bundle-art{ display:flex; justify-content:center; margin:0 auto 40px; max-width:520px; }
.bundle-art picture{ display:block; width:100%; }
.bundle-art img{ width:100%; height:auto; display:block; filter:drop-shadow(0 20px 30px rgba(15,61,39,.16)); }

/* How It Works — two-column media + steps */
.science-layout{ display:grid; grid-template-columns:.85fr 1.15fr; gap:48px; align-items:center; }
.science-media picture{ display:block; width:100%; }
.science-media img{ width:100%; height:auto; display:block; border-radius:var(--radius-lg); box-shadow:var(--shadow-2); }
.steps-stacked{ display:flex; flex-direction:column; gap:26px; }
.steps-stacked.steps{ grid-template-columns:none; }
@media (max-width:860px){
  .science-layout{ grid-template-columns:1fr; gap:32px; }
  .science-media{ order:-1; }
}

/* Family lifestyle image in routine section */
.routine-art picture{ display:block; width:100%; }
.routine-art img{ width:100%; height:auto; display:block; border-radius:var(--radius-lg); box-shadow:var(--shadow-2); }

/* Pricing packages reference image */
.pricing-visual{ display:flex; justify-content:center; margin-top:40px; }
.pricing-visual picture{ display:block; width:100%; max-width:640px; }
.pricing-visual img{ width:100%; height:auto; display:block; border-radius:var(--radius-lg); box-shadow:var(--shadow-1); }
