:root{
    --navy-950:#08172d;
    --navy-900:#0c1f3d;
    --navy-800:#123058;
    --navy-700:#1c4176;
    --navy-600:#2a5495;
    --gold-600:#a9822f;
    --gold-500:#c9a24b;
    --gold-300:#e8cf8f;
    --gold-100:#f6ecd2;
    --cream-50:#f9f5ea;
    --cream-100:#f1ead6;
    --ink-900:#141b26;
    --ink-700:#33404f;
    --slate-500:#5c6b80;
    --white:#ffffff;
    --shadow-lg: 0 30px 60px -20px rgba(8,23,45,0.35);
    --shadow-sm: 0 10px 24px -12px rgba(8,23,45,0.25);
    --radius-lg: 22px;
    --radius-md: 14px;
    --maxw: 1180px;
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }

  body{
    margin:0;
    font-family:'Manrope',system-ui,-apple-system,sans-serif;
    color:var(--ink-900);
    background:var(--cream-50);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3,h4{
    font-family:'Fraunces',Georgia,serif;
    margin:0;
    line-height:1.08;
    font-weight:600;
    letter-spacing:-0.01em;
  }
  p{ margin:0; }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  button{ font-family:inherit; cursor:pointer; }

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

  /* Skip link */
  .skip-link{
    position:absolute; left:-9999px; top:0; background:var(--gold-500); color:var(--navy-950);
    padding:12px 20px; z-index:999; border-radius:0 0 10px 0; font-weight:700;
  }
  .skip-link:focus{ left:0; }

  :focus-visible{ outline:3px solid var(--gold-500); outline-offset:3px; border-radius:4px; }

  /* Chevron motif — signature element pulled from the product label */
  .chevrons{ display:flex; gap:8px; align-items:center; }
  .chevrons span{
    display:block; width:11px; height:22px;
    border-right:3px solid var(--gold-500);
    transform:skewX(-18deg);
  }
  .chevrons span:nth-child(2){ border-color:var(--gold-300); }
  .chevrons span:nth-child(3){ border-color:var(--gold-600); opacity:.7; }

  .divider-chevron{
    width:100%; height:34px; display:flex; align-items:center; justify-content:center; gap:14px;
  }
  .divider-chevron span{
    width:16px; height:16px; border-right:2.5px solid var(--gold-500); border-top:2.5px solid var(--gold-500);
    transform:rotate(135deg);
  }

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    font-weight:700; font-size:16px; letter-spacing:.01em;
    padding:17px 34px; border-radius:100px; border:none;
    transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    white-space:nowrap;
  }
  .btn-gold{
    background:linear-gradient(180deg,var(--gold-300),var(--gold-600));
    color:var(--navy-950);
    box-shadow:0 14px 30px -10px rgba(201,162,75,.55);
  }
  .btn-gold:hover{ transform:translateY(-3px); box-shadow:0 20px 38px -10px rgba(201,162,75,.65); }
  .btn-outline{
    background:transparent; color:var(--gold-300); border:1.5px solid rgba(232,207,143,.5);
  }
  .btn-outline:hover{ background:rgba(232,207,143,.08); transform:translateY(-3px); }
  .btn-block{ width:100%; }

  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
    color:var(--gold-600);
  }
  section .eyebrow{ margin-bottom:14px; }
  .on-dark .eyebrow,
  .eyebrow.on-dark{ color:var(--gold-300); text-shadow:0 1px 12px rgba(0,0,0,.25); }

  /* Reveal animation */
  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
  .reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
  .reveal-stagger.in > *:nth-child(2){ transition-delay:.14s; }
  .reveal-stagger.in > *:nth-child(3){ transition-delay:.23s; }
  .reveal-stagger.in > *:nth-child(4){ transition-delay:.32s; }
  .reveal-stagger.in > *:nth-child(5){ transition-delay:.41s; }
  .reveal-stagger.in > *:nth-child(6){ transition-delay:.5s; }

  /* ===== HEADER ===== */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(8,23,45,.86);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(232,207,143,.14);
  }
  .nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:var(--maxw); margin:0 auto; }
  .logo{ display:flex; align-items:center; gap:10px; font-family:'Fraunces',serif; font-size:23px; font-weight:700; color:var(--white); }
  .logo .dot{ width:8px; height:8px; border-radius:50%; background:var(--gold-500); }
  .nav-links{ display:flex; gap:34px; align-items:center; }
  .nav-links a{ color:var(--cream-100); font-size:14.5px; font-weight:600; opacity:.85; transition:opacity .2s, color .2s; }
  .nav-links a:hover{ opacity:1; color:var(--gold-300); }
  .nav-cta{ display:flex; align-items:center; }
  .nav .btn{ padding:12px 24px; font-size:14.5px; }
  .nav-toggle{ display:none; background:none; border:none; color:var(--white); }

  @media (max-width:900px){
    .nav-links{ display:none; }
    .nav-toggle{ display:block; }
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    background:
      radial-gradient(1100px 620px at 82% -10%, rgba(42,84,149,.55), transparent 60%),
      radial-gradient(900px 500px at 10% 110%, rgba(201,162,75,.18), transparent 55%),
      linear-gradient(160deg,var(--navy-950), var(--navy-900) 55%, var(--navy-800));
    color:var(--white);
    overflow:hidden;
    padding:76px 0 90px;
  }
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background-image:
      repeating-linear-gradient(115deg, transparent 0 120px, rgba(232,207,143,.05) 120px 122px, transparent 122px 240px);
    pointer-events:none;
  }
  .hero-grid{
    position:relative; z-index:1;
    display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
  }
  .hero-copy h1{
    font-size:clamp(2.4rem, 4.6vw, 3.6rem);
    color:var(--white);
    margin-bottom:22px;
  }
  .hero-copy h1 em{ font-style:normal; color:var(--gold-300); }
  .hero-copy p.lead{
    font-size:18px; line-height:1.65; color:var(--cream-100); opacity:.88; max-width:520px; margin-bottom:32px;
  }
  .hero-cta-row{ display:flex; flex-wrap:wrap; gap:16px; align-items:center; margin-bottom:30px; }
  .hero-sub-note{ font-size:13px; color:var(--cream-100); opacity:.65; }

  .hero-trust{ display:flex; flex-wrap:wrap; gap:26px; margin-top:8px; }
  .hero-trust div{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--cream-100); opacity:.85; font-weight:600; }
  .hero-trust svg{ flex-shrink:0; color:var(--gold-300); }

  .hero-art{ position:relative; display:flex; justify-content:center; }
  .hero-art .glow{
    position:absolute; width:420px; height:420px; border-radius:50%;
    background:radial-gradient(circle, rgba(201,162,75,.35), transparent 70%);
    filter:blur(10px); z-index:0;
  }
  .hero-art img{
    position:relative; z-index:1; width:min(100%,380px); height:auto; aspect-ratio:771/941; object-fit:contain;
    filter:drop-shadow(0 40px 60px rgba(0,0,0,.45));
    animation:float 6s ease-in-out infinite;
  }
  @keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
  @media (prefers-reduced-motion: reduce){ .hero-art img{ animation:none; } }

  .badge-pill{
    position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(232,207,143,.35);
    backdrop-filter:blur(8px); border-radius:100px; padding:9px 16px; font-size:12.5px; font-weight:700;
    color:var(--gold-300); display:flex; align-items:center; gap:8px; z-index:2;
  }
  .badge-pill.b1{ top:6%; left:-4%; }
  .badge-pill.b2{ bottom:10%; right:-6%; }
  @media (max-width:640px){ .badge-pill{ display:none; } }

  @media (max-width:960px){
    .hero-grid{ grid-template-columns:1fr; text-align:center; gap:44px; }
    .hero-copy p.lead{ margin-left:auto; margin-right:auto; }
    .hero-cta-row{ justify-content:center; }
    .hero-trust{ justify-content:center; }
  }

  /* ===== SECTION SCAFFOLD ===== */
  section{ padding:96px 0; }
  .section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
  .section-head h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); margin-bottom:16px; color:var(--navy-950); }
  .section-head p{ font-size:17px; line-height:1.65; color:var(--slate-500); }
  .section-head.on-dark h2{ color:var(--white); }
  .section-head.on-dark p{ color:var(--cream-100); opacity:.94; }

  /* ===== BENEFITS ===== */
  .benefits{ background:var(--cream-50); }
  .benefit-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .benefit-card{
    background:var(--white); border-radius:var(--radius-lg); padding:34px 28px;
    box-shadow:var(--shadow-sm); border:1px solid rgba(20,27,38,.05);
    transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .benefit-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
  .benefit-icon{
    width:54px; height:54px; border-radius:14px;
    background:linear-gradient(150deg,var(--navy-800),var(--navy-950));
    display:flex; align-items:center; justify-content:center; margin-bottom:20px;
    color:var(--gold-300);
  }
  .benefit-card h3{ font-size:19px; margin-bottom:10px; color:var(--navy-950); }
  .benefit-card p{ font-size:14.5px; line-height:1.6; color:var(--slate-500); }

  @media (max-width:900px){ .benefit-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .benefit-grid{ grid-template-columns:1fr; } }

  /* ===== HOW IT WORKS ===== */
  .how{
    background:linear-gradient(180deg,var(--navy-950),var(--navy-900));
    color:var(--white);
    position:relative;
  }
  .how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; position:relative; }
  .how-grid::before{
    content:""; position:absolute; top:40px; left:16%; right:16%; height:1px;
    background:repeating-linear-gradient(90deg, rgba(232,207,143,.4) 0 10px, transparent 10px 20px);
  }
  @media (max-width:900px){ .how-grid::before{ display:none; } }
  .how-step{ text-align:center; padding:0 12px; }
  .how-num{
    width:80px; height:80px; margin:0 auto 22px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%, var(--navy-600), var(--navy-950));
    border:1.5px solid rgba(232,207,143,.55);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces',serif; font-size:26px; font-weight:600; color:var(--gold-300); position:relative; z-index:1;
  }
  .how-step h3{ color:var(--white); font-size:19px; margin-bottom:12px; }
  .how-step p{ color:var(--cream-100); opacity:.94; font-size:14.5px; line-height:1.65; max-width:290px; margin:0 auto; }
  @media (max-width:900px){ .how-grid{ grid-template-columns:1fr; gap:48px; } }

  /* ===== INGREDIENTS ===== */
  .ingredients{ background:var(--cream-100); }
  .ing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .ing-card{
    background:var(--white); border-radius:var(--radius-md); overflow:hidden;
    border:1px solid rgba(20,27,38,.06); box-shadow:var(--shadow-sm);
    transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .ing-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
  .ing-top{
    height:6px; background:linear-gradient(90deg,var(--gold-500),var(--gold-300));
  }
  .ing-body{ padding:26px 26px 28px; }
  .ing-num{ font-family:'Fraunces',serif; font-size:13px; color:var(--gold-600); font-weight:700; letter-spacing:.06em; margin-bottom:8px; display:block; }
  .ing-card h3{ font-size:19px; color:var(--navy-950); margin-bottom:10px; }
  .ing-card p{ font-size:14.5px; line-height:1.65; color:var(--slate-500); }

  @media (max-width:900px){ .ing-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .ing-grid{ grid-template-columns:1fr; } }

  /* ===== WHY CHOOSE ===== */
  .why{ background:var(--cream-50); }
  .why-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:60px; align-items:center; }
  .why-art{ position:relative; display:flex; justify-content:center; padding:20px; }
  .why-art::before{
    content:"";
    position:absolute; left:50%; top:52%; transform:translate(-50%,-50%);
    width:80%; height:80%; border-radius:50%;
    background:radial-gradient(circle, rgba(201,162,75,.22), transparent 70%);
    z-index:0;
  }
  .why-art img{
    position:relative; z-index:1; width:min(100%,380px); height:auto; aspect-ratio:771/941; object-fit:contain;
    filter:drop-shadow(0 30px 40px rgba(20,27,38,.22));
  }
  .why-art .ring{
    position:absolute; inset:8px; border:1.5px dashed rgba(201,162,75,.45); border-radius:50%;
    z-index:0;
  }
  .why-list{ display:flex; flex-direction:column; gap:22px; }
  .why-item{ display:flex; gap:18px; align-items:flex-start; }
  .why-check{
    flex-shrink:0; width:36px; height:36px; border-radius:10px; background:var(--navy-950); color:var(--gold-300);
    display:flex; align-items:center; justify-content:center; margin-top:2px;
  }
  .why-item h3{ font-size:17.5px; color:var(--navy-950); margin-bottom:6px; }
  .why-item p{ font-size:14.5px; line-height:1.6; color:var(--slate-500); }

  @media (max-width:900px){ .why-grid{ grid-template-columns:1fr; gap:44px; } }

  /* ===== TESTIMONIALS ===== */
  .testi{ background:linear-gradient(180deg,var(--navy-900),var(--navy-950)); color:var(--white); }
  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .testi-card{
    background:rgba(255,255,255,.045); border:1px solid rgba(232,207,143,.18);
    border-radius:var(--radius-lg); padding:30px 26px; backdrop-filter:blur(6px);
    transition:transform .3s var(--ease), background .3s var(--ease);
  }
  .testi-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,.07); }
  .stars{ color:var(--gold-300); font-size:15px; letter-spacing:2px; margin-bottom:16px; }
  .testi-card p.quote{ font-size:15px; line-height:1.7; color:var(--cream-100); opacity:.92; margin-bottom:22px; }
  .testi-person{ display:flex; align-items:center; gap:12px; }
  .testi-avatar{
    width:42px; height:42px; border-radius:50%; background:linear-gradient(150deg,var(--gold-300),var(--gold-600));
    display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--navy-950); font-size:15px; font-family:'Fraunces',serif;
  }
  .testi-person .name{ font-weight:700; font-size:14px; color:var(--white); }
  .testi-person .loc{ font-size:12.5px; color:var(--cream-100); opacity:.65; }

  @media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

  /* ===== FAQ ===== */
  .faq{ background:var(--cream-50); }
  .faq-list{ max-width:780px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
  .faq-item{
    background:var(--white); border:1px solid rgba(20,27,38,.07); border-radius:14px; overflow:hidden;
  }
  .faq-q{
    width:100%; background:none; border:none; text-align:left; padding:22px 24px;
    display:flex; justify-content:space-between; align-items:center; gap:16px;
    font-family:'Fraunces',serif; font-size:16.5px; font-weight:600; color:var(--navy-950);
  }
  .faq-q .plus{
    flex-shrink:0; width:28px; height:28px; border-radius:50%; border:1.5px solid var(--gold-500);
    display:flex; align-items:center; justify-content:center; position:relative; transition:transform .3s var(--ease);
  }
  .faq-q .plus::before, .faq-q .plus::after{
    content:""; position:absolute; background:var(--gold-600);
  }
  .faq-q .plus::before{ width:11px; height:2px; }
  .faq-q .plus::after{ width:2px; height:11px; transition:transform .3s var(--ease); }
  .faq-item[aria-expanded="true"] .plus::after{ transform:scaleY(0); }
  .faq-item[aria-expanded="true"] .plus{ transform:rotate(90deg); }
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height .4s var(--ease), padding .4s var(--ease);
    padding:0 24px;
  }
  .faq-a p{ font-size:14.5px; line-height:1.7; color:var(--slate-500); padding-bottom:22px; }
  .faq-item[aria-expanded="true"] .faq-a{ max-height:320px; }

  /* ===== FINAL CTA ===== */
  .final-cta{
    background:
      radial-gradient(800px 400px at 50% 0%, rgba(201,162,75,.22), transparent 60%),
      linear-gradient(160deg,var(--navy-950),var(--navy-800));
    color:var(--white); text-align:center;
  }
  .final-cta h2{ font-size:clamp(2rem,4vw,3rem); color:var(--white); margin-bottom:18px; }
  .final-cta p{ font-size:17px; color:var(--cream-100); opacity:.85; max-width:560px; margin:0 auto 34px; line-height:1.65; }
  .final-cta .btn{ font-size:17px; padding:19px 42px; }
  .final-guarantee{ margin-top:26px; display:inline-flex; align-items:center; gap:10px; font-size:13.5px; color:var(--gold-300); font-weight:700; }

  /* ===== FOOTER ===== */
  footer{ background:var(--navy-950); color:var(--cream-100); padding:56px 0 30px; }
  .footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; padding-bottom:36px; border-bottom:1px solid rgba(232,207,143,.14); }
  .footer-brand .logo{ margin-bottom:14px; }
  .footer-brand p{ font-size:13.5px; opacity:.6; max-width:320px; line-height:1.6; }
  .footer-links{ display:flex; gap:60px; flex-wrap:wrap; }
  .footer-col h4{ font-family:'Manrope',sans-serif; font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:var(--gold-300); margin-bottom:16px; font-weight:800; }
  .footer-col ul{ display:flex; flex-direction:column; gap:10px; }
  .footer-col a{ font-size:13.5px; opacity:.7; transition:opacity .2s; }
  .footer-col a:hover{ opacity:1; color:var(--gold-300); }
  .footer-bottom{ padding-top:26px; font-size:12px; opacity:.5; line-height:1.7; }
  .footer-bottom .legal{ margin-top:14px; opacity:.85; }
  .footer-bottom #affiliate-disclosure{
    opacity:.75; margin-bottom:14px; padding-bottom:14px;
    border-bottom:1px solid rgba(232,207,143,.14);
    scroll-margin-top:100px;
  }
  .footer-bottom #affiliate-disclosure strong{ color:var(--gold-300); opacity:1; }

  .container-narrow{ max-width:900px; margin:0 auto; }
