/* =====================================================================
   Maxen Dadi Mumma — Ayurvedic E-commerce
   Hand-written CSS. Palette pulled from the brand logo:
   herbal green, terracotta, muted gold on warm cream/ivory.
   Organised: 1) Tokens  2) Base  3) Layout  4) Header/Nav
   5) Buttons  6) Hero  7) Sections & cards  8) Product page
   9) Forms  10) Footer  11) Utilities  12) Responsive
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand colours */
  --green-900: #1f3d2b;
  --green-700: #2f5d3a;
  --green-600: #3a7048;
  --green-100: #e7efe5;
  --terracotta: #a4503a;
  --terracotta-dark: #7d3a29;
  --ochre: #c0883a;
  --gold: #b88a3e;
  --cream: #fbf6ec;
  --ivory: #fffdf8;
  --sand: #f3ead8;
  --ink: #2c2a26;
  --muted: #6b6457;
  --line: #e7ddc9;

  /* Type */
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Mukta", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing / radius / shadow */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 42, 38, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 61, 43, 0.16);
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- 2. Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terracotta); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; color: var(--green-900); letter-spacing: .2px; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p { color: var(--ink); }
ul { padding-left: 1.1rem; }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tint { background: var(--ivory); }
.section--green { background: var(--green-900); color: #f4efe2; }
.section--sand { background: var(--sand); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(32px, 5vw, 54px); }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-sans); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; font-size: .72rem;
  color: var(--terracotta); margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--ochre); }
.section--green h2, .section--green h3 { color: #fff; }
.leaf-divider { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--green-600); margin: 8px auto 0; }
.leaf-divider::before, .leaf-divider::after { content: ""; height: 1px; width: 54px; background: var(--line); }
.section--green .leaf-divider::before, .section--green .leaf-divider::after { background: rgba(255,255,255,.25); }

/* ---------- 4. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: var(--green-800, var(--green-900)); letter-spacing: .5px; }
.brand .brand-sub { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; padding: 0; margin: 0; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--terracotta); transition: width .25s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--terracotta); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--green-100); color: var(--green-900); }
.cart-btn:hover { background: var(--green-600); color: #fff; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--terracotta); color: #fff; font-size: .68rem; font-weight: 700; min-width: 19px; height: 19px; border-radius: var(--radius-pill); display: grid; place-items: center; padding: 0 5px; font-family: var(--font-sans); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: .98rem;
  padding: 13px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-900); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--green-900); border-color: var(--green-700); }
.btn-secondary:hover { background: var(--green-700); color: #fff; }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: #fff; color: var(--green-900); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 80% 0%, #fff7e9 0%, var(--cream) 45%, #f1e7d2 100%); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 460px; height: 460px; right: -120px; top: -120px; background: radial-gradient(circle, rgba(58,112,72,.12), transparent 70%); }
.hero::after { width: 360px; height: 360px; left: -120px; bottom: -120px; background: radial-gradient(circle, rgba(164,80,58,.10), transparent 70%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: clamp(40px, 7vw, 86px) 0; position: relative; z-index: 1; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 .accent { color: var(--terracotta); font-style: italic; }
.hero-lede { font-size: 1.18rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; padding: 0; margin: 0; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--green-900); }
.hero-trust svg { color: var(--green-600); flex-shrink: 0; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-emblem { width: min(100%, 460px); border-radius: var(--radius-lg); background: var(--ivory); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-badge { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .9rem; color: var(--green-900); border: 1px solid var(--line); }
.hero-badge .num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--terracotta); }
.hero-badge--tl { top: 18px; left: -8px; }
.hero-badge--br { bottom: 22px; right: -8px; }

/* ---------- 7. Sections & cards ---------- */
/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 26px; }
.product-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
/* Image absolutely fills the definite-size box; object-fit keeps it whole
   (never cropped, never stretched). Avoids grid/flex %-height overflow bugs. */
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-tag { position: absolute; z-index: 2; top: 12px; left: 12px; background: var(--green-700); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; box-shadow: 0 2px 6px rgba(31,61,43,.25); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.32rem; margin-bottom: 4px; }
.product-body .product-sub { font-size: .82rem; color: var(--terracotta); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.product-body .product-desc { color: var(--muted); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--green-900); }
.price .unit { font-size: .8rem; color: var(--muted); font-family: var(--font-sans); font-weight: 600; }

/* Feature / why-us cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ico { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: .96rem; }

/* Story teaser */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.story-art { border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #f4efe2; padding: clamp(30px, 5vw, 54px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.story-art::after { content: "\201C"; position: absolute; right: 18px; bottom: -40px; font-family: var(--font-serif); font-size: 16rem; color: rgba(255,255,255,.07); line-height: 1; }
.story-art h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); font-style: italic; margin-bottom: 16px; position: relative; }
.story-art p { color: rgba(244,239,226,.85); position: relative; }
.story-copy .eyebrow { color: var(--terracotta); }

/* Newsletter */
.newsletter { background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark)); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center; box-shadow: var(--shadow-md); }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.88); max-width: 520px; margin: 10px auto 26px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: var(--radius-pill); border: 0; font-size: 1rem; font-family: var(--font-sans); }
.newsletter-note { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 14px; }

/* Page header (sub pages) */
.page-hero { background: radial-gradient(120% 120% at 50% 0%, #fff7e9, var(--sand)); text-align: center; padding: clamp(44px, 7vw, 80px) 0 clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--line); }
.page-hero p { color: var(--muted); max-width: 620px; margin: 14px auto 0; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--terracotta); }

/* ---------- 8. Product detail page ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-media { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); aspect-ratio: 1 / 1; overflow: hidden; box-shadow: var(--shadow-sm); }
.pdp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.pdp-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill { background: var(--green-100); color: var(--green-900); font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 7px; }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 6px; }
.pdp-sub { color: var(--terracotta); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; margin-bottom: 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.pdp-price .price { font-size: 2.1rem; }
.pdp-price .size { color: var(--muted); font-weight: 600; }
.pdp-lede { font-size: 1.1rem; color: var(--ink); margin-bottom: 24px; }
.pdp-buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; background: #fff; }
.qty button { width: 44px; height: 48px; border: 0; background: transparent; font-size: 1.3rem; cursor: pointer; color: var(--green-900); }
.qty button:hover { background: var(--green-100); }
.qty input { width: 46px; height: 48px; border: 0; text-align: center; font-size: 1.05rem; font-weight: 700; font-family: var(--font-sans); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-note { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.pdp-section { margin-top: 38px; padding-top: 32px; border-top: 1px solid var(--line); }
.pdp-section h2 { font-size: 1.55rem; margin-bottom: 16px; }
.benefit-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.benefit-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; }
.benefit-list svg { color: var(--green-600); flex-shrink: 0; margin-top: 3px; }
.ing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.ing-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.ing-card .ing-name { font-family: var(--font-serif); font-weight: 700; color: var(--green-900); font-size: 1.12rem; }
.ing-card .ing-note { font-size: .86rem; color: var(--muted); margin-top: 3px; }
.ing-all { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.ing-all .pill { background: var(--sand); }
.howto { background: var(--green-100); border-radius: var(--radius-lg); padding: 24px 26px; display: flex; gap: 16px; align-items: flex-start; }
.howto svg { color: var(--green-700); flex-shrink: 0; }
.disclaimer { font-size: .82rem; color: var(--muted); background: var(--sand); border-radius: var(--radius); padding: 14px 18px; margin-top: 24px; border-left: 3px solid var(--ochre); }

/* ---------- 9. Forms (contact / newsletter) ---------- */
.form-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--green-900); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 1rem; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(58,112,72,.15); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 50px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .info-ico { width: 46px; height: 46px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.info-item h4 { font-family: var(--font-sans); font-size: .95rem; color: var(--green-900); margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--muted); font-size: .96rem; }
.form-success { display: none; background: var(--green-100); color: var(--green-900); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 18px; font-weight: 600; border-left: 3px solid var(--green-600); }
.form-success.show { display: block; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600; color: var(--green-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--terracotta); }
.faq-q .chev { transition: transform .25s ease; flex-shrink: 0; color: var(--terracotta); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* About story */
.about-narrative { max-width: 760px; margin: 0 auto; }
.about-narrative p { margin-bottom: 18px; font-size: 1.08rem; }
.about-narrative h3 { margin: 32px 0 12px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.value-stat { text-align: center; }
.value-stat .num { font-family: var(--font-serif); font-size: 2.6rem; color: var(--terracotta); font-weight: 700; }
.value-stat .lbl { color: var(--muted); font-weight: 600; }

/* ---------- 10. Footer ---------- */
.site-footer { background: var(--green-900); color: #d8e0d2; padding: clamp(46px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 50px; margin-bottom: 14px; background: #fff; border-radius: 10px; padding: 6px 10px; }
.footer-brand p { color: rgba(216,224,210,.75); font-size: .95rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(216,224,210,.8); font-size: .95rem; }
.footer-col a:hover { color: var(--ochre); }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; color: rgba(216,224,210,.8); font-size: .95rem; margin-bottom: 10px; }
.footer-contact svg { color: var(--ochre); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #d8e0d2; }
.socials a:hover { background: var(--ochre); color: var(--green-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(216,224,210,.6); }

/* ---------- 11. Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--green-900); color: #fff; padding: 13px 24px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); font-weight: 600; z-index: 200; transition: transform .35s cubic-bezier(.2,.8,.2,1); display: flex; align-items: center; gap: 9px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-900); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 300; }
.skip-link:focus { left: 0; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line); padding: 8px 22px 22px;
    transform: translateY(-150%); transition: transform .3s ease; box-shadow: var(--shadow-md); align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 15px 4px; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .benefit-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .btn { width: 100%; }
  .hero-cta .btn { width: auto; }
  .newsletter-form .btn { width: 100%; }
  .brand .brand-sub { display: none; }
}
@media (max-width: 380px) {
  .hero-cta .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
