/* ============================================================
   ALAGINI NATURALS — Design System
   Direction: Tamil herbal apothecary. A hand-pressed oil label,
   not a wellness-startup template. Deep bottle-green, turmeric
   gold, kumkum maroon on warm parchment. Wax-seal stamp as the
   signature motif; a leaf-vine carries the "how to use" steps.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root{
  /* --- Color tokens --- */
  --ink:        #1F3B2C;   /* deep bottle green — headings/text */
  --ink-soft:   #4A5A4C;   /* muted green-grey — body copy */
  --bg:         #F3EEDF;   /* warm parchment — page background */
  --bg-alt:     #EAE2C7;   /* deeper parchment — alt sections */
  --card:       #FFFDF6;   /* card surface */
  --green-deep: #14261A;   /* darkest green — footer / dark bands */
  --green-mid:  #2B4A36;
  --gold:       #B4802A;   /* turmeric — primary accent / CTA */
  --gold-soft:  #D9A94F;
  --maroon:     #7B2B2B;   /* kumkum — secondary accent / seal */
  --line:       rgba(31,59,44,0.14);
  --shadow:     0 20px 40px -20px rgba(20,38,26,0.35);

  /* --- Type --- */
  --display: "Fraunces", Georgia, serif;
  --body:    "Work Sans", -apple-system, sans-serif;

  --container: 1180px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--body);
  background:var(--bg);
  color:var(--ink-soft);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 28px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline:2.5px solid var(--gold); outline-offset:3px; }

/* ---------- Typography scale ---------- */
h1,h2,h3,h4{ font-family:var(--display); color:var(--ink); font-weight:600; letter-spacing:-0.01em; }
h1{ font-size:clamp(2.6rem, 5.5vw, 4.4rem); line-height:1.04; font-weight:500; }
h2{ font-size:clamp(1.9rem, 3.4vw, 2.7rem); line-height:1.12; }
h3{ font-size:1.3rem; line-height:1.3; }
p{ max-width:60ch; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--body); font-weight:600; font-size:0.75rem;
  letter-spacing:0.16em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.eyebrow svg{ width:16px; height:16px; flex-shrink:0; }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ margin-top:14px; font-size:1.08rem; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

section{ padding:100px 0; position:relative; }
@media(max-width:720px){ section{ padding:68px 0; } }

/* ---------- Leaf-vine divider (signature repeat) ---------- */
.vine-divider{ display:flex; justify-content:center; padding:6px 0 0; opacity:0.55; }
.vine-divider svg{ width:120px; height:20px; color:var(--gold); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 30px; border-radius:100px;
  font-weight:600; font-size:0.98rem; letter-spacing:0.01em;
  border:1.5px solid transparent; transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary{ background:var(--ink); color:var(--bg); box-shadow:0 10px 26px -10px rgba(20,38,26,0.55); }
.btn-primary:hover{ background:var(--green-mid); transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--green-deep); box-shadow:0 10px 26px -10px rgba(180,128,42,0.55); }
.btn-gold:hover{ background:var(--gold-soft); transform:translateY(-2px); }
.btn-outline{ border-color:var(--ink); color:var(--ink); background:transparent; }
.btn-outline:hover{ background:var(--ink); color:var(--bg); }
.btn svg{ width:18px; height:18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(243,238,223,0.97);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; height:82px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:40px; width:auto; }
.brand span{ font-family:var(--display); font-size:1.28rem; color:var(--ink); font-weight:600; }

.main-nav-desktop ul{ display:flex; align-items:center; gap:36px; }
.main-nav-desktop a{ font-weight:500; font-size:0.95rem; color:var(--ink); position:relative; }
.main-nav-desktop a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background:var(--gold); transform:scaleX(0); transform-origin:right;
  transition:transform .3s ease;
}
.main-nav-desktop a:hover::after{ transform:scaleX(1); transform-origin:left; }

/* The mobile full-screen menu is a page-level element (a sibling
   of <header>, not nested inside it) on purpose: .site-header uses
   position:sticky, which always creates its own stacking context —
   anything nested inside it can never visually rise above a
   page-level element like .nav-overlay no matter what z-index it's
   given. Keeping .main-nav-mobile outside <header> avoids that trap.
   Hidden by default (desktop); only @media(max-width:900px) below
   turns it into the full-screen panel. Do not add a second
   mobile-nav block elsewhere in this file. */
.main-nav-mobile,
.nav-overlay{ display:none; }

.header-cta{ display:flex; align-items:center; gap:20px; }
.header-cta .btn{ padding:11px 22px; font-size:0.9rem; }

.nav-toggle{
  display:none; background:none; border:none; width:40px; height:40px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:22px; height:2px; background:var(--ink);
  position:relative; transition:all .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }

@media(max-width:900px){
  .main-nav-desktop{ display:none; }

  .main-nav-mobile{
    position:fixed; inset:0; z-index:200; background:#fff;
    display:flex; flex-direction:column;
    padding:0 28px 40px;
    transform:translateX(100%);
    visibility:hidden;
    transition:transform .3s ease, visibility 0s linear .3s;
  }
  .main-nav-mobile.open{
    transform:translateX(0);
    visibility:visible;
    transition:transform .3s ease, visibility 0s linear 0s;
  }

  .nav-top{
    display:flex; align-items:center; justify-content:space-between;
    height:72px; flex-shrink:0;
    border-bottom:1px solid var(--line);
  }
  .nav-top .brand{ display:flex; align-items:center; gap:12px; }
  .nav-close{
    display:flex; align-items:center; justify-content:center;
    width:44px; height:44px; background:none; border:none;
    color:var(--ink); cursor:pointer; border-radius:50%;
    transition:background .2s ease;
  }
  .nav-close:hover{ background:var(--bg-alt); }
  .nav-close svg{ width:22px; height:22px; }

  .main-nav-mobile ul{
    flex:1; display:flex; flex-direction:column; align-items:flex-start;
    justify-content:center; gap:8px; padding:20px 0;
  }
  .main-nav-mobile a{ font-size:1.4rem; padding:10px 0; display:block; color:var(--ink); }
  .main-nav-mobile .nav-cta{ display:flex; margin-top:auto; width:100%; justify-content:center; }

  .nav-overlay{
    display:block; position:fixed; inset:0; z-index:150;
    background:rgba(16,40,27,.45); backdrop-filter:blur(3px);
    opacity:0; pointer-events:none;
    transition:opacity .3s ease;
  }
  .nav-overlay.active{ opacity:1; pointer-events:auto; }

  .header-cta .btn-outline{ display:none; }
  .header-cta .btn-gold{ display:none; }
  .nav-toggle{ display:flex; }
}

body.menu-open{ overflow:hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ padding:76px 0 60px; overflow:visible; }
.hero .wrap{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center;
}
.hero-copy h1{ margin-bottom:22px; }
.hero-copy h1 em{ font-style:italic; color:var(--gold); }
.hero-copy p{ font-size:1.15rem; margin-bottom:34px; }
.hero-actions{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.hero-note{ font-size:0.85rem; color:var(--ink-soft); font-weight:500; }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.hero-blob{
  position:absolute; inset:-8% -6%;
  background:radial-gradient(ellipse at 35% 30%, #DFE0BE 0%, transparent 60%),
             radial-gradient(ellipse at 70% 75%, var(--gold-soft) 0%, transparent 55%);
  border-radius:52% 48% 60% 40% / 48% 55% 45% 52%;
  z-index:0; filter:blur(0.5px);
}
.hero-frame{
  position:relative; z-index:1; width:min(380px, 78%);
  border-radius:44% 56% 62% 38% / 46% 40% 60% 54%;
  overflow:hidden; box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,0.4);
}
.hero-frame img{ width:100%; height:100%; object-fit:cover; }

.seal{
  position:absolute; z-index:2; right:2%; bottom:-6%;
  width:128px; height:128px;
}
@media(max-width:520px){ .seal{ width:100px; height:100px; right:-4%; bottom:-2%; } }

.hero-strapline{
  text-align:center; margin-top:70px;
}
.hero-strapline h2{ font-weight:400; font-style:italic; font-size:clamp(1.4rem,2.6vw,2rem); color:var(--ink); }

@media(max-width:900px){
  .hero .wrap{ grid-template-columns:1fr; text-align:center; }
  .hero-actions{ justify-content:center; }
  .hero-visual{ order:-1; margin-bottom:20px; }
  .hero-copy p{ margin-left:auto; margin-right:auto; }
}

/* ============================================================
   WHY OUR OIL — intro statement
   ============================================================ */
.intro{ text-align:center; }
.intro .wrap{ max-width:820px; }
.intro-badge{
  width:64px; height:64px; margin:0 auto 26px; color:var(--gold);
}
.intro p.lead{ font-size:1.28rem; color:var(--ink); font-family:var(--display); font-weight:400; line-height:1.5; margin:0 auto; }

/* ============================================================
   FEATURE GRID — "What does it do"
   ============================================================ */
.features{ background:var(--bg-alt); }
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
@media(max-width:980px){ .feature-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }

.feature-card{
  background:var(--card); border-radius:20px; padding:32px 26px;
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.feature-icon{
  width:48px; height:48px; border-radius:14px; background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; color:var(--maroon);
}
.feature-card:nth-child(2) .feature-icon{ color:var(--gold); }
.feature-card:nth-child(3) .feature-icon{ color:var(--green-mid); }
.feature-card:nth-child(4) .feature-icon{ color:var(--maroon); }
.feature-icon svg{ width:24px; height:24px; }
.feature-card h3{ margin-bottom:10px; }
.feature-card p{ font-size:0.96rem; }

/* ============================================================
   INGREDIENTS — "What's in it"
   ============================================================ */
.ingredients .wrap{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.ingredients-copy .tag{
  display:inline-block; font-size:0.78rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--maroon); margin-bottom:12px;
}
.ingredients-copy h2{ margin-bottom:18px; }
.ingredients-copy h4{ margin-top:26px; margin-bottom:10px; font-family:var(--display); font-size:1.1rem; color:var(--ink); font-weight:600; }
.ingredients-copy p{ font-size:1rem; }

.ingredients-visual{ position:relative; height:420px; }
.blob-img{
  position:absolute; overflow:hidden; box-shadow:var(--shadow); border:1px solid rgba(255,255,255,0.5);
}
.blob-img.one{
  width:68%; left:0; top:0; height:78%;
  border-radius:62% 38% 45% 55% / 55% 48% 52% 45%;
  z-index:2;
}
.blob-img.two{
  width:52%; right:0; bottom:0; height:56%;
  border-radius:40% 60% 55% 45% / 45% 55% 45% 55%;
  z-index:1; background:var(--gold-soft);
}
.blob-img img{ width:100%; height:100%; object-fit:cover; }

@media(max-width:860px){
  .ingredients .wrap{ grid-template-columns:1fr; gap:40px; }
  .ingredients-visual{ height:340px; order:-1; }
}

/* ============================================================
   HOW TO USE — routine timeline (leaf-vine)
   ============================================================ */
.routine{ background:var(--bg-alt); }
.routine-vine{ position:relative; }
.routine-track{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; z-index:1;
}
.routine-track::before{
  content:""; position:absolute; top:26px; left:6%; right:6%; height:2px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px);
  z-index:-1;
}
.step{ text-align:left; }
.step-num{
  width:52px; height:52px; border-radius:50%; background:var(--card); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:600;
  color:var(--maroon); font-size:1.15rem; margin-bottom:20px;
}
.step h3{ margin-bottom:8px; }
.step p{ font-size:0.95rem; }
@media(max-width:860px){
  .routine-track{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .routine-track::before{ display:none; }
}
@media(max-width:520px){ .routine-track{ grid-template-columns:1fr; } }

.routine-note{
  margin-top:52px; background:var(--card); border-radius:20px; padding:26px 30px;
  display:flex; align-items:center; gap:20px; border:1px solid var(--line); max-width:620px;
}
.routine-note svg{ width:34px; height:34px; color:var(--gold); flex-shrink:0; }
.routine-note h4{ font-family:var(--display); font-size:1.02rem; color:var(--ink); margin-bottom:4px; }
.routine-note p{ font-size:0.9rem; margin:0; }

.routine-media{ margin-top:56px; border-radius:24px; overflow:hidden; box-shadow:var(--shadow); }
.routine-media img{ width:100%; max-height:420px; object-fit:cover; }

/* ============================================================
   WHY NATURAL MATTERS — dark band
   ============================================================ */
.matters{
  background:var(--green-deep); color:#E9E6D6; text-align:center;
}
.matters .eyebrow{ color:var(--gold-soft); justify-content:center; }
.matters h2{ color:#F6F3E4; }
.matters .wrap{ max-width:760px; }
.matters .lead{ font-size:1.5rem; font-family:var(--display); font-weight:400; margin:20px auto 22px; color:#F6F3E4; }
.matters p.sub{ font-size:1.05rem; color:#C7CBB9; margin:0 auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials .section-head{ margin-bottom:44px; }
.stars{ display:flex; gap:3px; color:var(--gold); margin-bottom:18px; }
.stars svg{ width:18px; height:18px; }
.rating-badge{
  display:inline-flex; align-items:center; gap:10px; background:var(--card);
  border:1px solid var(--line); padding:10px 18px; border-radius:100px; margin-bottom:34px;
  font-weight:600; color:var(--ink);
}
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:900px){ .review-grid{ grid-template-columns:1fr; } }
.review-card{
  background:var(--card); border-radius:20px; padding:30px; border:1px solid var(--line);
  display:flex; flex-direction:column; gap:16px;
}
.review-card p{ font-size:0.98rem; color:var(--ink-soft); flex:1; }
.review-name{ display:flex; align-items:center; gap:10px; font-weight:600; color:var(--ink); font-size:0.92rem; }
.review-name svg{ width:18px; height:18px; color:var(--maroon); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:760px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 4px; background:none; border:none; text-align:left;
  font-family:var(--display); font-size:1.08rem; color:var(--ink); font-weight:500;
}
.faq-q .plus{
  width:26px; height:26px; flex-shrink:0; position:relative; color:var(--gold);
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background:currentColor; border-radius:2px;
}
.faq-q .plus::before{ top:50%; left:2px; right:2px; height:2px; transform:translateY(-50%); }
.faq-q .plus::after{ left:50%; top:2px; bottom:2px; width:2px; transform:translateX(-50%); transition:transform .3s ease; }
.faq-item.open .plus::after{ transform:translateX(-50%) rotate(90deg); }
.faq-a{
  max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease;
  padding:0 4px; font-size:0.98rem;
}
.faq-item.open .faq-a{ max-height:200px; padding:0 4px 22px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background:linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  color:var(--green-deep); text-align:center; border-radius:32px;
  margin:0 28px; padding:70px 40px;
  max-width:calc(var(--container) - 56px); margin-left:auto; margin-right:auto;
}
.cta-band h2{ color:var(--green-deep); margin-bottom:16px; }
.cta-band p{ margin:0 auto 32px; font-size:1.08rem; color:#3B2E12; }
.cta-band .btn-primary{ background:var(--green-deep); color:var(--bg); }
.cta-band .btn-primary:hover{ background:var(--ink); }

/* ============================================================
   CONTACT / ORDER
   ============================================================ */
.contact{ }
.contact-card{
  background:var(--card); border:1px solid var(--line); border-radius:28px;
  padding:52px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:center;
  box-shadow:var(--shadow);
}
.contact-copy h2{ margin-bottom:14px; }
.contact-details{ margin-top:10px; }
.contact-row{ display:flex; align-items:center; gap:14px; padding:14px 0; border-top:1px solid var(--line); }
.contact-row:first-child{ border-top:none; }
.contact-row svg{ width:22px; height:22px; color:var(--maroon); flex-shrink:0; }
.contact-row span{ font-weight:500; color:var(--ink); }
@media(max-width:820px){
  .contact-card{ grid-template-columns:1fr; padding:34px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--green-deep); color:#BFC6B4; margin-top:100px; padding:64px 0 30px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:36px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand img{ height:36px; }
.footer-brand span{ font-family:var(--display); font-size:1.2rem; color:#F6F3E4; }
.footer-tag{ max-width:320px; font-size:0.92rem; margin-top:14px; }
.footer-links{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h4{ color:#F6F3E4; font-family:var(--body); font-size:0.85rem; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; font-size:0.92rem; margin-bottom:10px; color:#BFC6B4; }
.footer-col a:hover{ color:var(--gold-soft); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:0.85rem; flex-wrap:wrap; gap:14px; }

/* ---------- reveal-on-scroll ----------
   Hidden state only applies once JS has confirmed it can run the
   reveal (html.js-ready). No JS / slow JS / blocked script = content
   is visible by default. Never gate visibility on JS alone. */
.js-ready .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.js-ready .reveal.in{ opacity:1; transform:translateY(0); }


/* ============================================================
   ALAGINI NATURALS — PREMIUM UI OVERRIDES
   Cleaner spacing, stronger hierarchy, softer luxury styling
   ============================================================ */

:root{
  --bg:#F8F5EC;
  --bg-alt:#EEE8D7;
  --card:#FFFDF8;
  --ink:#183528;
  --ink-soft:#5C665D;
  --green-deep:#10281B;
  --green-mid:#31583F;
  --gold:#B88935;
  --gold-soft:#D8B866;
  --maroon:#71302E;
  --line:rgba(24,53,40,.11);
  --shadow:0 24px 60px -28px rgba(16,40,27,.28);
}

/* Better page rhythm */
body{
  background:
    radial-gradient(circle at 8% 8%, rgba(216,184,102,.09), transparent 24rem),
    radial-gradient(circle at 92% 30%, rgba(49,88,63,.06), transparent 28rem),
    var(--bg);
}

.wrap{max-width:1240px;padding-left:32px;padding-right:32px}

/* Header */
.site-header{
  background:rgba(248,245,236,.94);
  border-bottom:1px solid rgba(24,53,40,.09);
  box-shadow:0 6px 24px rgba(16,40,27,.04);
}
.site-header .wrap{height:76px}
.brand{gap:14px}
.brand img{height:42px}
.brand span{font-size:1.38rem;letter-spacing:.01em}
@media(min-width:901px){
  .main-nav-desktop ul{gap:32px}
  .main-nav-desktop a{font-size:.9rem;font-weight:600;letter-spacing:.01em}
}
.header-cta{gap:12px}
.header-cta .btn{padding:10px 19px}

/* Buttons */
.btn{
  min-height:48px;
  padding:14px 25px;
  font-size:.92rem;
  box-shadow:none;
}
.btn-primary{
  background:var(--green-deep);
  box-shadow:0 12px 28px -14px rgba(16,40,27,.65);
}
.btn-gold{
  background:var(--gold);
  box-shadow:0 12px 28px -14px rgba(184,137,53,.55);
}
.btn:hover{transform:translateY(-2px)}

/* Hero */
.hero{
  padding:92px 0 70px;
}
.hero .wrap{
  grid-template-columns:1fr 1fr;
  gap:70px;
}
.hero-copy{max-width:600px}
.hero-copy h1{
  font-size:clamp(3rem,5.7vw,5.1rem);
  line-height:.98;
  letter-spacing:-.035em;
  margin-bottom:26px;
}
.hero-copy h1 em{color:var(--maroon)}
.hero-copy p{
  max-width:52ch;
  font-size:1.08rem;
  line-height:1.75;
  color:#626B63;
}
.hero-actions{gap:14px}
.hero-note{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding-left:4px;
}
.hero-visual{min-height:500px}
.hero-blob{
  inset:-12% -10%;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(216,184,102,.55), transparent 54%),
    radial-gradient(ellipse at 72% 72%, rgba(49,88,63,.18), transparent 58%);
}
.hero-frame{
  width:min(430px,82%);
  border-radius:48% 52% 58% 42% / 43% 42% 58% 57%;
  box-shadow:0 34px 80px -34px rgba(16,40,27,.42);
}
.hero-strapline{margin-top:82px}
.hero-strapline h2{color:var(--green-mid)}

/* Section headings */
section{padding:112px 0}
.section-head{margin-bottom:58px}
.section-head p{color:#697269;line-height:1.7}
.eyebrow{font-size:.7rem;letter-spacing:.2em}

/* Intro */
.intro{padding-top:96px;padding-bottom:96px}
.intro p.lead{
  font-size:clamp(1.3rem,2.2vw,1.65rem);
  line-height:1.65;
}

/* Feature cards */
.features{background:linear-gradient(180deg,#EEE8D7 0%,#F2ECDC 100%)}
.feature-grid{gap:20px}
.feature-card{
  min-height:250px;
  padding:34px 30px;
  border-radius:24px;
  background:rgba(255,253,248,.88);
  box-shadow:0 8px 28px rgba(24,53,40,.04);
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 45px -24px rgba(16,40,27,.3);
}
.feature-icon{
  width:54px;height:54px;
  border-radius:17px;
  background:#F1E8D2;
}

/* Ingredients */
.ingredients .wrap{gap:80px}
.ingredients-copy h2{font-size:clamp(2.1rem,3.6vw,3rem)}
.ingredients-copy p{line-height:1.75}
.ingredients-visual{height:470px}
.blob-img{
  box-shadow:0 30px 70px -35px rgba(16,40,27,.42);
}

/* Routine */
.routine{background:#EEE8D7}
.routine-track{gap:32px}
.step-num{
  width:58px;height:58px;
  box-shadow:0 8px 24px -12px rgba(184,137,53,.6);
}
.step h3{font-size:1.18rem}
.step p{line-height:1.7}

/* Dark band */
.matters{
  padding:125px 0;
  background:
    radial-gradient(circle at 20% 20%,rgba(216,184,102,.08),transparent 28rem),
    linear-gradient(135deg,#10281B,#183A29);
}
.matters .lead{font-size:clamp(1.4rem,2.5vw,1.8rem);line-height:1.55}

/* Testimonials */
.rating-badge{
  box-shadow:0 8px 25px rgba(24,53,40,.05);
}
.review-grid{gap:20px}
.review-card{
  min-height:245px;
  padding:34px;
  border-radius:24px;
  box-shadow:0 8px 30px rgba(24,53,40,.04);
}
.review-card p{line-height:1.75}

/* FAQ */
.faq-list{max-width:820px}
.faq-q{
  padding:25px 4px;
  font-size:1.12rem;
}
.faq-a{line-height:1.75}

/* CTA */
.cta-band{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:82px 40px;
  background:
    radial-gradient(circle at 15% 20%,rgba(255,255,255,.18),transparent 20rem),
    linear-gradient(120deg,#B88935,#D8B866);
  box-shadow:0 25px 60px -35px rgba(184,137,53,.5);
}
.cta-band h2{font-size:clamp(2rem,3.8vw,3rem)}
.cta-band p{max-width:600px;line-height:1.7}

/* Contact */
.contact-card{
  padding:58px;
  border-radius:30px;
  box-shadow:0 25px 65px -38px rgba(16,40,27,.32);
}
.contact-copy h2{font-size:clamp(2rem,3.5vw,2.8rem)}
.contact-row{padding:17px 0}

/* Footer */
.site-footer{
  margin-top:112px;
  padding:76px 0 30px;
  background:#10281B;
}
.footer-top{padding-bottom:48px}
.footer-brand span{font-size:1.3rem}
.footer-tag{line-height:1.7;color:#AEB8A9}
.footer-bottom{color:#899589}

/* Mobile */
@media(max-width:900px){
  .site-header .wrap{height:72px}
  .hero{padding:70px 0 55px;min-height:auto}
  .hero .wrap{grid-template-columns:1fr; gap:35px; text-align:center;}
  .hero-copy{margin:auto}
  .hero-copy h1{font-size:clamp(2.8rem,10vw,4.2rem)}
  .hero-visual{min-height:390px; order:-1; margin-bottom:8px;}
}

@media(max-width:600px){
  .wrap{padding-left:20px;padding-right:20px}
  section{padding:78px 0}
  .hero{padding:52px 0 42px}
  .hero-visual{min-height:320px}
  .hero-frame{width:76%}
  .seal{width:92px;height:92px}
  .hero-copy h1{font-size:2.85rem}
  .hero-copy p{font-size:1rem}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{justify-content:center;width:100%}
  .feature-card{min-height:auto;padding:28px 24px}
  .ingredients-visual{height:300px}
  .routine-note{padding:22px}
  .cta-band{margin-left:20px;margin-right:20px;padding:58px 24px;border-radius:25px}
  .contact-card{padding:32px 22px;border-radius:24px}
  .site-footer{margin-top:78px}
}

@media(max-width:380px){
  .hero-copy h1{font-size:2.55rem}
  .brand span{font-size:1.2rem}
}

/* Smooth image presentation */
.hero-frame img,
.blob-img img,
.routine-media img{
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.hero-frame:hover img,
.blob-img:hover img,
.routine-media:hover img{transform:scale(1.025)}

/* Better text selection */
::selection{background:rgba(184,137,53,.22);color:var(--green-deep)}

/* ============================================================
   TYPOGRAPHY — corrected scale (matches supplied spec)
   Desktop → Mobile:
   H1 48–56 → 32–38 · H2 36–44 → 28–32 · H3 28–32 → 22–26
   H4 22–24 → 19–21 · H5 18–20 → 17–18 · P 16–18 → 16, lh 1.6–1.7
   ============================================================ */
h1{ font-size:56px; line-height:1.15; }
h2{ font-size:40px; line-height:1.2; }
h3{ font-size:30px; line-height:1.25; }
h4{ font-size:23px; line-height:1.3; }
h5{ font-size:19px; line-height:1.35; }
p{ font-size:17px; line-height:1.65; }

.hero-copy h1{ font-size:56px; line-height:1.15; }

@media(max-width:640px){
  h1{ font-size:36px; line-height:1.15; }
  h2{ font-size:30px; line-height:1.2; }
  h3{ font-size:24px; line-height:1.25; }
  h4{ font-size:20px; line-height:1.3; }
  h5{ font-size:17.5px; line-height:1.35; }
  p{ font-size:16px; line-height:1.65; }

  .hero-copy h1{ font-size:36px; line-height:1.15; }
}
