/* ============================================================
   BalahuMill — Pure Mustard Oil
   Brand palette derived from the logo:
   brown, sage green, cream + a mustard-gold accent (the oil)
   ============================================================ */

:root {
    --brown-dark: #3A2417;
    --brown: #5C3D24;
    --brown-soft: #7a5638;
    --green: #7E9B41;
    --green-dark: #5F7A2E;
    --gold: #E8A61E;
    --gold-light: #F6C945;
    --gold-deep: #C67C12;
    --cream: #FAF3E0;
    --cream-light: #FDFAF0;
    --cream-dark: #F0E6CC;
    --ink: #2c1d12;
    --muted: #7d6b57;
    --white: #ffffff;

    --shadow-sm: 0 2px 10px rgba(58, 36, 23, 0.06);
    --shadow-md: 0 12px 30px rgba(58, 36, 23, 0.10);
    --shadow-lg: 0 24px 60px rgba(58, 36, 23, 0.16);
    --radius: 18px;
    --radius-lg: 28px;
    --maxw: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--brown-dark); line-height: 1.15; font-weight: 700; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; color: var(--brown); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: 96px 0; }
.text-gold { color: var(--gold-deep); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
    white-space: nowrap;
}
.btn-primary { background: var(--brown-dark); color: var(--cream-light); box-shadow: 0 10px 24px rgba(58,36,23,.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(58,36,23,.34); background: var(--brown); }
.btn-ghost { background: transparent; color: var(--brown-dark); border: 1.5px solid rgba(58,36,23,.25); }
.btn-ghost:hover { background: var(--brown-dark); color: var(--cream-light); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announcement {
    background: var(--brown-dark); color: var(--cream);
    overflow: hidden; white-space: nowrap; font-size: .82rem; letter-spacing: .3px;
}
.announcement-track {
    display: inline-flex; gap: 28px; align-items: center; padding: 9px 0;
    animation: marquee 26s linear infinite;
}
.announcement-track span:nth-child(even) { color: var(--gold-light); }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253, 250, 240, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s, background .3s, border-color .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: rgba(58,36,23,.08); background: rgba(253,250,240,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; color: var(--brown-dark); letter-spacing: .3px; }
.brand-name span { color: var(--green-dark); }

.nav { display: flex; gap: 6px; }
.nav-link {
    padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--brown);
    position: relative; transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--brown-dark); background: rgba(126,155,65,.14); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.cart-btn { position: relative; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: var(--brown-dark); transition: background .2s, transform .2s; }
.cart-btn:hover { background: rgba(126,155,65,.16); transform: translateY(-1px); }
.cart-count {
    position: absolute; top: 2px; right: 2px; min-width: 20px; height: 20px; padding: 0 5px;
    background: var(--gold); color: var(--brown-dark); border-radius: 999px;
    font-size: .72rem; font-weight: 700; display: grid; place-items: center;
    transform: scale(0); transition: transform .3s var(--ease); font-family: 'Poppins', sans-serif;
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-toggle span { width: 22px; height: 2.4px; background: var(--brown-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-bg-blob {
    position: absolute; top: -20%; right: -10%; width: 780px; height: 780px;
    background: radial-gradient(circle at 30% 30%, rgba(246,201,69,.28), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(126,155,65,.20), transparent 62%);
    filter: blur(10px); z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
    background: rgba(126,155,65,.16); color: var(--green-dark); font-weight: 600; font-size: .85rem; margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -.5px; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin: 20px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 26px; margin-top: 44px; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--brown-dark); }
.stat span { font-size: .84rem; color: var(--muted); }
.stat-divider { width: 1px; height: 38px; background: rgba(58,36,23,.14); }

/* Hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero-disc {
    position: absolute; width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, var(--green) 0%, var(--green-dark) 70%);
    box-shadow: inset 0 -20px 60px rgba(0,0,0,.18), var(--shadow-lg);
}
.hero-disc::after {
    content: ""; position: absolute; inset: 20px; border-radius: 50%; border: 2px dashed rgba(255,255,255,.35);
}
.hero-bottle { position: relative; z-index: 2; height: 440px; width: auto; filter: drop-shadow(0 26px 30px rgba(58,36,23,.35)); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.floating-badge {
    position: absolute; z-index: 3; background: var(--white); border-radius: 16px; padding: 12px 16px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; animation: floaty 5s ease-in-out infinite;
}
.floating-badge strong { display: block; font-family: 'Poppins', sans-serif; font-size: .92rem; color: var(--brown-dark); }
.floating-badge span { font-size: .76rem; color: var(--muted); }
.badge-1 { top: 40px; left: 0; animation-delay: .6s; }
.badge-2 { bottom: 46px; right: 0; animation-delay: 1.2s; }
.badge-2 .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .9rem; font-weight: 700; }

/* ---------- Trust ---------- */
.trust { background: var(--brown-dark); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--cream); justify-content: center; }
.trust-item svg { width: 34px; height: 34px; color: var(--gold-light); flex-shrink: 0; }
.trust-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.trust-item span { font-size: .82rem; color: rgba(250,243,224,.66); }

/* ---------- Section head ---------- */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 2.5px; font-size: .78rem; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.04rem; }

/* ---------- Benefits ---------- */
.benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card {
    background: var(--cream-light); border: 1px solid rgba(58,36,23,.07); border-radius: var(--radius);
    padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; background: rgba(126,155,65,.16); margin-bottom: 18px; }
.benefit-card h3 { font-size: 1.24rem; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: .96rem; }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
    position: relative; background: var(--cream-light); border-radius: var(--radius-lg); padding: 26px;
    border: 1px solid rgba(58,36,23,.08); box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-tag { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--brown-dark); font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.product-media {
    position: relative; height: 240px; border-radius: 20px; display: grid; place-items: center;
    background: radial-gradient(circle at 50% 40%, rgba(246,201,69,.25), rgba(126,155,65,.14));
    margin-bottom: 20px; overflow: hidden;
}
.product-media svg { height: 200px; filter: drop-shadow(0 14px 18px rgba(58,36,23,.28)); transition: transform .4s var(--ease); }
.product-card:hover .product-media svg { transform: translateY(-6px) scale(1.03); }
.product-info h3 { font-size: 1.3rem; }
.product-vol { color: var(--green-dark); font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.product-desc { color: var(--muted); font-size: .92rem; min-height: 44px; }
.product-rating { color: var(--gold); font-size: .9rem; margin: 10px 0 6px; }
.product-rating span { color: var(--muted); margin-left: 6px; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 18px; }
.product-price .now { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--brown-dark); }
.product-price .was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.product-price .off { color: var(--green-dark); font-weight: 600; font-size: .85rem; }
.add-btn { margin-top: auto; width: 100%; background: var(--brown-dark); color: var(--cream-light); padding: 13px; border-radius: 12px; font-weight: 600; transition: background .25s, transform .2s; }
.add-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.add-btn.added { background: var(--green); }

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.process-visual { display: grid; place-items: center; }
.ghani-ring {
    width: 260px; height: 260px; border-radius: 50%; display: grid; place-items: center;
    background: radial-gradient(circle at 40% 35%, var(--gold-light), var(--gold-deep));
    box-shadow: var(--shadow-lg), inset 0 -14px 40px rgba(0,0,0,.2); position: relative;
}
.ghani-ring::before { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 2px dashed rgba(126,155,65,.5); }
.ghani-ring svg { width: 120px; height: 120px; color: var(--brown-dark); animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }
.ghani-caption { margin-top: 22px; color: var(--muted); font-style: italic; text-align: center; max-width: 260px; }

.process-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 8px 0 28px; }
.steps { list-style: none; display: grid; gap: 22px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--brown-dark); color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; }
.steps strong { display: block; font-size: 1.1rem; color: var(--brown-dark); margin-bottom: 2px; }
.steps p { color: var(--muted); font-size: .96rem; }

/* ---------- Story ---------- */
.story-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.story-photo { position: relative; }
.story-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.story-photo-frame { position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-lg); border: 2px solid var(--green); z-index: 0; }
.story-content h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 8px 0 22px; }
.story-quote { font-size: 1.16rem; color: var(--brown); font-style: italic; line-height: 1.7; border-left: 3px solid var(--gold); padding-left: 22px; margin-bottom: 24px; }
.story-sign { margin-bottom: 26px; }
.story-sign strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown-dark); display: block; }
.story-sign span { color: var(--green-dark); font-weight: 600; font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial { background: var(--cream-light); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(58,36,23,.07); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { color: var(--brown); font-size: 1.02rem; line-height: 1.7; margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Playfair Display', serif; }
.testimonial figcaption strong { display: block; color: var(--brown-dark); }
.testimonial figcaption span { font-size: .84rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-inner { max-width: 820px; margin-inline: auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--cream-light); border: 1px solid rgba(58,36,23,.09); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 600; font-size: 1.03rem; color: var(--brown-dark); text-align: left; }
.faq-icon { font-size: 1.5rem; color: var(--green-dark); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter { padding: 40px 0 96px; }
.newsletter-inner {
    background: linear-gradient(120deg, var(--brown-dark), var(--brown)); border-radius: var(--radius-lg);
    padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.newsletter-inner::before { content: ""; position: absolute; top: -40%; right: -6%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(246,201,69,.30), transparent 65%); }
.newsletter-text { position: relative; z-index: 1; }
.newsletter-text h2 { color: var(--cream-light); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.newsletter-text p { color: rgba(250,243,224,.78); margin-top: 8px; }
.newsletter-form { position: relative; z-index: 1; display: flex; gap: 10px; background: var(--cream-light); padding: 8px; border-radius: 999px; flex: 1; min-width: 320px; max-width: 480px; }
.newsletter-form input { flex: 1; border: none; background: transparent; padding: 0 18px; font-size: .96rem; color: var(--ink); outline: none; }
.newsletter-form input::placeholder { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: #2a1a10; color: rgba(250,243,224,.72); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(250,243,224,.12); }
.footer-logo { width: 64px; margin-bottom: 16px; background: var(--cream-light); border-radius: 14px; padding: 6px; }
.footer-brand p { max-width: 320px; font-size: .94rem; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(250,243,224,.08); transition: background .25s, transform .25s; }
.socials a svg { width: 18px; height: 18px; color: var(--cream); }
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h4 { color: var(--cream-light); font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: .92rem; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: .86rem; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--gold-light); }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(42,26,16,.5); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 200; backdrop-filter: blur(2px); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--cream-light);
    z-index: 201; transform: translateX(100%); transition: transform .38s var(--ease); display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(42,26,16,.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid rgba(58,36,23,.1); }
.cart-header h3 { font-size: 1.4rem; }
.cart-close { font-size: 1.9rem; color: var(--brown); line-height: 1; width: 40px; height: 40px; border-radius: 50%; transition: background .2s; }
.cart-close:hover { background: rgba(58,36,23,.08); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 40px; }
.cart-line { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(58,36,23,.08); }
.cart-line-media { width: 56px; height: 64px; border-radius: 10px; display: grid; place-items: center; background: radial-gradient(circle, rgba(246,201,69,.28), rgba(126,155,65,.16)); flex-shrink: 0; }
.cart-line-media svg { height: 52px; }
.cart-line-info { flex: 1; }
.cart-line-info strong { display: block; font-family: 'Poppins', sans-serif; font-size: .96rem; color: var(--brown-dark); }
.cart-line-info .vol { font-size: .8rem; color: var(--green-dark); }
.cart-line-price { font-weight: 600; color: var(--brown-dark); font-size: .92rem; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; background: var(--cream-dark); border-radius: 999px; padding: 3px; }
.qty button { width: 26px; height: 26px; border-radius: 50%; background: var(--cream-light); color: var(--brown-dark); font-weight: 700; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-remove { color: var(--muted); font-size: .78rem; margin-top: 6px; text-decoration: underline; }
.cart-remove:hover { color: #b23b2e; }
.cart-footer { padding: 22px 24px; border-top: 1px solid rgba(58,36,23,.1); background: var(--cream); }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.cart-total strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown-dark); }
.cart-note { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }

/* ---------- Toast ---------- */
.toast {
    position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%);
    background: var(--brown-dark); color: var(--cream-light); padding: 14px 24px; border-radius: 999px;
    font-size: .92rem; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 300; transition: transform .4s var(--ease); display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast::before { content: "\2713"; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: .8rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content .pill, .hero-cta, .hero-stats { justify-content: center; }
    .hero-sub { margin-inline: auto; }
    .hero-visual { order: -1; min-height: 400px; }
    .process-inner, .story-inner { grid-template-columns: 1fr; gap: 40px; }
    .story-photo { max-width: 460px; margin-inline: auto; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 68px 0; }
    .nav {
        position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 4px;
        background: var(--cream-light); padding: 18px 24px 26px; box-shadow: var(--shadow-md);
        transform: translateY(-140%); transition: transform .35s var(--ease); z-index: 90;
    }
    .nav.open { transform: translateY(0); }
    .nav-link { padding: 12px 14px; border-radius: 12px; }
    .menu-toggle { display: flex; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .product-grid, .testimonial-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .newsletter-inner { padding: 36px 26px; flex-direction: column; align-items: stretch; text-align: center; }
    .newsletter-form { max-width: none; }
    .hero-stats { gap: 16px; }
    .hero-bottle { height: 360px; }
    .hero-disc { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-stats { flex-wrap: wrap; }
    .newsletter-form { flex-direction: column; background: transparent; padding: 0; }
    .newsletter-form input { background: var(--cream-light); border-radius: 999px; padding: 14px 20px; }
    .brand-name { font-size: 1.2rem; }
    .container { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
