@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --cream:       #faf6ef;
  --cream-2:     #f3ece0;
  --cream-3:     #ede4d3;
  --parchment:   #e8dcc8;
  --terracotta:  #c1440e;
  --terra-d:     #9d3409;
  --terra-soft:  #fdeee8;
  --olive:       #4a5e2e;
  --olive-d:     #374620;
  --olive-soft:  #e8f0da;
  --ink:         #1c1409;
  --ink-2:       #3d2f1a;
  --muted:       #7a6a52;
  --line:        #ddd0b8;
  --gold:        #b8892a;
  --gold-soft:   #fdf3d7;
  --white:       #ffffff;
  --max:         1100px;
  --max-text:    720px;
  --fh:          'DM Sans', system-ui, sans-serif;
  --fd:          'Playfair Display', Georgia, serif;
  --ease:        cubic-bezier(0.25, 1, 0.5, 1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--fh);background:var(--cream);color:var(--ink-2);overflow-x:hidden;line-height:1.65;}
img{max-width:100%;display:block;}
a{color:var(--terracotta);text-underline-offset:3px;}
a:hover{color:var(--terra-d);}
.wrap{width:min(100% - 32px,var(--max));margin-inline:auto;}

/* ── HEADER ── */
.site-header{
  position:sticky;top:0;z-index:200;
  background:rgba(250,246,239,0.95);backdrop-filter:blur(16px);
  border-bottom:1px solid transparent;
  transition:border-color .3s,box-shadow .3s;
}
.site-header.scrolled{border-color:var(--line);box-shadow:0 4px 24px rgba(28,20,9,.07);}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:68px;gap:24px;
}
.logo{text-decoration:none;display:flex;align-items:center;gap:10px;}
.logo-leaf{font-size:22px;line-height:1;}
.logo-name{font-family:var(--fd);font-size:22px;font-weight:700;color:var(--ink);letter-spacing:-0.5px;font-style:italic;}
.logo-name b{font-style:normal;color:var(--terracotta);}
.nav-links{display:flex;gap:28px;list-style:none;}
.nav-links a{font-size:14px;font-weight:500;color:var(--muted);text-decoration:none;transition:color .2s;}
.nav-links a:hover{color:var(--olive);}
.btn-nav{
  background:var(--olive);color:var(--white);
  font-family:var(--fh);font-weight:600;font-size:14px;
  padding:10px 22px;border-radius:100px;text-decoration:none;
  transition:background .2s,transform .15s;
  box-shadow:0 4px 14px rgba(74,94,46,.2);
}
.btn-nav:hover{background:var(--olive-d);color:var(--white);transform:translateY(-1px);}

/* ── HERO ── */
.hero{
  display:grid;grid-template-columns:1fr 1fr;
  min-height:92vh;position:relative;overflow:hidden;
}
.hero-left{
  background:var(--cream-2);
  display:flex;flex-direction:column;justify-content:center;
  padding:80px 64px 80px max(32px,calc((100vw - 1100px)/2 + 32px));
  position:relative;
}
.hero-left::after{
  content:'';position:absolute;top:0;right:-1px;bottom:0;width:80px;
  background:linear-gradient(90deg,transparent,var(--cream));
  pointer-events:none;z-index:1;
}
.hero-right{
  background:var(--olive-d);
  position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.hero-right-img{
  position:absolute;inset:0;
  background:linear-gradient(135deg,#2d3d18,#4a5e2e,#3a4f22);
  display:flex;align-items:center;justify-content:center;font-size:80px;opacity:.3;
}
.hero-right-photo{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:.45;mix-blend-mode:luminosity;z-index:0;
}
.hero-right::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(45,61,24,.45) 0%,rgba(55,70,32,.55) 100%);
  pointer-events:none;z-index:1;
}
.hero-overlay{
  position:relative;z-index:2;text-align:center;padding:40px;
}
.hero-product-float{
  background:var(--white);border-radius:20px;padding:28px;
  box-shadow:0 24px 80px rgba(0,0,0,.25);
  max-width:280px;margin:0 auto;
  animation:floatY 4s ease-in-out infinite;
}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero-product-float img{width:100%;aspect-ratio:1;object-fit:contain;margin-bottom:14px;}
.hero-product-float .prod-name{font-family:var(--fd);font-size:15px;font-weight:700;color:var(--ink);margin-bottom:6px;}
.hero-product-float .prod-sub{font-size:12px;color:var(--muted);margin-bottom:10px;}
.hero-product-float .prod-price{font-family:var(--fd);font-size:22px;font-weight:700;color:var(--terracotta);}
.hero-tag-float{
  position:absolute;top:30px;right:30px;
  background:var(--terracotta);color:var(--white);
  border-radius:12px;padding:12px 16px;
  box-shadow:0 8px 24px rgba(193,68,14,.35);
  font-family:var(--fh);font-size:12px;font-weight:700;
  text-align:center;animation:floatY 4s ease-in-out .7s infinite;
}
.hero-tag-float strong{display:block;font-size:18px;letter-spacing:-0.5px;}
.hero-kicker{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--olive-soft);border:1px solid rgba(74,94,46,.2);
  padding:6px 14px;border-radius:100px;
  font-size:11px;font-weight:700;letter-spacing:1.2px;
  text-transform:uppercase;color:var(--olive-d);margin-bottom:22px;
}
.kicker-dot{width:6px;height:6px;background:var(--olive);border-radius:50%;animation:pulse 2.5s infinite;}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.6)}}
.hero h1{
  font-family:var(--fd);font-size:clamp(2.2rem,4.5vw,3.3rem);
  font-weight:700;color:var(--ink);line-height:1.12;
  letter-spacing:-1px;margin-bottom:18px;
}
.hero h1 em{font-style:italic;color:var(--terracotta);}
.hero-deck{font-size:17px;color:var(--muted);line-height:1.7;margin-bottom:32px;max-width:440px;}
.price-row{
  display:inline-flex;align-items:baseline;gap:8px;
  background:var(--white);border:1px solid var(--line);
  border-radius:100px;padding:10px 22px;margin-bottom:28px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.price-main{font-family:var(--fd);font-size:26px;font-weight:700;color:var(--ink);letter-spacing:-0.5px;}
.price-note{font-size:13px;color:var(--muted);}
.cta-row{display:flex;gap:14px;align-items:center;flex-wrap:wrap;}
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--terracotta);color:var(--white);
  font-family:var(--fh);font-weight:700;font-size:15px;
  padding:14px 28px;border-radius:100px;text-decoration:none;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 8px 28px rgba(193,68,14,.25);
}
.btn-primary:hover{background:var(--terra-d);color:var(--white);transform:translateY(-2px);box-shadow:0 16px 40px rgba(193,68,14,.3);}
.btn-ghost{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--muted);font-size:14px;font-weight:600;text-decoration:none;transition:color .2s;
}
.btn-ghost:hover{color:var(--olive);}
.hero-note{margin-top:16px;font-size:12px;color:var(--muted);}

/* ── DIVIDER ── */
.marquee-strip{
  background:var(--olive-d);padding:14px 0;overflow:hidden;
  border-top:2px solid var(--parchment);border-bottom:2px solid var(--parchment);
}
.marquee-inner{
  display:flex;gap:0;white-space:nowrap;
  animation:marquee 22s linear infinite;
}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-item{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--fd);font-size:14px;font-style:italic;
  color:rgba(255,255,255,.7);padding:0 32px;
}
.marquee-dot{color:var(--terracotta);font-style:normal;}

/* ── SECTIONS ── */
.section{padding:96px 0;}
.section-alt{background:var(--cream-2);}
.section-white{background:var(--white);}
.section-olive{background:var(--olive-d);color:rgba(255,255,255,.75);}
.section-kicker{
  font-size:11px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;color:var(--terracotta);
  display:block;margin-bottom:12px;
}
.section-olive .section-kicker{color:#fcd34d;}
.section-h2{
  font-family:var(--fd);font-size:clamp(1.9rem,3.5vw,2.7rem);
  font-weight:700;color:var(--ink);line-height:1.18;
  letter-spacing:-0.5px;margin-bottom:12px;
}
.section-olive .section-h2{color:var(--white);}
.section-sub{font-size:16px;color:var(--muted);line-height:1.7;max-width:520px;}
.section-olive .section-sub{color:rgba(255,255,255,.55);}

/* ── WHY SODIUM ── */
.sodium-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;}
.sodium-visual{
  border-radius:24px;overflow:hidden;
  background:linear-gradient(145deg,var(--cream-3),var(--parchment));
  padding:40px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 24px 80px rgba(28,20,9,.1),0 4px 16px rgba(0,0,0,.05);
  aspect-ratio:4/3;position:relative;
}
.sodium-visual::before{
  content:'🧂';font-size:80px;opacity:.15;
  position:absolute;top:20px;right:20px;line-height:1;
}
.sodium-img{position:relative;z-index:1;width:100%;max-height:260px;object-fit:contain;filter:drop-shadow(0 10px 20px rgba(0,0,0,.1));}
.sodium-copy .lead{
  font-family:var(--fd);font-size:20px;font-style:italic;
  color:var(--ink);line-height:1.55;margin-bottom:20px;
  border-left:4px solid var(--terracotta);padding-left:18px;
}
.sodium-copy p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:14px;}
.fact-chips{display:flex;flex-wrap:wrap;gap:8px;margin:20px 0;}
.fact-chip{
  background:var(--white);border:1px solid var(--line);
  border-radius:100px;padding:6px 14px;
  font-size:13px;font-weight:600;color:var(--ink-2);
  display:flex;align-items:center;gap:6px;
}
.fact-chip span{color:var(--terracotta);font-weight:800;}

/* ── PRODUCT FEATURE ── */
.product-section{padding:96px 0;}
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;}
.product-visual{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.product-img-main{
  grid-column:span 2;background:var(--cream-2);
  border-radius:20px;border:1px solid var(--line);
  padding:32px;display:flex;align-items:center;justify-content:center;
  box-shadow:0 16px 48px rgba(28,20,9,.08);
  aspect-ratio:16/10;
}
.product-img-main img{max-height:200px;object-fit:contain;filter:drop-shadow(0 8px 16px rgba(0,0,0,.1));}
.product-img-sub{
  background:var(--olive-soft);border-radius:14px;
  border:1px solid rgba(74,94,46,.15);padding:16px;
  display:flex;align-items:center;justify-content:center;
  aspect-ratio:1;
}
.product-img-sub img{max-height:100px;object-fit:contain;}
.product-img-sub .placeholder-icon{font-size:36px;opacity:.4;}
.product-copy .prod-brand{
  font-size:11px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;color:var(--muted);margin-bottom:6px;
}
.product-copy .prod-name{
  font-family:var(--fd);font-size:clamp(1.5rem,3vw,2rem);
  font-weight:700;color:var(--ink);letter-spacing:-0.5px;margin-bottom:8px;
}
.rating-row{display:flex;align-items:center;gap:8px;margin-bottom:16px;}
.stars{color:var(--gold);font-size:15px;letter-spacing:1.5px;}
.rating-score{font-size:14px;font-weight:700;color:var(--ink);}
.rating-count{font-size:13px;color:var(--muted);}
.prod-chips{display:flex;flex-wrap:wrap;gap:7px;margin:14px 0 20px;}
.chip{
  background:var(--cream-2);color:var(--ink-2);
  font-size:12px;font-weight:600;padding:5px 12px;
  border-radius:100px;border:1px solid var(--line);
}
.chip.terra{background:var(--terra-soft);color:var(--terracotta);border-color:rgba(193,68,14,.2);}
.chip.olive{background:var(--olive-soft);color:var(--olive-d);border-color:rgba(74,94,46,.2);}
.spec-list{list-style:none;display:grid;gap:10px;margin:16px 0 24px;}
.spec-item{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--ink-2);}
.spec-item::before{content:'✓';color:var(--olive);font-weight:800;flex-shrink:0;margin-top:1px;}

/* ── HOW TO USE ── */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:52px;}
.step-card{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
  border-radius:20px;padding:28px 22px;position:relative;overflow:hidden;
  transition:background .25s;
}
.step-card:hover{background:rgba(255,255,255,.12);}
.step-num{
  font-family:var(--fd);font-size:64px;font-weight:700;
  color:rgba(255,255,255,.06);position:absolute;
  top:12px;right:16px;line-height:1;letter-spacing:-2px;
}
.step-icon{font-size:28px;margin-bottom:14px;position:relative;z-index:1;}
.step-card h3{font-size:15px;font-weight:700;color:var(--white);margin-bottom:8px;position:relative;z-index:1;}
.step-card p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.65;position:relative;z-index:1;}

/* ── RECIPES TEASER ── */
.recipes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.recipe-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:18px;overflow:hidden;
  transition:box-shadow .25s,transform .25s;
}
.recipe-card:hover{box-shadow:0 20px 60px rgba(28,20,9,.1);transform:translateY(-4px);}
.recipe-img{
  height:160px;background:linear-gradient(135deg,var(--cream-3),var(--parchment));
  display:flex;align-items:center;justify-content:center;font-size:48px;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.recipe-img img{width:100%;height:100%;object-fit:cover;}
.step-photo{
  width:100%;height:118px;object-fit:cover;border-radius:12px;
  margin-bottom:14px;border:1px solid rgba(255,255,255,.12);
}
.dash-inline-photo{
  border-radius:16px;overflow:hidden;margin:22px 0 8px;
  border:1px solid var(--line);aspect-ratio:16/9;max-height:280px;
}
.dash-inline-photo img{width:100%;height:100%;object-fit:cover;}
.amazon-strip{
  display:flex;flex-wrap:wrap;gap:14px;justify-content:center;align-items:center;
  margin:36px 0 8px;
}
.amazon-strip img{
  width:88px;height:88px;object-fit:contain;background:var(--white);
  border-radius:12px;padding:8px;border:1px solid var(--line);
}
.inner-page-banner{
  width:100%;aspect-ratio:21/9;border-radius:18px;overflow:hidden;
  margin-bottom:28px;border:1px solid var(--line);max-height:220px;
}
.inner-page-banner img{width:100%;height:100%;object-fit:cover;}
.cta-product-visual{
  display:flex;justify-content:center;margin-bottom:28px;
}
.cta-product-visual img{
  width:min(200px,45vw);height:auto;object-fit:contain;
  background:var(--white);border-radius:16px;padding:16px;
  border:1px solid rgba(255,255,255,.2);box-shadow:0 12px 40px rgba(0,0,0,.2);
}
.shop-gallery{
  display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:8px;
}
.shop-gallery img{
  width:52px;height:52px;object-fit:contain;background:var(--white);
  border-radius:8px;padding:4px;border:1px solid var(--line);
}
.recipe-body{padding:18px;}
.recipe-tag{
  font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--terracotta);margin-bottom:6px;
}
.recipe-title{font-family:var(--fd);font-size:16px;font-weight:700;color:var(--ink);line-height:1.35;margin-bottom:8px;}
.recipe-meta{font-size:12px;color:var(--muted);}

/* ── DASH INFO ── */
.dash-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:start;}
.dash-copy h2{font-family:var(--fd);}
.dash-copy p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:14px;}
.dash-sidebar{display:grid;gap:14px;}
.dash-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:14px;padding:18px;
  display:flex;align-items:flex-start;gap:14px;
  transition:box-shadow .2s,border-color .2s;
}
.dash-card:hover{box-shadow:0 8px 24px rgba(28,20,9,.07);border-color:var(--terracotta);}
.dash-icon{font-size:22px;flex-shrink:0;margin-top:2px;}
.dash-card strong{display:block;font-size:14px;font-weight:700;color:var(--ink);margin-bottom:4px;}
.dash-card span{font-size:13px;color:var(--muted);line-height:1.55;}

/* ── REVIEWS ── */
.reviews-masonry{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px;}
.review-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:16px;padding:22px;
  transition:box-shadow .2s,transform .2s;
}
.review-card:hover{box-shadow:0 12px 40px rgba(28,20,9,.07);transform:translateY(-2px);}
.review-stars{color:var(--gold);font-size:13px;letter-spacing:2px;margin-bottom:10px;}
.review-text{font-family:var(--fd);font-size:15px;font-style:italic;color:var(--ink-2);line-height:1.65;margin-bottom:14px;}
.review-author{font-size:12px;font-weight:600;color:var(--muted);}

/* ── FAQ ── */
.faq{display:grid;gap:10px;margin-top:40px;}
.faq-item{
  background:var(--white);border:1.5px solid var(--line);
  border-radius:14px;overflow:hidden;transition:border-color .2s;
}
.faq-item.open{border-color:var(--terracotta);}
.faq-q{
  width:100%;background:none;border:none;text-align:left;
  padding:20px 22px;font-family:var(--fh);font-size:15px;
  font-weight:600;color:var(--ink);cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq-icon{font-size:20px;color:var(--terracotta);flex-shrink:0;transition:transform .3s var(--ease);}
.faq-item.open .faq-icon{transform:rotate(45deg);}
.faq-a{
  max-height:0;overflow:hidden;font-size:14px;color:var(--muted);
  line-height:1.7;padding:0 22px;transition:max-height .4s var(--ease),padding .25s;
}
.faq-item.open .faq-a{max-height:280px;padding:0 22px 20px;}

/* ── CTA BAND ── */
.cta-section{
  background:linear-gradient(135deg,var(--olive-d),#5a7235,var(--olive));
  padding:88px 0;text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at center,rgba(255,255,255,.05) 0%,transparent 70%);
}
.cta-section h2{
  font-family:var(--fd);font-size:clamp(1.9rem,3.5vw,2.8rem);
  font-weight:700;color:var(--white);letter-spacing:-0.5px;margin-bottom:12px;position:relative;
}
.cta-section p{font-size:17px;color:rgba(255,255,255,.7);margin-bottom:32px;position:relative;}
.btn-cta-white{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--white);color:var(--olive-d);
  font-family:var(--fh);font-weight:800;font-size:16px;
  padding:16px 36px;border-radius:100px;text-decoration:none;
  box-shadow:0 10px 40px rgba(0,0,0,.2);
  transition:transform .15s,box-shadow .2s;position:relative;
}
.btn-cta-white:hover{color:var(--olive-d);transform:translateY(-2px);box-shadow:0 20px 60px rgba(0,0,0,.25);}
.btn-cta-white small{display:block;font-size:11px;font-weight:500;color:var(--muted);}

/* ── FOOTER ── */
.site-footer{background:var(--ink);color:rgba(255,255,255,.45);padding:52px 0;font-size:13px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:36px;}
.footer-logo{font-family:var(--fd);font-size:20px;font-weight:700;font-style:italic;color:rgba(255,255,255,.8);margin-bottom:10px;}
.footer-brand p{font-size:13px;line-height:1.7;max-width:260px;color:rgba(255,255,255,.4);}
.footer-col h4{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.8);margin-bottom:14px;}
.footer-col ul{list-style:none;display:grid;gap:9px;}
.footer-col ul a{color:rgba(255,255,255,.4);text-decoration:none;transition:color .2s;}
.footer-col ul a:hover{color:rgba(255,255,255,.9);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;font-size:12px;flex-wrap:wrap;gap:10px;color:rgba(255,255,255,.35);}
.footer-bottom a{color:rgba(255,255,255,.35);}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal.visible{opacity:1;transform:none;}
.reveal-l{opacity:0;transform:translateX(-32px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal-l.visible{opacity:1;transform:none;}
.reveal-r{opacity:0;transform:translateX(32px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal-r.visible{opacity:1;transform:none;}
.reveal-s{opacity:0;transform:scale(.96);transition:opacity .6s var(--ease),transform .6s var(--ease);}
.reveal-s.visible{opacity:1;transform:none;}
.d1{transition-delay:.1s;} .d2{transition-delay:.18s;} .d3{transition-delay:.26s;} .d4{transition-delay:.34s;}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-left{padding:64px 32px;}
  .hero-right{min-height:50vw;}
  .sodium-grid,.product-grid,.dash-grid{grid-template-columns:1fr;gap:40px;}
  .steps-grid,.recipes-grid,.reviews-masonry{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .steps-grid,.recipes-grid,.reviews-masonry{grid-template-columns:1fr;}
  .product-visual{grid-template-columns:1fr;}
  .product-img-main{grid-column:span 1;}
  .nav-links,.btn-nav{display:none;}
  .cta-row{flex-direction:column;align-items:flex-start;}
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .footer-bottom{flex-direction:column;text-align:center;}
}
