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

:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-on-dark: #f5f0e8;
  --muted: #6b6560;
  --muted-dark: #8a8070;
  --green: #4a7c4e;
  --green-light: #7aad7e;
  --green-deep: #2d5a35;
  --cream-dark: #c8b99a;
  --border: #e0d8c8;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 300; line-height: 1.75; overflow-x: hidden; }

.sc-root { font-family: var(--font-body); background: var(--bg); color: var(--text); min-height: 100vh; opacity: 0; transition: opacity 0.8s ease; }
.sc-root.sc-ready { opacity: 1; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ===== Loading Screen ===== */
.loader { position: fixed; inset: 0; background: var(--bg); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1); }
.loader.done { transform: translateY(-100%); }
.loader-inner { position: relative; width: 460px; height: 460px; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; inset: 0; }
.ring svg { width: 100%; height: 100%; overflow: visible; }
.ring text { fill: var(--text); font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; }
.ring-1 { animation: spinCW 20s linear infinite; }
.ring-2 { animation: spinCCW 15s linear infinite; }
.ring-3 { animation: spinCW 10s linear infinite; }
@keyframes spinCW { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
.counter { text-align: center; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.counter-num { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 140px; color: var(--text); line-height: 1; }
.counter-label { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; }

/* ===== Top Bar ===== */
.topbar { position: fixed; top: 0; left: 0; right: 0; padding: 24px 5vw; display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; color: var(--text-on-dark); }
.topbar .brand-mark { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; }
.menu-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: currentColor; }

/* ===== Hero ===== */
.hero-wrap { position: relative; height: 300vh; background: var(--bg); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; transition: background 0.05s linear; }
.hero-orb { position: relative; z-index: 2; border-radius: 50%; transition: all 0.05s linear; box-shadow: 0 30px 80px rgba(0,0,0,0.25); }
.hero-overlay { position: absolute; left: 0; right: 0; bottom: 15%; text-align: left; z-index: 3; padding: 0 5vw; max-width: 900px; transition: color 0.2s linear; }
.hero-overlay h1 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 16px; }
.hero-overlay p { font-family: var(--font-body); font-weight: 300; font-size: 1rem; max-width: 520px; }
.scroll-hint { position: absolute; bottom: 32px; left: 0; right: 0; text-align: center; z-index: 3; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.scroll-hint .arr { display: block; margin-top: 8px; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== Common ===== */
.section { padding: 140px 5vw; background: var(--bg); }
.section-white { background: var(--white); }
.section-cream-dark { background: var(--bg-alt); }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.h2 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.01em; line-height: 1.15; color: var(--text); }
.lead { font-family: var(--font-body); font-weight: 300; color: var(--muted); margin-top: 20px; max-width: 580px; line-height: 1.8; }

/* ===== Carousel ===== */
.carousel-wrap { background: #f0ebe0; padding: 40px 0; overflow: hidden; }
.carousel-row { display: flex; gap: 20px; width: max-content; animation: scrollLeft 35s linear infinite; }
.carousel-row:hover { animation-play-state: paused; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.c-card { width: 160px; height: 220px; border-radius: 24px; overflow: hidden; flex-shrink: 0; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; transition: 0.4s ease; cursor: pointer; }
.c-card:hover { transform: scale(1.08); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.c-card .c-brand { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 500; margin-bottom: 4px; }
.c-card .c-label { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 15px; color: var(--white); }

/* ===== Manifesto ===== */
.manifesto { background: var(--bg); padding: 140px 5vw; }
.manifesto-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.stats { display: flex; justify-content: center; gap: 0; margin-top: 64px; }
.stat { padding: 0 32px; position: relative; flex: 1; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 48px; background: var(--cream-dark); }
.stat-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--text); line-height: 1; }
.stat-label { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.trust-badge { border: 1.5px solid var(--green); border-radius: 100px; padding: 8px 18px; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); background: transparent; transition: 0.25s; cursor: default; }
.trust-badge:hover { background: var(--green); color: var(--white); }

/* ===== Testimonials ===== */
.test-section { background: var(--white); padding: 140px 5vw; }
.test-grid { display: grid; grid-template-columns: 38% 56%; gap: 6%; max-width: 1200px; margin: 0 auto; align-items: start; }
.test-left { position: sticky; top: 120px; }
.test-list { display: flex; flex-direction: column; gap: 20px; }
.t-card { background: #f8f5ef; border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: 0.4s ease; }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.t-head { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-style: italic; font-size: 18px; }
.t-name { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--text); }
.t-loc { font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--muted); }
.t-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin: 12px 0; }
.t-quote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.6; color: var(--text); }

/* ===== Hashtag Marquee ===== */
.marquee { background: var(--bg-dark); padding: 11px 0; overflow: hidden; height: 110px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.m-row { display: flex; white-space: nowrap; gap: 40px; width: max-content; }
.m-row-1 { animation: scrollLeft 22s linear infinite; }
.m-row-2 { animation: scrollRight 28s linear infinite; }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee span { color: var(--text-on-dark); font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.marquee .sep { opacity: 0.4; }

/* ===== Benefits ===== */
.benefits { background: #edf4ed; min-height: 100vh; display: flex; align-items: center; padding: 140px 5vw; position: relative; overflow: hidden; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.bullet-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.bullet { display: flex; gap: 16px; align-items: center; }
.bullet .di { font-family: var(--font-display); font-size: 1.2rem; color: var(--green); }
.bullet span:last-child { font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--text); }
.b-visual { position: relative; height: 480px; }
.b-decor { position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 400px; height: 400px; background: rgba(74,124,78,0.12); border-radius: 50%; filter: blur(80px); z-index: 0; }
.b-box { position: absolute; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.b-box-1 { top: 0; left: 0; width: 260px; height: 340px; background: linear-gradient(145deg, var(--green-deep), var(--green)); box-shadow: 0 24px 60px rgba(45,90,53,0.3); transform: rotate(-4deg); color: var(--white); }
.b-box-1 .b-brand { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.85; }
.b-box-1 .b-name { font-family: var(--font-display); font-style: italic; font-size: 2.4rem; margin-top: 8px; }
.b-box-2 { bottom: 0; right: 0; width: 200px; height: 260px; background: linear-gradient(145deg, #f5f0e8, #ede0c8); box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: rotate(6deg); }
.b-box-2 .leaf { font-size: 2rem; color: var(--green); }
.b-box-2 .b-cap { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 12px; text-align: center; }

/* ===== Product ===== */
.product-section { background: var(--bg); padding: 120px 5vw; }
.product-grid { display: grid; grid-template-columns: 45% 55%; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }
.product-visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.bottle { position: relative; width: 160px; height: 280px; border-radius: 80px; background: linear-gradient(160deg, #3a6b42, #5a9e62); box-shadow: 0 32px 80px rgba(58,107,66,0.35); display: flex; align-items: center; justify-content: center; animation: bottleFloat 3s ease-in-out infinite; }
@keyframes bottleFloat { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.bottle-cap { position: absolute; top: -44px; left: 50%; transform: translateX(-50%); width: 90px; height: 48px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: linear-gradient(180deg, #d4b87a, #c8a96e); }
.bottle-label { background: rgba(255,255,255,0.92); border-radius: 12px; padding: 16px 20px; text-align: center; width: 130px; }
.bottle-label .bl-brand { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.bottle-label .bl-name { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--text); margin: 6px 0; }
.bottle-label .bl-tag { font-family: var(--font-body); font-size: 0.5rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.ing-tag { position: absolute; background: rgba(255,255,255,0.92); border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; font-family: var(--font-body); font-size: 0.7rem; color: var(--text); backdrop-filter: blur(8px); animation: floatY 2s ease-in-out infinite; white-space: nowrap; }
@keyframes floatY { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
.ing-1 { top: 18%; left: 4%; animation-delay: 0s; }
.ing-2 { top: 50%; left: -2%; animation-delay: 0.4s; }
.ing-3 { top: 18%; right: 4%; animation-delay: 0.8s; }
.ing-4 { top: 50%; right: -2%; animation-delay: 1.2s; }

.prod-badge { display: inline-block; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; border: 1.5px solid var(--green); color: var(--green); border-radius: 100px; padding: 6px 16px; font-weight: 500; }
.prod-h1 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(3rem, 6vw, 5rem); color: var(--text); line-height: 1; margin: 12px 0 4px; }
.prod-h2 { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--muted); }
.prod-rating { display: flex; align-items: center; gap: 8px; margin: 16px 0; font-family: var(--font-body); font-size: 14px; }
.prod-rating .stars { color: #f59e0b; letter-spacing: 2px; }
.prod-rating .score { font-weight: 500; color: var(--text); }
.prod-rating .reviews { color: var(--muted); font-weight: 300; text-decoration: underline; }
.divider { height: 1px; background: var(--border); margin: 16px 0; }
.cause-text { font-family: var(--font-body); font-weight: 300; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.plan-label { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin: 24px 0 12px; font-weight: 500; }
.plans { display: flex; flex-direction: column; gap: 10px; }
.plan { position: relative; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 20px 24px; cursor: pointer; transition: all 0.25s ease; }
.plan.active { border: 2px solid var(--green); background: #f0f7f0; box-shadow: 0 0 0 4px rgba(74,124,78,0.1); }
.plan-top { display: flex; justify-content: space-between; align-items: center; }
.plan-title { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--text); }
.plan-best { background: var(--green); color: var(--white); font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
.plan-sub { font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--muted); margin-top: 4px; }
.plan-price { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--text); margin-top: 8px; }
.plan-price s { font-family: var(--font-body); font-weight: 300; font-size: 14px; color: var(--muted); margin-left: 8px; }

.qty-label { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin: 24px 0 8px; font-weight: 500; }
.qty-row { display: flex; gap: 0; }
.qty-btn { width: 44px; height: 44px; border: 1.5px solid var(--border); background: var(--white); font-family: var(--font-body); font-size: 1.2rem; color: var(--text); cursor: pointer; }
.qty-btn:first-child { border-radius: 8px 0 0 8px; }
.qty-btn:last-child { border-radius: 0 8px 8px 0; border-left: none; }
.qty-input { width: 56px; height: 44px; border: 1.5px solid var(--border); border-left: none; border-right: none; text-align: center; font-family: var(--font-body); font-weight: 500; font-size: 1rem; background: var(--white); color: var(--text); }
.cta { width: 100%; height: 56px; background: var(--bg-dark); color: var(--text-on-dark); border: none; border-radius: 100px; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; margin-top: 20px; transition: background 0.25s, transform 0.2s; }
.cta:hover { background: var(--green); transform: translateY(-2px); }
.cta:active { transform: scale(0.98); }
.cta-strip { text-align: center; margin-top: 16px; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 80px 5vw 40px; }
.f-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.f-brand { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2.4rem; color: var(--text-on-dark); }
.f-tag { font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--muted-dark); margin-top: 8px; }
.f-news { display: flex; gap: 8px; }
.f-news input { flex: 1; background: #252525; border: 1px solid #3a3a3a; border-radius: 8px; padding: 12px 16px; color: var(--text-on-dark); font-family: var(--font-body); font-size: 14px; outline: none; }
.f-news input:focus { border-color: var(--green); }
.f-news button { background: var(--green); color: var(--white); border: none; padding: 12px 24px; border-radius: 8px; font-family: var(--font-body); font-weight: 500; cursor: pointer; }
.f-div { height: 1px; background: #2d2d2d; margin: 48px 0; }
.f-mid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.f-col h4 { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 20px; font-weight: 500; }
.f-col a { display: block; font-family: var(--font-body); font-weight: 300; font-size: 0.95rem; color: var(--cream-dark); text-decoration: none; margin-bottom: 12px; transition: 0.2s; }
.f-col a:hover { color: var(--text-on-dark); }
.f-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.f-bot, .f-bot a { font-family: var(--font-body); font-weight: 300; font-size: 0.8rem; color: var(--muted-dark); text-decoration: none; }
.f-bot a:hover { color: var(--text-on-dark); }

/* ===== Popup ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup { position: relative; width: 420px; max-width: 90vw; background: var(--bg); border-radius: 24px; padding: 56px 48px; opacity: 0; transform: translateY(60px); transition: 0.6s cubic-bezier(0.16,1,0.3,1); text-align: center; box-shadow: 0 32px 80px rgba(0,0,0,0.25); }
.popup-overlay.show .popup { opacity: 1; transform: translateY(0); }
.popup-leaf { font-size: 48px; color: var(--green); margin-bottom: 16px; display: block; }
.popup h3 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 2rem; color: var(--text); }
.popup p { font-family: var(--font-body); font-weight: 300; font-size: 0.875rem; color: var(--muted); margin: 12px 0 32px; }
.popup input { width: 100%; background: var(--white); border: 1.5px solid var(--cream-dark); border-radius: 10px; padding: 14px 16px; font-family: var(--font-body); font-size: 14px; color: var(--text); margin-bottom: 12px; outline: none; transition: 0.2s; }
.popup input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,124,78,0.15); }
.popup input::placeholder { color: #a0998c; }
.popup .pop-cta { width: 100%; height: 52px; background: var(--bg-dark); color: var(--text-on-dark); border: none; border-radius: 100px; font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: 0.25s; }
.popup .pop-cta:hover { background: var(--green); }
.popup .no-thanks { display: block; width: 100%; margin-top: 16px; background: none; border: none; font-family: var(--font-body); font-weight: 300; font-size: 0.8rem; color: var(--muted); cursor: pointer; }
.popup .no-thanks:hover { color: var(--text); text-decoration: underline; }
.popup .close-x { position: absolute; top: 20px; right: 20px; background: none; border: none; font-family: var(--font-body); font-size: 1.2rem; color: var(--muted); cursor: pointer; transition: 0.2s; }
.popup .close-x:hover { color: var(--text); }

/* ===== Nav Overlay ===== */
.nav-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 9998; transform: translateX(100%); transition: transform 0.7s cubic-bezier(0.76,0,0.24,1); padding: 100px 8vw 60px; display: flex; gap: 60px; }
.nav-overlay.open { transform: translateX(0); }
.nav-close { position: absolute; top: 32px; right: 5vw; width: 40px; height: 40px; background: none; border: none; font-family: var(--font-body); font-size: 1.5rem; color: var(--text); cursor: pointer; transition: 0.3s; }
.nav-close:hover { color: var(--green); transform: rotate(90deg); }
.nav-links { flex: 0 0 60%; display: flex; flex-direction: column; gap: 4px; }
.nav-links a { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(3rem, 6vw, 5rem); color: var(--text); text-decoration: none; line-height: 1.05; transition: 0.3s; opacity: 0; transform: translateY(30px); }
.nav-overlay.open .nav-links a { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-links a:nth-child(1) { transition: opacity 0.5s 0.2s, transform 0.5s 0.2s, color 0.3s; }
.nav-overlay.open .nav-links a:nth-child(2) { transition: opacity 0.5s 0.28s, transform 0.5s 0.28s, color 0.3s; }
.nav-overlay.open .nav-links a:nth-child(3) { transition: opacity 0.5s 0.36s, transform 0.5s 0.36s, color 0.3s; }
.nav-overlay.open .nav-links a:nth-child(4) { transition: opacity 0.5s 0.44s, transform 0.5s 0.44s, color 0.3s; }
.nav-links a:hover { color: var(--green); transform: translateX(12px); }
.nav-social { flex: 0 0 40%; }
.nav-social h5 { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.nav-social a { display: block; font-family: var(--font-body); font-weight: 400; font-size: 1.1rem; color: var(--text); text-decoration: none; margin-bottom: 12px; transition: 0.2s; }
.nav-social a:hover { color: var(--green); }
.nav-tagline { position: absolute; bottom: 48px; left: 8vw; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section, .manifesto, .test-section, .benefits, .product-section { padding: 80px 6vw; }
  .hero-overlay h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-overlay p { font-size: 0.9rem; }
  .stats { flex-direction: column; gap: 32px; }
  .stat { padding: 16px 0; }
  .stat + .stat::before { display: none; }
  .test-grid { grid-template-columns: 1fr; gap: 32px; }
  .test-left { position: static; }
  .benefits-grid { grid-template-columns: 1fr; gap: 60px; }
  .b-visual { height: 380px; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { height: 360px; }
  .c-card { width: 130px; height: 180px; }
  .counter-num { font-size: 90px; }
  .loader-inner { width: 340px; height: 340px; }
  .f-top { grid-template-columns: 1fr; gap: 32px; }
  .f-mid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links a { font-size: clamp(2.2rem, 10vw, 3rem); }
  .nav-overlay { flex-direction: column; padding: 80px 6vw 40px; }
  .popup { padding: 40px 28px; }
}
