  :root{
    --bg:#F2ECDF;
    --surface:#FFFDF8;
    --ink:#2B2118;
    --ink-soft:#6B5D4F;
    --olive:#6B7247;
    --olive-soft:#DDE2CC;
    --gold:#C89B3C;
    --rust:#A6532A;
    --line:#DED2B8;
    --display: 'Fraunces', serif;
    --body: 'Work Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:var(--body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
  section{padding:96px 0;}
  @media(max-width:720px){ section{padding:64px 0;} }

  h1,h2,h3{font-family:var(--display); font-weight:600; letter-spacing:-0.01em;}
  .eyebrow{
    font-family:var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--rust); display:flex; align-items:center; gap:10px; margin-bottom:16px;
  }
  .eyebrow::before{content:''; width:22px; height:1px; background:var(--rust);}

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(242,236,223,.88); backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
    padding:18px 0;
  }
  
  .brand{
    font-family:var(--display); font-size:22px; font-weight:700; letter-spacing:-.01em;
    display:flex; align-items:center; gap:8px;
    justify-self:center;
  }
  .brand svg{width:26px; height:26px;}
  
  .nav-links{
    display:flex; gap:34px; font-size:14.5px; font-weight:500;
    justify-self:start;
  }
  .nav-links a{position:relative; padding:4px 0; color:var(--ink-soft);}
  .nav-links a:hover{color:var(--ink);}
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--rust);
    transition:width .25s ease;
  }
  .nav-links a:hover::after{width:100%;}
  
  .nav-cta{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--ink); color:var(--bg);
    padding:10px 18px; border-radius:100px; font-size:14px; font-weight:600;
    transition:background .2s ease, transform .2s ease;
    justify-self:end;
  }
  .nav-cta:hover{background:var(--rust); transform:translateY(-1px);}
  .nav-toggle{display:none; background:none; border:0;}
  @media(max-width:820px){
    .nav-links{display:none;}
    .nav-toggle{display:block;}
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative; overflow:hidden;
    padding:88px 0 64px;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center;
  }
  @media(max-width:900px){ .hero-grid{grid-template-columns:1fr;} }
  .hero h1{
    font-size:clamp(38px,5.4vw,64px); line-height:1.03; margin-bottom:22px;
  }
  .hero h1 em{font-style:italic; color:var(--rust); font-weight:500;}
  .hero p.lead{
    font-size:18px; color:var(--ink-soft); max-width:46ch; margin-bottom:36px;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:14px 26px; border-radius:100px; font-weight:600; font-size:15px;
    border:1.5px solid transparent; transition:all .2s ease;
  }
  .btn-primary{background:var(--rust); color:#fff;}
  .btn-primary:hover{background:#8c4522; transform:translateY(-2px);}
  .btn-outline{border-color:var(--ink); color:var(--ink);}
  .btn-outline:hover{background:var(--ink); color:var(--bg);}

  .hero-stats{display:flex; gap:34px; margin-top:48px;}
  .hero-stats div{border-left:1.5px solid var(--line); padding-left:14px;}
  .hero-stats .num{font-family:var(--mono); font-size:22px; font-weight:500; color:var(--olive);}
  .hero-stats .lbl{font-size:12.5px; color:var(--ink-soft);}

  .seed-scatter{position:relative; width:100%; aspect-ratio:1/1;}
  .seed-scatter svg{position:absolute; animation:settle .9s cubic-bezier(.2,.9,.3,1) both;}

  @keyframes settle{
    from{opacity:0; transform:translateY(-16px) rotate(var(--r,0deg)) scale(.85);}
    to{opacity:1; transform:translateY(0) rotate(var(--r,0deg)) scale(1);}
  }
  @media (prefers-reduced-motion: reduce){
    .seed-scatter svg{animation:none;}
  }

  /* ---------- CATEGORY STRIP ---------- */
  .cats{border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .cats-grid{
    display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
    background:var(--line);
  }
  @media(max-width:720px){ .cats-grid{grid-template-columns:repeat(2,1fr);} }
  .cat-card{
    background:var(--bg); padding:34px 24px; text-align:left;
    display:flex; flex-direction:column; gap:14px; transition:background .2s ease;
  }
  .cat-card:hover{background:var(--surface);}
  .cat-card .icon{width:40px; height:40px;}
  .cat-card h3{font-size:17px; font-weight:600;}
  .cat-card p{font-size:13.5px; color:var(--ink-soft);}

  /* ---------- CATALOG ---------- */
  .cat-header{display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:48px; gap:24px; flex-wrap:wrap;}
  .cat-header h2{font-size:clamp(30px,4vw,42px);}
  .cat-header p{color:var(--ink-soft); max-width:42ch;}

  .filters{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px;}
  .filter-btn{
    padding:8px 16px; border-radius:100px; border:1.5px solid var(--line);
    font-size:13.5px; font-weight:500; background:transparent; color:var(--ink-soft);
    transition:all .18s ease;
  }
  .filter-btn.active, .filter-btn:hover{border-color:var(--olive); color:var(--ink); background:var(--olive-soft);}

  .product-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  }
  @media(max-width:960px){ .product-grid{grid-template-columns:repeat(2,1fr);} }
  @media(max-width:600px){ .product-grid{grid-template-columns:1fr;} }

  .product-card{
    background:var(--surface); border:1px solid var(--line); border-radius:18px;
    padding:26px; display:flex; flex-direction:column; gap:16px;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .product-card:hover{transform:translateY(-4px); box-shadow:0 16px 30px -18px rgba(43,33,24,.35);}
  .product-visual{
    width:100%; aspect-ratio:16/11; border-radius:12px; background:var(--olive-soft);
    display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
  }
  .product-visual svg{width:58%; height:58%;}
  .product-tag{
    position:absolute; top:10px; left:10px; background:var(--surface); border:1px solid var(--line);
    font-family:var(--mono); font-size:10.5px; padding:3px 9px; border-radius:100px; color:var(--ink-soft);
  }
  .product-card h3{font-size:18px; font-weight:600;}
  .product-card .desc{font-size:13.5px; color:var(--ink-soft); flex-grow:1;}
  .price-row{display:flex; align-items:baseline; justify-content:space-between;}
  .price-options{display:flex; gap:8px; font-family:var(--mono); font-size:12px;}
  .weight-opt{
    border:1px solid var(--line); border-radius:6px; padding:4px 8px;
    color:var(--ink-soft); background:transparent; font-family:var(--mono); font-size:12px;
    cursor:pointer; transition:all .15s ease;
  }
  .weight-opt.sel, .weight-opt:hover{border-color:var(--olive); color:var(--olive); background:var(--olive-soft);}
  .price{font-family:var(--mono); font-size:20px; font-weight:500; color:var(--rust);}
  .order-btn{
    display:flex; align-items:center; justify-content:center; gap:8px;
    background:var(--ink); color:var(--bg); padding:12px; border-radius:10px;
    font-size:14px; font-weight:600; transition:background .2s ease;
  }
  .order-btn:hover{background:#25D366; color:#0a2b19;}
  .order-btn svg{width:16px; height:16px;}

  /* ---------- BENEFITS ---------- */
  .benefits{background:var(--ink); color:var(--bg);}
  .benefits .eyebrow{color:var(--gold);}
  .benefits .eyebrow::before{background:var(--gold);}
  .benefits-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(242,236,223,.14); margin-top:44px; border-radius:16px; overflow:hidden;}
  @media(max-width:900px){ .benefits-grid{grid-template-columns:repeat(2,1fr);} }
  .benefit{background:var(--ink); padding:32px 26px;}
  .benefit .n{font-family:var(--mono); color:var(--gold); font-size:13px; margin-bottom:14px; display:block;}
  .benefit h3{font-size:17px; margin-bottom:10px; font-weight:600;}
  .benefit p{font-size:13.5px; color:#cfc4b3;}

  /* ---------- HOW TO ORDER ---------- */
  .steps{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px;}
  @media(max-width:820px){ .steps{grid-template-columns:1fr;} }
  .step{position:relative; padding-left:0;}
  .step .num{
    font-family:var(--display); font-size:52px; font-weight:600; color:var(--olive-soft);
    -webkit-text-stroke:1.5px var(--olive); color:transparent;
    line-height:1; margin-bottom:18px; display:block;
  }
  .step h3{font-size:19px; margin-bottom:10px;}
  .step p{color:var(--ink-soft); font-size:14.5px;}

  /* ---------- CTA BAND ---------- */
  .cta-band{
    background:var(--gold); border-radius:24px; padding:56px 48px;
    display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  }
  .cta-band h2{font-size:clamp(26px,3.4vw,36px); max-width:20ch; color:var(--ink);}
  .cta-band .btn-primary{background:var(--ink);}
  .cta-band .btn-primary:hover{background:#000;}

  /* ---------- FOOTER ---------- */
  footer{border-top:1px solid var(--line); padding:56px 0 40px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:48px;}
  @media(max-width:720px){ .footer-grid{grid-template-columns:1fr; gap:32px;} }
  .footer-brand{font-family:var(--display); font-size:20px; font-weight:700; margin-bottom:12px;}
  .footer-grid p{color:var(--ink-soft); font-size:14px; max-width:38ch;}
  .footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft); margin-bottom:16px;}
  .footer-col a, .footer-col li{font-size:14.5px; margin-bottom:10px; display:block; color:var(--ink);}
  .footer-col a:hover{color:var(--rust);}
  .footer-bottom{
    display:flex; justify-content:space-between; padding-top:24px; border-top:1px solid var(--line);
    font-size:12.5px; color:var(--ink-soft); flex-wrap:wrap; gap:10px;
  }

  /* ---------- FLOATING WHATSAPP ---------- */
  .wa-float{
    position:fixed; bottom:24px; right:24px; z-index:60;
    width:58px; height:58px; border-radius:50%; background:#25D366;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 24px -8px rgba(0,0,0,.4);
    transition:transform .2s ease;
  }
  .wa-float:hover{transform:scale(1.08);}
  .wa-float svg{width:28px; height:28px;}

  .reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
