/* ── Variables & Reset ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:#f6f2e9; --surface:rgba(255,255,255,0.82); --surface-s:#fff;
      --border:rgba(34,55,36,0.12); --text:#1f2a22; --muted:#5f6d63;
      --primary:#2f6b47; --primary-d:#214d33; --accent:#d7efe1;
      --accent-s:#b5dbc2; --gold:#d6b970;
      --sh:0 24px 60px rgba(21,31,23,0.08);
      --sh-s:0 14px 32px rgba(21,31,23,0.06);
      --r-lg:28px; --r-md:20px;
      --head:'Cormorant Garamond',serif; --body:'Outfit',sans-serif;
    }
    html { scroll-behavior:smooth; }
    body {
      font-family:var(--body); color:var(--text);
      background:
        radial-gradient(circle at top left,rgba(215,239,225,0.95),transparent 36%),
        radial-gradient(circle at top right,rgba(214,185,112,0.18),transparent 26%),
        linear-gradient(180deg,#fcfaf5 0%,var(--bg) 100%);
      min-height:100vh;
    }
    a { text-decoration:none; color:inherit; }
    img { display:block; max-width:100%; }
    p { color:var(--muted); line-height:1.75; }
    h1,h2,h3,h4 { font-family:var(--head); color:var(--text); line-height:1.05; }
    .container { width:min(1180px,calc(100% - 40px)); margin:0 auto; }

    /* ── Buttons ───────────────────────────────────────── */
    .btn {
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      min-height:52px; padding:0 26px; border-radius:999px;
      border:1px solid transparent; font-family:var(--body);
      font-weight:600; font-size:0.95rem; cursor:pointer;
      transition:transform 0.2s,box-shadow 0.2s,background 0.2s;
    }
    .btn:hover { transform:translateY(-2px); }
    .btn-primary { background:var(--primary); color:#fff; box-shadow:0 14px 30px rgba(47,107,71,0.22); }
    .btn-primary:hover { background:var(--primary-d); }
    .btn-secondary { border-color:var(--border); color:var(--text); background:rgba(255,255,255,0.72); }
    .btn-lg { padding:0 34px; min-height:58px; font-size:1rem; }

    /* ── Eyebrow ───────────────────────────────────────── */
    .eyebrow {
      display:inline-flex; align-items:center; gap:7px;
      padding:7px 14px; border-radius:999px;
      background:rgba(47,107,71,0.09); color:var(--primary);
      font-size:0.75rem; font-weight:700; letter-spacing:0.09em; text-transform:uppercase;
      margin-bottom:18px;
    }

    /* ── Header ────────────────────────────────────────── */
    .site-header {
      position:sticky; top:0; z-index:1000;
      backdrop-filter:blur(18px);
      background:rgba(252,250,245,0.75);
      border-bottom:1px solid transparent;
      transition:all 0.25s;
    }
    .site-header.scrolled { border-bottom-color:var(--border); box-shadow:0 10px 30px rgba(18,30,21,0.05); }
    .header-inner { min-height:80px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
    .site-brand { display:inline-flex; align-items:center; gap:12px; font-weight:700; font-size:0.95rem; letter-spacing:0.04em; text-transform:uppercase; }
    .site-brand img { width:40px; height:40px; border-radius:10px; object-fit:cover; box-shadow:var(--sh-s); }
    .main-nav__links { display:flex; align-items:center; gap:26px; list-style:none; }
    .main-nav__links a { font-size:0.9rem; font-weight:500; position:relative; padding-bottom:4px; }
    .main-nav__links a::after {
      content:""; position:absolute; left:0; bottom:-6px;
      width:100%; height:2px; background:var(--primary);
      transform:scaleX(0); transform-origin:left; transition:transform 0.25s;
    }
    .main-nav__links a:hover::after, .main-nav__links a.active::after { transform:scaleX(1); }
    .nav-cta {
      background:var(--primary); color:#fff !important;
      padding:9px 20px; border-radius:999px; font-weight:600; font-size:0.88rem;
      transition:background 0.2s,transform 0.2s; white-space:nowrap;
    }
    .nav-cta:hover { background:var(--primary-d); transform:translateY(-1px); }
    .nav-cta::after { display:none !important; }
    .mobile-toggle { display:none; border:0; background:transparent; color:var(--text); font-size:1.4rem; cursor:pointer; }

    /* ── HERO ──────────────────────────────────────────── */
    .hero { position:relative; overflow:hidden; padding:80px 0 52px; }
    .hero-orb { position:absolute; border-radius:999px; filter:blur(72px); pointer-events:none; }
    .hero-orb--a { width:420px; height:420px; background:rgba(181,219,194,0.42); top:40px; right:-120px; }
    .hero-orb--b { width:280px; height:280px; background:rgba(214,185,112,0.16); bottom:0; left:-80px; }
    .hero-grid { display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; position:relative; z-index:1; }

    .hero-h1 { font-size:clamp(2.8rem,5.2vw,4.6rem); letter-spacing:-0.03em; margin-bottom:18px; }
    .hero-h1 em { font-style:italic; color:var(--primary); }
    .hero-lead { font-size:1.07rem; max-width:580px; margin-bottom:28px; }
    .hero-pills { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
    .hero-pill {
      display:inline-flex; align-items:center; gap:6px;
      padding:7px 14px; border-radius:999px;
      background:rgba(255,255,255,0.72); border:1px solid var(--border);
      font-size:0.84rem; font-weight:500; color:var(--text);
    }
    .hero-pill i { color:var(--primary); font-size:0.72rem; }
    .hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
    .hero-trust { display:flex; align-items:center; gap:12px; font-size:0.82rem; color:var(--muted); font-weight:500; }
    .trust-avatars { display:flex; }
    .trust-av {
      width:30px; height:30px; border-radius:50%;
      background:linear-gradient(135deg,var(--accent-s),var(--primary));
      border:2px solid #fff; margin-left:-8px;
      display:flex; align-items:center; justify-content:center;
      font-size:0.6rem; color:#fff; font-weight:700;
    }
    .trust-av:first-child { margin-left:0; }

    /* Hero visual */
    .hero-visual { position:relative; min-height:540px; display:flex; align-items:center; justify-content:center; }
    .hero-bg-blob {
      position:absolute; inset:20px; border-radius:44px; z-index:0;
      background:radial-gradient(circle at top,rgba(215,239,225,0.9),rgba(255,255,255,0.5));
      border:1px solid var(--border); box-shadow:var(--sh);
    }
    .hero-card-main {
      width:min(340px,88%); aspect-ratio:4/5; border-radius:36px; overflow:hidden;
      box-shadow:0 32px 64px rgba(21,31,23,0.14);
      border:10px solid rgba(255,255,255,0.88);
      animation:floatY 6s ease-in-out infinite; position:relative; z-index:2;
    }
    .hero-card-main img { width:100%; height:100%; object-fit:cover; }
    .hero-badge {
      position:absolute; z-index:3;
      background:rgba(255,255,255,0.92); border:1px solid rgba(34,55,36,0.08);
      box-shadow:var(--sh-s); border-radius:16px;
      padding:12px 16px; display:flex; align-items:center; gap:10px;
      font-size:0.84rem; font-weight:600; color:var(--text);
    }
    .hero-badge i { color:var(--primary); font-size:0.95rem; }
    .hero-badge--a { top:48px; right:16px; animation:floatX 5s ease-in-out infinite; border-radius:999px; }
    .hero-badge--b { bottom:80px; left:0; animation:floatY 4.6s ease-in-out infinite; }
    .hero-badge--c { bottom:28px; right:24px; animation:floatX 5.8s ease-in-out infinite; border-radius:999px; }

    @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
    @keyframes floatX { 0%,100%{transform:translateX(0)} 50%{transform:translateX(10px)} }

    /* ── Stats ─────────────────────────────────────────── */
    .stats-bar { padding:32px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,0.48); }
    .stats-inner { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
    .stat-num { font-family:var(--head); font-size:2.4rem; font-weight:700; color:var(--primary); display:block; line-height:1; }
    .stat-lbl { font-size:0.82rem; color:var(--muted); margin-top:6px; display:block; }

    /* ── Shared section styles ─────────────────────────── */
    .section { padding:92px 0; }
    .section-head { margin-bottom:40px; }
    .section-head.center { text-align:center; max-width:740px; margin-inline:auto; }
    .section-h2 { font-size:clamp(2.3rem,4.6vw,3.9rem); letter-spacing:-0.02em; margin-bottom:12px; }

    /* ── What is veganism ──────────────────────────────── */
    .intro-shell { display:grid; grid-template-columns:0.92fr 1.08fr; gap:60px; align-items:center; }
    .intro-visual { position:relative; min-height:480px; }
    .intro-blob { position:absolute; inset:30px 20px 20px 0; border-radius:46% 54% 56% 44%; background:linear-gradient(180deg,rgba(215,239,225,0.9),rgba(255,255,255,0.5)); }
    .intro-img-wrap { position:absolute; inset:0 44px 52px 20px; border-radius:28px; overflow:hidden; border:10px solid rgba(255,255,255,0.8); box-shadow:0 18px 38px rgba(21,31,23,0.08); }
    .intro-img-wrap img { width:100%; height:100%; object-fit:cover; }
    .intro-chip { position:absolute; right:0; bottom:0; width:210px; padding:20px 18px; background:rgba(255,255,255,0.92); border:1px solid rgba(34,55,36,0.08); border-radius:24px; box-shadow:var(--sh-s); font-weight:600; font-size:0.9rem; line-height:1.45; }
    .intro-label { display:inline-block; margin-bottom:10px; color:var(--primary); font-size:0.78rem; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; }
    .intro-h2 { font-size:clamp(2rem,3.4vw,3rem); letter-spacing:-0.02em; margin-bottom:14px; }
    .intro-lead { max-width:58ch; margin-bottom:26px; }
    .steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
    .step-card { padding:20px 18px; border-radius:22px; background:rgba(255,255,255,0.64); border:1px solid rgba(34,55,36,0.08); transition:transform 0.3s,box-shadow 0.3s; }
    .step-card:hover { transform:translateY(-5px); box-shadow:var(--sh-s); }
    .step-num { display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:rgba(47,107,71,0.1); color:var(--primary); font-size:0.78rem; font-weight:700; margin-bottom:14px; }
    .step-card h3 { font-size:1.3rem; margin-bottom:8px; }
    .step-card p { font-size:0.9rem; margin:0; }

    /* ── Why vegan ─────────────────────────────────────── */
    .why-section { background:linear-gradient(180deg,rgba(255,255,255,0.36),rgba(255,255,255,0.75)); }
    .reasons-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
    .reason-card { background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); backdrop-filter:blur(10px); border-radius:var(--r-md); padding:26px; transition:transform 0.3s,box-shadow 0.3s; }
    .reason-card:hover { transform:translateY(-6px); box-shadow:var(--sh); }
    .reason-card img { width:100%; height:200px; object-fit:cover; border-radius:16px; margin-bottom:16px; }
    .reason-icon { width:52px; height:52px; border-radius:16px; margin-bottom:14px; background:linear-gradient(135deg,rgba(47,107,71,0.12),rgba(215,239,225,0.7)); color:var(--primary); font-size:1.2rem; display:grid; place-items:center; }
    .reason-card h3 { font-size:1.9rem; margin-bottom:8px; }
    .reason-card p { margin-bottom:14px; }
    .text-link { color:var(--primary); font-weight:600; font-size:0.9rem; }
    .text-link:hover { color:var(--primary-d); }

    /* ── Meal Planner feature ──────────────────────────── */
    .planner-section {
      padding:108px 0 100px; position:relative; overflow:hidden;
      background:
        radial-gradient(circle at 18% 18%,rgba(214,185,112,0.12),transparent 20%),
        radial-gradient(circle at 82% 14%,rgba(215,239,225,0.85),transparent 22%),
        linear-gradient(180deg,#fdfbf6 0%,#f2f6ef 100%);
      border-top:1px solid rgba(34,55,36,0.06);
      border-bottom:1px solid rgba(34,55,36,0.06);
    }
    .planner-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
    .planner-label { display:inline-block; margin-bottom:10px; color:var(--primary); font-size:0.78rem; font-weight:700; letter-spacing:0.09em; text-transform:uppercase; }
    .planner-h2 { font-size:clamp(2.2rem,3.8vw,3.4rem); letter-spacing:-0.02em; margin-bottom:14px; }
    .planner-lead { max-width:52ch; margin-bottom:28px; }
    .planner-features { display:grid; gap:14px; margin-bottom:30px; }
    .pf { display:flex; gap:12px; align-items:flex-start; padding:14px 16px; border-radius:16px; background:rgba(255,255,255,0.64); border:1px solid rgba(34,55,36,0.07); }
    .pf-icon { width:36px; height:36px; border-radius:10px; flex-shrink:0; background:rgba(47,107,71,0.1); color:var(--primary); display:grid; place-items:center; font-size:0.85rem; }
    .pf-text strong { display:block; font-size:0.92rem; color:var(--text); margin-bottom:2px; }
    .pf-text span { font-size:0.82rem; color:var(--muted); }
    .planner-actions { display:flex; gap:14px; flex-wrap:wrap; }

    /* Planner mock UI */
    .planner-preview { background:rgba(255,255,255,0.84); border:1px solid rgba(34,55,36,0.09); border-radius:32px; padding:28px; box-shadow:var(--sh); }
    .preview-header { display:flex; align-items:center; gap:8px; margin-bottom:20px; }
    .preview-dot { width:10px; height:10px; border-radius:50%; }
    .preview-dot--r{background:#ff6b6b} .preview-dot--y{background:#ffd93d} .preview-dot--g{background:#6bcb77}
    .preview-title { font-size:0.85rem; font-weight:600; color:var(--muted); margin-left:6px; }
    .preview-week { display:grid; gap:9px; }
    .preview-day { display:flex; align-items:center; gap:14px; padding:11px 14px; border-radius:13px; background:rgba(215,239,225,0.35); border:1px solid rgba(47,107,71,0.08); }
    .preview-day-label { font-size:0.7rem; font-weight:700; color:var(--primary); text-transform:uppercase; letter-spacing:0.06em; min-width:26px; }
    .preview-meal { font-size:0.87rem; font-weight:500; flex:1; }
    .preview-time { font-size:0.74rem; color:var(--muted); }
    .preview-footer { margin-top:16px; padding-top:14px; border-top:1px solid rgba(34,55,36,0.08); display:flex; align-items:center; justify-content:space-between; }
    .preview-footer span { font-size:0.8rem; color:var(--muted); }
    .preview-cta { background:var(--primary); color:#fff; padding:8px 18px; border-radius:999px; font-size:0.82rem; font-weight:600; transition:background 0.2s; }
    .preview-cta:hover { background:var(--primary-d); }

    /* ── Lifestyle beyond food ─────────────────────────── */
    .lifestyle-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; }
    .ls-card { background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); border-radius:var(--r-md); padding:28px; transition:transform 0.3s,box-shadow 0.3s; display:flex; flex-direction:column; }
    .ls-card:hover { transform:translateY(-6px); box-shadow:var(--sh); }
    .ls-card img { width:100%; height:170px; object-fit:cover; border-radius:16px; margin-bottom:18px; }
    .ls-tag { display:inline-block; font-size:0.72rem; font-weight:600; padding:3px 10px; border-radius:999px; margin-bottom:12px; background:rgba(47,107,71,0.09); color:var(--primary); }
    .ls-card h3 { font-size:1.7rem; margin-bottom:8px; }
    .ls-card p { font-size:0.88rem; margin-bottom:16px; flex:1; }

    /* ── Pathway ───────────────────────────────────────── */
    .pathway-section {
      padding:108px 0 100px; position:relative; overflow:hidden;
      background:linear-gradient(180deg,#fdfbf6 0%,#f2f6ef 100%);
      border-top:1px solid rgba(34,55,36,0.06);
    }
    .pathway-header { max-width:820px; margin:0 auto 56px; text-align:center; }
    .pathway-header h2 { font-size:clamp(2.4rem,5vw,4.1rem); margin-bottom:16px; }
    .pathway-header p { max-width:600px; margin:0 auto; }
    .pathway-garden { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:start; max-width:1080px; margin:0 auto; }
    .pathway-leaf { padding:30px 26px 28px; border-radius:38px; background:linear-gradient(180deg,rgba(255,255,255,0.84),rgba(255,255,255,0.68)); border:1px solid rgba(34,55,36,0.08); box-shadow:0 20px 40px rgba(21,31,23,0.06); backdrop-filter:blur(10px); position:relative; transition:transform 0.3s,box-shadow 0.3s; }
    .pathway-leaf:hover { transform:translateY(-6px); box-shadow:var(--sh); }
    .pathway-leaf--one { border-radius:44px 34px 42px 32px; margin-top:36px; }
    .pathway-leaf--two { border-radius:34px 44px 34px 44px; }
    .pathway-leaf--three { border-radius:42px 32px 44px 34px; margin-top:52px; }
    .leaf-num { display:inline-flex; align-items:center; justify-content:center; height:46px; padding:0 14px; margin-bottom:18px; border-radius:999px; background:rgba(47,107,71,0.08); color:var(--primary); font-size:0.84rem; font-weight:700; letter-spacing:0.04em; }
    .leaf-icon-wrap { width:68px; height:68px; border-radius:22px; margin-bottom:18px; background:rgba(255,255,255,0.72); border:1px solid rgba(34,55,36,0.08); display:grid; place-items:center; color:var(--primary); font-size:1.6rem; }
    .pathway-leaf h3 { font-size:1.7rem; margin-bottom:10px; }
    .pathway-leaf p { margin:0 0 14px; font-size:0.9rem; }
    .leaf-link { color:var(--primary); font-weight:600; font-size:0.88rem; display:inline-flex; align-items:center; gap:5px; }
    .leaf-link:hover { color:var(--primary-d); }

    /* ── Internal links hub ────────────────────────────── */
    .links-section { padding:72px 0; background:rgba(255,255,255,0.48); border-top:1px solid var(--border); }
    .links-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:36px; }
    .link-card {
      padding:22px 20px; border-radius:22px;
      background:var(--surface); border:1px solid var(--border);
      box-shadow:var(--sh-s); transition:transform 0.3s,box-shadow 0.3s;
      display:flex; flex-direction:column; gap:10px;
    }
    .link-card:hover { transform:translateY(-5px); box-shadow:var(--sh); }
    .link-card__icon { width:44px; height:44px; border-radius:14px; background:rgba(47,107,71,0.1); color:var(--primary); display:grid; place-items:center; font-size:1rem; }
    .link-card__title { font-family:var(--head); font-size:1.4rem; color:var(--text); }
    .link-card__desc { font-size:0.83rem; color:var(--muted); line-height:1.55; flex:1; }
    .link-card__arrow { color:var(--primary); font-size:0.82rem; font-weight:600; display:inline-flex; align-items:center; gap:5px; margin-top:4px; }
    .link-card--accent { background:linear-gradient(135deg,rgba(47,107,71,0.07),rgba(215,239,225,0.4)); }

    /* ── CTA band ──────────────────────────────────────── */
    .cta-section { padding:60px 0; }
    .cta-inner {
      display:flex; align-items:center; justify-content:space-between; gap:32px;
      padding:38px 42px; border-radius:32px;
      background:linear-gradient(135deg,#1e4530 0%,#2f6b47 55%,#4d8762 100%);
      box-shadow:var(--sh);
    }
    .cta-inner h2, .cta-inner p { color:#fff; }
    .cta-inner h2 { font-size:clamp(1.8rem,3vw,2.8rem); margin-bottom:8px; }
    .cta-inner .eyebrow { background:rgba(255,255,255,0.12); color:#fff; margin-bottom:14px; }
    .cta-btn { background:#fff; color:var(--primary); border:none; padding:16px 32px; border-radius:999px; font-weight:700; font-size:1rem; white-space:nowrap; cursor:pointer; transition:transform 0.2s,box-shadow 0.2s; display:inline-flex; align-items:center; gap:8px; }
    .cta-btn:hover { transform:translateY(-2px); box-shadow:0 14px 28px rgba(0,0,0,0.2); }

    /* ── FAQ ───────────────────────────────────────────── */
    .faq-list { max-width:860px; margin:40px auto 0; display:grid; gap:14px; }
    .faq-item { background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); border-radius:var(--r-md); overflow:hidden; }
    .faq-q { width:100%; display:flex; justify-content:space-between; gap:20px; align-items:center; padding:22px 26px; border:0; background:transparent; color:var(--text); font-family:var(--body); font-weight:600; font-size:1rem; cursor:pointer; text-align:left; }
    .faq-q i { color:var(--primary); transition:transform 0.2s; flex-shrink:0; }
    .faq-item.open .faq-q i { transform:rotate(45deg); }
    .faq-body { max-height:0; overflow:hidden; transition:max-height 0.28s ease; }
    .faq-body p { padding:0 26px 22px; }
    .faq-body a { color:var(--primary); font-weight:600; }

    /* ── Footer ────────────────────────────────────────── */
    .site-footer {
      padding:56px 0 24px;
      border-top:1px solid var(--border);
      background:radial-gradient(circle at top left,rgba(215,239,225,0.45),transparent 30%),linear-gradient(180deg,rgba(255,255,255,0.92),rgba(248,244,236,0.96));
    }
    .footer-shell { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:40px; align-items:start; }
    .footer-brand-logo { display:inline-flex; align-items:center; gap:12px; margin-bottom:14px; font-family:var(--head); font-size:1.5rem; font-weight:700; }
    .footer-brand-logo img { width:44px; height:44px; border-radius:12px; object-fit:cover; }
    .footer-brand p { color:var(--muted); line-height:1.7; max-width:30ch; font-size:0.9rem; margin-top:10px; }
    .footer-col h4 { font-family:var(--head); font-size:1.1rem; margin-bottom:14px; }
    .footer-links { list-style:none; display:grid; gap:9px; }
    .footer-links a { font-size:0.88rem; color:var(--muted); display:flex; align-items:center; gap:7px; transition:color 0.2s; }
    .footer-links a:hover { color:var(--primary); }
    .footer-links a i { font-size:0.7rem; color:var(--primary); }
    .footer-email { display:inline-flex; align-items:center; gap:10px; padding:10px 18px; border-radius:999px; background:rgba(47,107,71,0.08); color:var(--primary); font-weight:600; font-size:0.88rem; margin-bottom:10px; }
    .footer-note { font-size:0.85rem; color:var(--muted); line-height:1.6; }
    .footer-bottom { margin-top:30px; padding-top:18px; border-top:1px solid rgba(34,55,36,0.1); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
    .footer-bottom p { font-size:0.85rem; color:var(--muted); }
    .footer-bottom-links { display:flex; gap:20px; }
    .footer-bottom-links a { font-size:0.82rem; color:var(--muted); }
    .footer-bottom-links a:hover { color:var(--primary); }

    .ref-notice { display:flex; gap:10px; align-items:flex-start; margin:16px auto 10px; max-width:860px; padding:13px 18px; border-radius:14px; background:rgba(47,107,71,0.07); border:1px solid rgba(47,107,71,0.15); font-size:0.87rem; color:var(--text); line-height:1.6; }
    .ref-notice i { color:var(--primary); flex-shrink:0; margin-top:2px; }
    .ref-updated { text-align:center; font-size:0.82rem; color:var(--muted); margin-bottom:8px; display:flex; align-items:center; justify-content:center; gap:7px; }
    .ref-updated i { color:var(--primary); font-size:0.75rem; }
    /* ── References section ─────────────────────────────── */
    .ref-section { background:linear-gradient(180deg,rgba(255,255,255,0.5),rgba(255,255,255,0.85)); border-top:1px solid var(--border); }
    .ref-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:48px; }
    .ref-col__title {
      font-family:var(--head); font-size:1.4rem; margin-bottom:20px;
      display:flex; align-items:center; gap:10px; color:var(--primary);
    }
    .ref-col__title i { font-size:1rem; }
    .ref-list-inline { list-style:none; display:grid; gap:18px; }
    .ref-list-inline li {
      padding:14px 16px; border-radius:14px;
      background:rgba(255,255,255,0.7); border:1px solid var(--border);
      font-size:0.85rem; line-height:1.65; color:var(--text);
    }
    .ref-list-inline li strong { display:block; margin-bottom:3px; color:var(--text); }
    .ref-list-inline li em { color:var(--muted); font-size:0.82rem; }
    .ref-link {
      display:inline-flex; align-items:center; gap:5px;
      color:var(--primary); font-weight:600; font-size:0.82rem; margin-top:4px;
    }
    .ref-link:hover { color:var(--primary-d); }
    .ref-link i { font-size:0.65rem; }
    @media(max-width:768px) { .ref-grid { grid-template-columns:1fr; } }

    /* ── Protein section ───────────────────────────────── */
    .protein-section { background:linear-gradient(180deg,rgba(255,255,255,0.5),rgba(255,255,255,0.85)); }
    .protein-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; margin-top:48px; }
    .protein-table { border-radius:18px; overflow:hidden; border:1px solid var(--border); }
    .pt-row { display:grid; grid-template-columns:2fr 1.4fr 0.8fr; gap:0; padding:11px 16px; border-bottom:1px solid rgba(34,55,36,0.07); font-size:0.85rem; }
    .pt-row:last-child { border-bottom:none; }
    .pt-row--head { background:var(--primary); color:#fff; font-weight:600; font-size:0.78rem; letter-spacing:0.03em; }
    .pt-row:not(.pt-row--head):nth-child(odd) { background:rgba(215,239,225,0.25); }
    .pt-row:not(.pt-row--head):nth-child(even) { background:rgba(255,255,255,0.6); }
    .pt-yes { color:var(--primary); font-weight:600; }
    .pt-some { color:#d6b970; font-weight:600; }
    .protein-content { display:grid; gap:16px; }
    .pc-card { padding:20px 18px; border-radius:20px; background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); transition:transform 0.3s,box-shadow 0.3s; }
    .pc-card:hover { transform:translateY(-4px); box-shadow:var(--sh); }
    .pc-icon { width:40px; height:40px; border-radius:12px; background:rgba(47,107,71,0.1); color:var(--primary); display:grid; place-items:center; font-size:0.9rem; margin-bottom:10px; }
    .pc-card h3 { font-size:1.25rem; margin-bottom:8px; }
    .pc-card p { font-size:0.88rem; margin:0; }

    /* Responsive protein */
    @media(max-width:1024px) { .protein-grid { grid-template-columns:1fr; } }

    /* ── India section ─────────────────────────────────── */
    .india-section { background:linear-gradient(180deg,rgba(255,255,255,0.36),rgba(255,255,255,0.75)); }
    .india-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; margin-top:48px; }
    .india-foods__title { font-family:var(--head); font-size:1.6rem; margin-bottom:14px; }
    .india-tags { display:flex; flex-wrap:wrap; gap:10px; }
    .india-tag {
      display:inline-flex; align-items:center; gap:7px;
      padding:8px 14px; border-radius:999px;
      background:rgba(47,107,71,0.08); border:1px solid rgba(47,107,71,0.12);
      color:var(--text); font-size:0.84rem; font-weight:500;
    }
    .india-tag i { color:var(--primary); font-size:0.7rem; }
    .india-content { display:grid; gap:18px; }
    .india-card { padding:22px 20px; border-radius:22px; background:rgba(255,255,255,0.72); border:1px solid var(--border); transition:transform 0.3s,box-shadow 0.3s; }
    .india-card:hover { transform:translateY(-4px); box-shadow:var(--sh-s); }
    .india-card__icon { width:44px; height:44px; border-radius:14px; background:rgba(47,107,71,0.1); color:var(--primary); display:grid; place-items:center; font-size:1rem; margin-bottom:12px; }
    .india-card h3 { font-size:1.3rem; margin-bottom:8px; }
    .india-card p { font-size:0.88rem; margin:0; }

    /* ── Stats authority bar ───────────────────────────── */
    .stats-authority { padding:42px 0; background:linear-gradient(135deg,#1e4530,#2f6b47); }
    .stats-authority__inner { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; gap:0; align-items:center; }
    .sa-item { text-align:center; padding:16px 24px; }
    .sa-num { display:block; font-family:var(--head); font-size:2rem; font-weight:700; color:#fff; line-height:1; margin-bottom:6px; }
    .sa-lbl { display:block; font-size:0.78rem; color:rgba(255,255,255,0.8); line-height:1.5; }
    .sa-src { display:block; font-size:0.7rem; color:rgba(255,255,255,0.55); margin-top:3px; }
    .sa-ext-link { color:rgba(255,255,255,0.7); text-decoration:underline; }
    .sa-ext-link:hover { color:#fff; }
    .sa-divider { width:1px; height:60px; background:rgba(255,255,255,0.2); }

    /* ── Beginner guide section ────────────────────────── */
    .beginner-section { background:linear-gradient(180deg,rgba(255,255,255,0.36),rgba(255,255,255,0.75)); }
    .beginner-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:40px; }
    .beg-card { padding:28px 26px; border-radius:24px; background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); transition:transform 0.3s,box-shadow 0.3s; position:relative; }
    .beg-card:hover { transform:translateY(-5px); box-shadow:var(--sh); }
    .beg-card__num { font-family:var(--head); font-size:3rem; font-weight:700; color:rgba(47,107,71,0.12); line-height:1; margin-bottom:12px; }
    .beg-card h3 { font-size:1.45rem; margin-bottom:10px; }
    .beg-card p { font-size:0.9rem; margin-bottom:12px; }

    /* ── Author section ────────────────────────────────── */
    .author-section {
      padding:92px 0;
      background:radial-gradient(circle at top right,rgba(215,239,225,0.6),transparent 40%),
                 linear-gradient(180deg,rgba(255,255,255,0.9),rgba(248,244,236,0.95));
      border-top:1px solid var(--border); border-bottom:1px solid var(--border);
    }
    .author-inner { display:grid; grid-template-columns:0.75fr 1.25fr; gap:64px; align-items:start; }
    .author-photo-wrap {
      position:relative; border-radius:32px; overflow:visible;
    }
    .author-photo {
      width:100%; aspect-ratio:4/5; object-fit:cover;
      border-radius:28px;
      box-shadow:0 28px 56px rgba(21,31,23,0.13);
      border:8px solid rgba(255,255,255,0.9);
      display:block;
    }
    .author-photo-badge {
      position:absolute; bottom:-16px; left:50%; transform:translateX(-50%);
      white-space:nowrap;
      background:var(--primary); color:#fff;
      padding:10px 20px; border-radius:999px;
      font-size:0.82rem; font-weight:600;
      display:flex; align-items:center; gap:8px;
      box-shadow:0 8px 24px rgba(47,107,71,0.3);
    }
    .author-bio { padding-top:8px; }
    .author-h2 { font-size:clamp(2rem,3.4vw,3rem); letter-spacing:-0.02em; margin-bottom:10px; }
    .author-lead { font-size:1.05rem; font-weight:600; color:var(--text); margin-bottom:16px; }
    .author-bio p { margin-bottom:14px; }
    .author-credentials { display:grid; gap:12px; margin:24px 0; }
    .ac-item {
      display:flex; align-items:flex-start; gap:12px;
      padding:13px 16px; border-radius:14px;
      background:rgba(255,255,255,0.7); border:1px solid var(--border);
      font-size:0.88rem; color:var(--text); line-height:1.55;
    }
    .ac-item i { color:var(--primary); margin-top:2px; flex-shrink:0; }
    .author-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }

    /* ── E-E-A-T trust (keep for responsive) ──────────── */
    .resources-section { }
    .resources-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
    .res-card { padding:24px 22px; border-radius:22px; background:var(--surface); border:1px solid var(--border); box-shadow:var(--sh-s); transition:transform 0.3s,box-shadow 0.3s; }
    .res-card:hover { transform:translateY(-5px); box-shadow:var(--sh); }
    .res-icon { width:48px; height:48px; border-radius:14px; background:rgba(47,107,71,0.1); color:var(--primary); display:grid; place-items:center; font-size:1.1rem; margin-bottom:14px; }
    .res-card h3 { font-size:1.3rem; margin-bottom:12px; }
    .res-list { list-style:none; display:grid; gap:7px; margin-bottom:16px; }
    .res-list li { font-size:0.83rem; color:var(--muted); padding-left:14px; position:relative; line-height:1.5; }
    .res-list li::before { content:"·"; position:absolute; left:0; color:var(--primary); font-weight:700; }
    .res-list a { color:var(--primary); font-weight:500; }
    .res-list a:hover { color:var(--primary-d); }

    /* Responsive for new sections */
    @media(max-width:1024px) {
      .india-grid,.author-inner,.resources-grid,.beginner-grid,.protein-grid { grid-template-columns:1fr; }
      .author-photo { aspect-ratio:3/2; max-height:340px; }
      .author-photo-badge { position:static; transform:none; margin-top:16px; justify-content:center; }
      .stats-authority__inner { grid-template-columns:1fr 1fr; }
      .sa-divider { display:none; }
      .resources-grid { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:768px) {
      .resources-grid,.beginner-grid { grid-template-columns:1fr; }
      .stats-authority__inner { grid-template-columns:1fr 1fr; }
      .author-actions { flex-direction:column; }
    }

    /* ── Reveal ────────────────────────────────────────── */
    .reveal { opacity:1; transition:opacity 0.8s ease,transform 0.8s ease; }
    .js-on .reveal { opacity:0; }
    .js-on .rv-left { transform:translateX(-50px); }
    .js-on .rv-right { transform:translateX(50px); }
    .js-on .rv-up { transform:translateY(50px); }
    .js-on .reveal.visible { opacity:1 !important; transform:none !important; }

    /* ── Responsive ────────────────────────────────────── */
    @media(max-width:1024px) {
      .hero-grid,.intro-shell,.planner-grid,.reasons-grid,.lifestyle-grid,.pathway-garden,.footer-shell { grid-template-columns:1fr; }
      .stats-inner,.links-grid { grid-template-columns:repeat(2,1fr); }
      .pathway-leaf--one,.pathway-leaf--two,.pathway-leaf--three { margin-top:0; }
      .cta-inner { flex-direction:column; align-items:flex-start; }
      .intro-visual { min-height:380px; }
    }
    @media(max-width:768px) {
      .mobile-toggle { display:block; }
      .main-nav { display:none; position:absolute; top:calc(100% + 10px); left:16px; right:16px; background:rgba(255,255,255,0.97); border:1px solid var(--border); border-radius:20px; box-shadow:var(--sh-s); padding:18px; }
      .main-nav.open { display:block; }
      .main-nav__links { flex-direction:column; gap:16px; }
      .lifestyle-grid,.steps-grid { grid-template-columns:1fr; }
      .links-grid { grid-template-columns:1fr 1fr; }
      .cta-inner { padding:26px 22px; }
      .hero-actions,.planner-actions { flex-direction:column; }
      .btn { width:100%; }
      .hero { padding:52px 0 36px; }
    }
    @media(max-width:480px) {
      .container { width:min(100% - 24px,1180px); }
      .links-grid { grid-template-columns:1fr; }
      .footer-bottom { flex-direction:column; }
    }
