/* ═══════════════════════════════════════════════
   NUTRIVERDE — MASTER STYLESHEET
   Palette: Sage Green + Warm Amber + Cream + Terracotta
   ═══════════════════════════════════════════════ */

:root {
  --sage:       #4a7c59;
  --sage-light: #6aab7a;
  --sage-pale:  #c8e6c9;
  --amber:      #e8a838;
  --amber-dark: #c98a20;
  --cream:      #faf6ee;
  --cream-dark: #f0e8d6;
  --terra:      #c85a3a;
  --terra-light:#e8785a;
  --mint:       #e8f5e9;
  --charcoal:   #1e2a1e;
  --ink:        #2d3a2d;
  --muted:      #6b7c6b;
  --white:      #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:  16px;
  --radius-sm: 8px;
  --shadow:  0 8px 40px rgba(74,124,89,0.12);
  --shadow-lg: 0 20px 60px rgba(74,124,89,0.18);
  --transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--cream-dark); }
::-webkit-scrollbar-thumb { background:var(--sage); border-radius:3px; }

/* ═══════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════ */
.cursor {
  width:14px; height:14px;
  background:var(--sage);
  border-radius:50%;
  position:fixed; top:0; left:0; z-index:9999;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:transform 0.1s ease, background 0.3s ease, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: multiply;
}
.cursor-trail {
  width:36px; height:36px;
  border:2px solid var(--sage-light);
  border-radius:50%;
  position:fixed; top:0; left:0; z-index:9998;
  pointer-events:none;
  transform:translate(-50%,-50%);
  transition:transform 0.18s ease, opacity 0.3s ease;
  opacity:0.6;
}
body:hover .cursor { opacity:1; }
a:hover ~ .cursor, button:hover ~ .cursor { width:22px; height:22px; background:var(--amber); }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; gap:2rem;
  padding:1.2rem 5%;
  background:rgba(250,246,238,0.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(74,124,89,0.1);
  transition:var(--transition);
}
.nav.scrolled {
  padding:.9rem 5%;
  box-shadow: 0 4px 24px rgba(74,124,89,0.1);
}
.nav-logo {
  font-family:var(--font-display);
  font-size:1.6rem; font-weight:900;
  color:var(--ink); letter-spacing:-0.02em;
  margin-right:auto;
}
.nav-logo span { color:var(--sage); }
.nav-links { display:flex; gap:2.2rem; }
.nav-link {
  font-size:.9rem; font-weight:500;
  color:var(--muted); letter-spacing:.02em;
  position:relative; padding:.2rem 0;
  transition:color .3s ease;
}
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--sage);
  transition:width .35s cubic-bezier(0.16,1,0.3,1);
}
.nav-link:hover, .nav-link.active { color:var(--sage); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-cta {
  padding:.65rem 1.4rem;
  background:var(--sage);
  color:var(--white);
  border-radius:50px; font-size:.88rem; font-weight:500;
  transition:var(--transition);
}
.nav-cta:hover { background:var(--sage-light); transform:translateY(-2px); box-shadow:0 6px 20px rgba(74,124,89,0.3); }

.nav-burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:none; padding:4px; }
.nav-burger span { width:24px; height:2px; background:var(--ink); border-radius:2px; transition:var(--transition); display:block; }

.mobile-menu {
  display:none; flex-direction:column;
  position:fixed; top:72px; left:0; right:0; z-index:999;
  background:var(--cream); padding:2rem 5%;
  border-bottom:1px solid var(--cream-dark);
  transform:translateY(-20px); opacity:0; pointer-events:none;
  transition:var(--transition);
}
.mobile-menu.open { transform:translateY(0); opacity:1; pointer-events:all; display:flex; }
.mobile-menu a { font-size:1.2rem; padding:.8rem 0; border-bottom:1px solid var(--cream-dark); color:var(--ink); font-weight:500; }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal-up {
  opacity:0; transform:translateY(48px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left {
  opacity:0; transform:translateX(-48px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
  opacity:0; transform:translateX(48px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.revealed { opacity:1 !important; transform:translate(0,0) !important; }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 2rem; background:var(--sage);
  color:var(--white); border-radius:50px;
  font-weight:500; font-size:.95rem;
  transition:var(--transition); border:2px solid var(--sage);
  cursor:none;
}
.btn-primary:hover { background:var(--sage-light); border-color:var(--sage-light); transform:translateY(-3px); box-shadow:0 10px 30px rgba(74,124,89,0.3); }
.btn-primary.btn-lg { padding:1.1rem 2.8rem; font-size:1.05rem; }

.btn-ghost {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 2rem; background:transparent;
  color:var(--ink); border-radius:50px;
  font-weight:500; font-size:.95rem;
  transition:var(--transition); border:2px solid rgba(30,42,30,.15);
  cursor:none;
}
.btn-ghost:hover { border-color:var(--sage); color:var(--sage); transform:translateY(-3px); }

.btn-outline {
  display:inline-flex; align-items:center;
  padding:.7rem 1.6rem; background:transparent;
  color:var(--sage); border-radius:50px;
  font-weight:500; font-size:.9rem;
  border:2px solid var(--sage);
  transition:var(--transition); margin-top:1rem;
  cursor:none;
}
.btn-outline:hover { background:var(--sage); color:var(--white); transform:translateY(-2px); }

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════ */
.section { padding:7rem 0; }
.container { max-width:1200px; margin:0 auto; padding:0 5%; }
.section-header { text-align:center; margin-bottom:4rem; }
.section-tag {
  display:inline-block;
  padding:.4rem 1.2rem;
  background:var(--mint); color:var(--sage);
  border-radius:50px; font-size:.82rem; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:1rem;
}
.section-title {
  font-family:var(--font-display);
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.15; color:var(--ink);
  font-weight:700;
}
.section-title em { font-style:italic; color:var(--sage); font-weight:300; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height:100vh;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; gap:3rem;
  padding:10rem 5% 4rem;
  position:relative; overflow:hidden;
  background:var(--cream);
}

/* ORB backgrounds */
.hero-bg { position:absolute; inset:0; pointer-events:none; z-index:0; }
.orb {
  position:absolute; border-radius:50%;
  filter:blur(80px); opacity:.35;
  animation:orbFloat 8s ease-in-out infinite;
}
.orb1 { width:500px; height:500px; background:radial-gradient(circle,var(--sage-pale),transparent); top:-10%; left:-5%; animation-delay:0s; }
.orb2 { width:400px; height:400px; background:radial-gradient(circle,#fde68a,transparent); bottom:5%; right:5%; animation-delay:-3s; }
.orb3 { width:300px; height:300px; background:radial-gradient(circle,#fca5a5,transparent); top:50%; left:40%; animation-delay:-5s; }
@keyframes orbFloat {
  0%,100% { transform:translateY(0) scale(1); }
  50% { transform:translateY(-30px) scale(1.05); }
}

#particleCanvas { position:absolute; inset:0; width:100%; height:100%; opacity:.4; }

.hero-content { position:relative; z-index:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.45rem 1.2rem; background:var(--mint);
  border:1px solid rgba(74,124,89,.2);
  border-radius:50px; font-size:.82rem; font-weight:500; color:var(--sage);
  margin-bottom:1.5rem;
}
.hero-title {
  font-family:var(--font-display);
  font-size:clamp(3rem, 6vw, 5.5rem);
  line-height:1.05; font-weight:900; color:var(--ink);
  letter-spacing:-.02em; margin-bottom:1.5rem;
}
.title-italic { font-style:italic; font-weight:300; color:var(--sage); display:block; }
.title-outline {
  -webkit-text-stroke: 2px var(--ink);
  color:transparent; display:block;
}
.hero-sub {
  font-size:1.05rem; color:var(--muted); line-height:1.7;
  max-width:460px; margin-bottom:2.5rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; }
.hero-stats { display:flex; align-items:center; gap:2rem; }
.stat { text-align:center; }
.stat-num { font-family:var(--font-display); font-size:2rem; font-weight:900; color:var(--sage); }
.stat p { font-size:.78rem; color:var(--muted); margin-top:.2rem; font-weight:500; }
.stat-divider { width:1px; height:40px; background:rgba(74,124,89,.2); }

/* HERO VISUAL */
.hero-visual { position:relative; z-index:1; display:flex; justify-content:center; }
.product-showcase { position:relative; width:380px; height:380px; display:flex; align-items:center; justify-content:center; }
.product-ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(74,124,89,.15);
  animation:ringPulse 4s ease-in-out infinite;
}
.ring1 { width:300px; height:300px; animation-delay:0s; }
.ring2 { width:360px; height:360px; animation-delay:.8s; border-style:dashed; }
.ring3 { width:420px; height:420px; animation-delay:1.6s; opacity:.4; }
@keyframes ringPulse {
  0%,100% { transform:scale(1); opacity:.4; }
  50% { transform:scale(1.04); opacity:.8; }
}
.product-card-hero {
  background:var(--white); border-radius:24px;
  padding:2rem; text-align:center;
  box-shadow:0 20px 60px rgba(74,124,89,.18);
  width:220px;
  animation:heroCardFloat 6s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-16px); }
}
.product-hero-img {
  width:140px; height:140px;
  border-radius:var(--radius);
  overflow:hidden; margin:0 auto 1rem;
}
.product-hero-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .6s ease;
}
.product-card-hero:hover .product-hero-img img { transform:scale(1.06); }
.product-hero-label strong { display:block; font-weight:700; color:var(--ink); }
.product-hero-label span { font-size:.82rem; color:var(--muted); }
.product-hero-tag {
  display:inline-block; margin-top:.8rem;
  padding:.3rem .8rem; background:var(--mint);
  border-radius:50px; font-size:.78rem; color:var(--sage); font-weight:500;
}
.floating-pill {
  position:absolute;
  padding:.5rem 1rem; background:var(--white);
  border-radius:50px; font-size:.78rem; font-weight:500;
  box-shadow:0 8px 24px rgba(0,0,0,.1); color:var(--ink);
  animation:pillFloat 5s ease-in-out infinite;
}
.pill1 { top:10%; left:-5%; animation-delay:0s; }
.pill2 { bottom:15%; left:-8%; animation-delay:-2s; }
.pill3 { top:20%; right:-8%; animation-delay:-4s; }
@keyframes pillFloat {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  font-size:.75rem; color:var(--muted); letter-spacing:.08em; text-transform:uppercase;
  z-index:1;
}
.scroll-line {
  width:1px; height:50px; background:linear-gradient(to bottom,var(--sage),transparent);
  animation:scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee-wrap {
  background:var(--sage); overflow:hidden; padding:.9rem 0;
}
.marquee-track {
  display:flex; gap:3rem; width:max-content;
  animation:marqueeScroll 22s linear infinite;
}
.marquee-track span {
  color:var(--white); font-size:.88rem; font-weight:500;
  white-space:nowrap; letter-spacing:.04em;
}
@keyframes marqueeScroll {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
.features { background:var(--cream-dark); }
.features-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
}
.feature-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem 1.5rem; position:relative; overflow:hidden;
  transition:var(--transition);
  border:1px solid rgba(74,124,89,.08);
}
.feature-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.feature-card:hover .feature-line { width:100%; }
.feature-icon { font-size:2.2rem; margin-bottom:1.2rem; }
.feature-card h3 { font-family:var(--font-display); font-size:1.2rem; font-weight:700; margin-bottom:.7rem; color:var(--ink); }
.feature-card p { font-size:.9rem; color:var(--muted); line-height:1.7; }
.feature-line {
  position:absolute; bottom:0; left:0; width:0; height:3px;
  background:linear-gradient(90deg,var(--sage),var(--amber));
  transition:width .5s cubic-bezier(0.16,1,0.3,1);
}

/* ═══════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════ */
.products { background:var(--cream); }
.products-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
}
.product-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem 1.5rem; position:relative;
  transition:var(--transition);
  border:1px solid rgba(74,124,89,.08);
  display:flex; flex-direction:column; gap:.8rem;
  overflow:hidden;
}
.product-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.product-badge {
  position:absolute; top:1rem; right:1rem;
  padding:.3rem .7rem; background:var(--amber);
  color:var(--white); border-radius:50px; font-size:.72rem; font-weight:600;
}
.product-badge.new { background:var(--sage); }
.product-emoji { font-size:3.5rem; }
.product-info h3 { font-family:var(--font-display); font-size:1.1rem; font-weight:700; color:var(--ink); }
.product-info p { font-size:.85rem; color:var(--muted); line-height:1.6; margin:.4rem 0 .8rem; }
.product-meta { display:flex; align-items:center; justify-content:space-between; gap:.5rem; }
.product-rating { font-size:.8rem; color:var(--amber-dark); font-weight:500; }
.product-price { font-family:var(--font-display); font-size:1.15rem; font-weight:700; color:var(--sage); }
.product-btn {
  display:block; text-align:center;
  padding:.65rem; background:var(--mint);
  color:var(--sage); border-radius:var(--radius-sm);
  font-weight:500; font-size:.88rem;
  transition:var(--transition); margin-top:.5rem;
  cursor:none;
}
.product-btn:hover { background:var(--sage); color:var(--white); transform:translateY(-2px); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials { background:var(--cream-dark); }
.testi-grid {
  display:grid; grid-template-columns:1fr 1.3fr 1fr; gap:1.5rem; align-items:center;
}
.testi-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem; border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.testi-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.testi-card.featured {
  background:var(--sage); color:var(--white);
  transform:scale(1.04);
  box-shadow:var(--shadow-lg);
}
.testi-card.featured:hover { transform:scale(1.04) translateY(-6px); }
.testi-stars { font-size:1rem; color:var(--amber); margin-bottom:1rem; }
.testi-card.featured .testi-stars { color:#fde68a; }
.testi-card p { font-size:.93rem; line-height:1.7; color:var(--muted); margin-bottom:1.2rem; }
.testi-card.featured p { color:rgba(255,255,255,.85); }
.testi-author { display:flex; align-items:center; gap:.8rem; }
.testi-avatar {
  width:48px; height:48px; border-radius:50%;
  background:var(--mint); color:var(--sage);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1rem;
  overflow:hidden; flex-shrink:0;
  border:2px solid var(--sage-pale);
}
.testi-avatar img {
  width:100%; height:100%;
  object-fit:cover; object-position:center top;
  display:block;
}
.testi-card.featured .testi-avatar { background:rgba(255,255,255,.2); color:var(--white); }
.testi-author strong { display:block; font-weight:600; font-size:.9rem; }
.testi-author span { font-size:.78rem; color:var(--muted); }
.testi-card.featured .testi-author span { color:rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
  background:var(--charcoal); padding:6rem 5%;
  text-align:center; position:relative; overflow:hidden;
}
.cta-orb {
  position:absolute; border-radius:50%;
  filter:blur(70px); opacity:.2; pointer-events:none;
}
.cta-orb1 { width:400px; height:400px; background:var(--sage); top:-20%; left:-5%; }
.cta-orb2 { width:350px; height:350px; background:var(--amber); bottom:-20%; right:5%; }
.cta-inner { position:relative; z-index:1; max-width:600px; margin:0 auto; }
.cta-banner h2 {
  font-family:var(--font-display); font-size:clamp(2rem,4vw,2.8rem);
  color:var(--white); font-weight:700; margin-bottom:1rem;
}
.cta-banner p { color:rgba(255,255,255,.65); font-size:1.05rem; margin-bottom:2rem; line-height:1.7; }

/* ═══════════════════════════════════════════════
   PAGE HERO (About / Services)
   ═══════════════════════════════════════════════ */
.page-hero {
  min-height:55vh; display:flex; flex-direction:column;
  justify-content:center; align-items:center; text-align:center;
  padding:10rem 5% 5rem; position:relative; overflow:hidden;
  background:var(--cream);
}
.page-hero-title {
  font-family:var(--font-display);
  font-size:clamp(2.8rem,6vw,5rem);
  font-weight:900; line-height:1.1;
  color:var(--ink); letter-spacing:-.02em;
  margin:.8rem 0 1.2rem;
}
.page-hero-title em { font-style:italic; color:var(--sage); font-weight:300; }
.page-hero-sub {
  max-width:540px; color:var(--muted); font-size:1.05rem;
  line-height:1.7;
}

/* ═══════════════════════════════════════════════
   MISSION
   ═══════════════════════════════════════════════ */
.mission { background:var(--cream-dark); }
.mission-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center;
}
.mission-text h2 {
  font-family:var(--font-display); font-size:clamp(2rem,3.5vw,2.8rem);
  font-weight:700; line-height:1.15; color:var(--ink); margin:1rem 0 1.5rem;
}
.mission-text h2 em { font-style:italic; color:var(--sage); font-weight:300; }
.mission-text p { color:var(--muted); line-height:1.8; margin-bottom:1rem; font-size:.95rem; }
.mission-values { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.5rem; }
.value-chip {
  padding:.5rem 1.1rem; background:var(--mint);
  color:var(--sage); border-radius:50px; font-size:.82rem; font-weight:500;
}
.mission-card-stack { position:relative; height:380px; }
.mcard {
  position:absolute; background:var(--white);
  border-radius:var(--radius); padding:1.5rem;
  width:280px; box-shadow:var(--shadow);
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.mcard:hover { transform:translateY(-8px) rotate(0deg) !important; box-shadow:var(--shadow-lg); }
.mcard1 { top:0; left:0; transform:rotate(-3deg); z-index:3; }
.mcard2 { top:60px; left:60px; transform:rotate(1deg); z-index:2; }
.mcard3 { top:120px; left:100px; transform:rotate(4deg); z-index:1; }
.mcard-icon { font-size:2rem; margin-bottom:.8rem; }
.mcard strong { display:block; font-weight:700; margin-bottom:.4rem; color:var(--ink); }
.mcard p { font-size:.83rem; color:var(--muted); line-height:1.6; }

/* ═══════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════ */
.timeline-section { background:var(--cream); }
.timeline { position:relative; max-width:800px; margin:0 auto; }
.timeline::before {
  content:''; position:absolute; left:50%; top:0; bottom:0;
  width:2px; background:linear-gradient(to bottom,var(--sage),var(--amber));
  transform:translateX(-50%);
}
.tl-item {
  display:grid; grid-template-columns:1fr 40px 1fr; gap:1rem;
  align-items:center; margin-bottom:3rem;
}
.tl-item.right .tl-year { order:3; text-align:left; }
.tl-item.right .tl-content { order:1; text-align:right; }
.tl-year {
  font-family:var(--font-display); font-size:1.3rem; font-weight:900;
  color:var(--sage); text-align:right;
}
.tl-item.right .tl-year { text-align:left; }
.tl-dot {
  width:14px; height:14px; border-radius:50%;
  background:var(--sage); border:3px solid var(--white);
  box-shadow:0 0 0 3px var(--sage-pale);
  justify-self:center; z-index:1;
}
.tl-content { background:var(--white); border-radius:var(--radius-sm); padding:1.2rem 1.5rem; box-shadow:var(--shadow); }
.tl-content h3 { font-family:var(--font-display); font-weight:700; margin-bottom:.4rem; color:var(--ink); }
.tl-content p { font-size:.88rem; color:var(--muted); line-height:1.7; }

/* ═══════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════ */
.team { background:var(--cream-dark); }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem 1.5rem; text-align:center;
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.team-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.team-avatar {
  width:110px; height:110px; border-radius:50%;
  background:var(--mint); font-size:2rem;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.4rem; overflow:hidden;
  border:3px solid var(--sage-pale);
  box-shadow:0 4px 20px rgba(74,124,89,.18);
}
.team-avatar img {
  width:100%; height:100%;
  object-fit:cover; object-position:center top;
  display:block;
}
.team-card h3 { font-family:var(--font-display); font-weight:700; margin-bottom:.3rem; color:var(--ink); }
.team-card span { font-size:.8rem; color:var(--sage); font-weight:500; display:block; margin-bottom:.8rem; }
.team-card p { font-size:.85rem; color:var(--muted); line-height:1.7; }

/* ═══════════════════════════════════════════════
   VALUES STRIP
   ═══════════════════════════════════════════════ */
.values-strip { background:var(--sage); padding:4rem 5%; }
.vs-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; max-width:1200px; margin:0 auto; }
.vs-item { text-align:center; }
.vs-num { font-family:var(--font-display); font-size:3rem; font-weight:900; color:var(--white); }
.vs-item p { color:rgba(255,255,255,.7); font-size:.9rem; margin-top:.3rem; font-weight:500; }

/* ═══════════════════════════════════════════════
   SERVICES (service.html)
   ═══════════════════════════════════════════════ */
.services-section { background:var(--cream); }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
}
.service-card {
  background:var(--white); border-radius:var(--radius);
  padding:2rem 1.5rem;
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.service-card.big {
  grid-column:span 3;
  display:grid; grid-template-columns:auto 1fr; gap:2rem;
  align-items:center; background:linear-gradient(135deg,var(--sage) 0%,var(--sage-light) 100%);
  color:var(--white);
}
.service-card.big .service-body h3 { color:var(--white); }
.service-card.big .service-body p { color:rgba(255,255,255,.8); }
.service-card.big .service-list li { color:rgba(255,255,255,.9); font-size:.9rem; margin:.5rem 0; }
.service-icon-big { font-size:3.5rem; }
.service-card h3 { font-family:var(--font-display); font-size:1.2rem; font-weight:700; margin:1rem 0 .7rem; color:var(--ink); }
.service-card p { font-size:.9rem; color:var(--muted); line-height:1.7; }
.service-price { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--sage); margin-top:.8rem; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-section { background:var(--cream-dark); }
.steps-row {
  display:flex; align-items:center; gap:1rem;
  flex-wrap:wrap; justify-content:center;
}
.step {
  flex:1; min-width:180px; max-width:220px;
  background:var(--white); border-radius:var(--radius);
  padding:2rem 1.5rem; text-align:center;
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.step:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.step-num {
  font-family:var(--font-display); font-size:.82rem; font-weight:900;
  color:var(--sage-pale); letter-spacing:.08em; margin-bottom:.5rem;
}
.step-icon { font-size:2.2rem; margin-bottom:.8rem; }
.step h3 { font-family:var(--font-display); font-weight:700; margin-bottom:.6rem; color:var(--ink); font-size:1rem; }
.step p { font-size:.82rem; color:var(--muted); line-height:1.6; }
.step-arrow { font-size:1.5rem; color:var(--sage-pale); flex-shrink:0; }

/* ═══════════════════════════════════════════════
   SHOP
   ═══════════════════════════════════════════════ */
.shop-section { background:var(--cream); }
.filter-tabs { display:flex; gap:.7rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.filter-btn {
  padding:.55rem 1.4rem; border-radius:50px;
  border:2px solid rgba(74,124,89,.2);
  background:transparent; color:var(--muted);
  font-size:.88rem; font-weight:500;
  transition:var(--transition); cursor:none;
}
.filter-btn:hover, .filter-btn.active {
  background:var(--sage); border-color:var(--sage); color:var(--white);
}
.shop-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem;
}
.shop-card {
  background:var(--white); border-radius:var(--radius);
  padding:1.8rem 1.5rem; position:relative;
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition); display:flex; flex-direction:column; gap:.6rem;
  overflow:hidden;
}
.shop-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.shop-card.hidden { display:none; }
.shop-badge {
  position:absolute; top:1rem; right:1rem;
  padding:.28rem .65rem; background:var(--amber);
  color:var(--white); border-radius:50px; font-size:.7rem; font-weight:600;
}
.shop-badge.new { background:var(--sage); }
.shop-emoji { font-size:3rem; }
.shop-card h3 { font-family:var(--font-display); font-weight:700; color:var(--ink); font-size:1.05rem; }
.shop-card p { font-size:.83rem; color:var(--muted); line-height:1.6; flex:1; }
.shop-rating { font-size:.78rem; color:var(--amber-dark); }
.shop-rating span { color:var(--muted); }
.shop-footer { display:flex; align-items:center; justify-content:space-between; margin-top:.5rem; }
.shop-price { font-family:var(--font-display); font-size:1.1rem; font-weight:700; color:var(--sage); }
.shop-price s { color:var(--muted); font-size:.85rem; font-weight:400; margin-left:.3rem; }
.shop-add {
  padding:.5rem 1.1rem; background:var(--sage);
  color:var(--white); border:none; border-radius:50px;
  font-size:.82rem; font-weight:500; cursor:none;
  transition:var(--transition);
}
.shop-add:hover { background:var(--sage-light); transform:scale(1.05); }
.shop-add.added { background:var(--amber); }

/* ═══════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════ */
.cart-toast {
  position:fixed; bottom:7rem; right:2rem; z-index:9000;
  background:var(--ink); color:var(--white);
  padding:.9rem 1.5rem; border-radius:50px;
  display:flex; align-items:center; gap:.7rem;
  font-size:.9rem; font-weight:500;
  transform:translateY(20px); opacity:0;
  transition:var(--transition); pointer-events:none;
}
.cart-toast.show { transform:translateY(0); opacity:1; }
.cart-fab {
  position:fixed; bottom:2rem; right:2rem; z-index:8000;
  background:var(--sage); color:var(--white);
  padding:1rem 1.5rem; border-radius:50px;
  font-size:1rem; cursor:none; box-shadow:var(--shadow-lg);
  transition:var(--transition); display:flex; align-items:center; gap:.6rem;
}
.cart-fab:hover { background:var(--sage-light); transform:translateY(-3px); }
.cart-count {
  background:var(--amber); color:var(--white);
  width:22px; height:22px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700;
}
.cart-overlay {
  position:fixed; inset:0; z-index:7000;
  background:rgba(30,42,30,.4); opacity:0;
  pointer-events:none; transition:opacity .4s ease;
}
.cart-overlay.open { opacity:1; pointer-events:all; }
.cart-drawer {
  position:fixed; right:0; top:0; bottom:0; z-index:7001;
  width:380px; background:var(--white);
  padding:2rem; display:flex; flex-direction:column; gap:1.5rem;
  transform:translateX(100%); transition:transform .45s cubic-bezier(0.16,1,0.3,1);
  box-shadow:-8px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { transform:translateX(0); }
.cart-header { display:flex; align-items:center; justify-content:space-between; }
.cart-header h3 { font-family:var(--font-display); font-size:1.3rem; font-weight:700; }
.cart-close {
  background:none; border:none; font-size:1.2rem;
  color:var(--muted); cursor:none; padding:.3rem;
  transition:color .3s;
}
.cart-close:hover { color:var(--terra); }
.cart-items { flex:1; overflow-y:auto; display:flex; flex-direction:column; gap:.8rem; }
.cart-empty { color:var(--muted); text-align:center; margin-top:3rem; font-size:.95rem; }
.cart-item {
  display:flex; align-items:center; justify-content:space-between;
  background:var(--cream); border-radius:var(--radius-sm); padding:.8rem 1rem;
}
.cart-item-name { font-weight:500; font-size:.9rem; color:var(--ink); }
.cart-item-price { font-family:var(--font-display); font-weight:700; color:var(--sage); font-size:.95rem; }
.cart-item-remove {
  background:none; border:none; color:var(--muted);
  cursor:none; font-size:1rem; padding:0 .3rem;
  transition:color .3s;
}
.cart-item-remove:hover { color:var(--terra); }
.cart-footer { border-top:1px solid var(--cream-dark); padding-top:1rem; }
.cart-total { display:flex; justify-content:space-between; margin-bottom:1rem; font-size:1rem; }
.cart-total strong { font-family:var(--font-display); font-size:1.2rem; color:var(--sage); }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section { background:var(--cream-dark); }
.faq-list { max-width:700px; margin:0 auto; }
.faq-item { border-bottom:1px solid rgba(74,124,89,.15); }
.faq-q {
  width:100%; text-align:left; background:none; border:none;
  padding:1.3rem 0; font-size:1rem; font-weight:500; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center;
  cursor:none; transition:color .3s;
}
.faq-q:hover { color:var(--sage); }
.faq-q span {
  font-size:1.3rem; color:var(--sage); transition:transform .35s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-q span { transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .45s cubic-bezier(0.16,1,0.3,1), padding .3s;
  padding:0;
}
.faq-item.open .faq-a { max-height:200px; padding-bottom:1.2rem; }
.faq-a p { font-size:.92rem; color:var(--muted); line-height:1.8; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background:var(--charcoal); padding:4rem 5% 0; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo.nav-logo { color:var(--white); }
.footer p { color:rgba(255,255,255,.5); font-size:.88rem; line-height:1.7; margin-top:.8rem; }
.footer h4 { color:var(--white); font-weight:600; margin-bottom:1.2rem; font-size:.9rem; letter-spacing:.04em; text-transform:uppercase; }
.footer ul li { margin-bottom:.6rem; }
.footer ul li a { color:rgba(255,255,255,.5); font-size:.88rem; transition:color .3s; }
.footer ul li a:hover { color:var(--sage-light); }
.footer-bottom { text-align:center; padding:1.5rem 0; display:flex; flex-direction:column; gap:.45rem; }
.footer-bottom p { color:rgba(255,255,255,.3); font-size:.8rem; }
.powered-by { color:rgba(255,255,255,.35); font-size:.78rem; }
.powered-by a {
  color:var(--sage-light); font-weight:700;
  letter-spacing:.02em;
  background:linear-gradient(90deg,var(--sage-light),var(--amber));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  transition:opacity .3s ease;
  text-decoration:none;
}
.powered-by a:hover { opacity:.8; }

/* ═══════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
  background:var(--white);
  padding:1.6rem 5%;
  border-bottom:1px solid rgba(74,124,89,.1);
}
.trust-inner {
  display:flex; align-items:center; gap:2rem;
  flex-wrap:wrap; max-width:1200px; margin:0 auto;
}
.trust-label {
  font-size:.72rem; font-weight:700; color:var(--muted);
  letter-spacing:.1em; text-transform:uppercase;
  white-space:nowrap; flex-shrink:0;
}
.trust-logos { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.trust-badge {
  font-size:.78rem; font-weight:600; color:var(--ink);
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.42rem 1rem; background:var(--mint);
  border-radius:50px; border:1px solid rgba(74,124,89,.15);
  white-space:nowrap; transition:var(--transition);
}
.trust-badge:hover { background:var(--sage); color:var(--white); }

/* ═══════════════════════════════════════════════
   SCIENCE SPLIT
   ═══════════════════════════════════════════════ */
.science-split { background:var(--cream-dark); }
.science-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.science-img {
  border-radius:var(--radius); overflow:hidden;
  height:540px; position:relative;
  box-shadow:var(--shadow-lg);
}
.science-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s ease;
}
.science-img:hover img { transform:scale(1.04); }
.science-img-stat {
  position:absolute; top:1.5rem; left:1.5rem;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-radius:var(--radius);
  padding:1.1rem 1.4rem;
  box-shadow:0 8px 30px rgba(0,0,0,.12);
  min-width:150px;
}
.science-img-stat strong {
  display:block; font-family:var(--font-display);
  font-size:2.2rem; font-weight:900;
  color:var(--sage); line-height:1;
}
.science-img-stat span {
  font-size:.75rem; color:var(--muted);
  display:block; margin-top:.3rem; font-weight:500;
}
.science-img-stat2 {
  position:absolute; bottom:1.5rem; right:1.5rem;
  background:var(--sage); border-radius:var(--radius);
  padding:1rem 1.4rem;
  box-shadow:0 8px 30px rgba(74,124,89,.3);
}
.science-img-stat2 strong {
  display:block; font-family:var(--font-display);
  font-size:1.9rem; font-weight:900;
  color:var(--white); line-height:1;
}
.science-img-stat2 span {
  font-size:.75rem; color:rgba(255,255,255,.75);
  display:block; margin-top:.3rem;
}
.science-text .section-tag { margin-bottom:.8rem; }
.science-text h2 {
  font-family:var(--font-display);
  font-size:clamp(2rem,3.5vw,2.8rem);
  font-weight:700; line-height:1.15;
  color:var(--ink); margin:.8rem 0 1.4rem;
}
.science-text h2 em { font-style:italic; color:var(--sage); font-weight:300; }
.science-text p { color:var(--muted); line-height:1.8; margin-bottom:1rem; font-size:.95rem; }
.science-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem; margin:2rem 0 2.5rem;
  padding:1.4rem; background:var(--white);
  border-radius:var(--radius);
  border:1px solid rgba(74,124,89,.08);
}
.sci-stat { text-align:center; }
.sci-stat-num {
  font-family:var(--font-display); font-size:1.65rem;
  font-weight:900; color:var(--sage); display:block;
}
.sci-stat-label {
  font-size:.72rem; color:var(--muted);
  font-weight:500; margin-top:.2rem; display:block;
}

/* ═══════════════════════════════════════════════
   INGREDIENTS SHOWCASE
   ═══════════════════════════════════════════════ */
.ingredients-section { background:var(--cream); }
.ingredients-row {
  display:grid; grid-template-columns:repeat(5,1fr); gap:1.5rem;
}
.ingredient-card {
  text-align:center; background:var(--white);
  border-radius:var(--radius);
  padding:2rem 1.2rem 1.6rem;
  border:1px solid rgba(74,124,89,.08);
  transition:var(--transition);
}
.ingredient-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.ingredient-img {
  width:90px; height:90px; border-radius:50%;
  overflow:hidden; margin:0 auto 1.2rem;
  border:3px solid var(--sage-pale);
  box-shadow:0 4px 16px rgba(74,124,89,.15);
}
.ingredient-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .5s ease;
}
.ingredient-card:hover .ingredient-img img { transform:scale(1.12); }
.ingredient-card h4 {
  font-family:var(--font-display); font-size:1rem;
  font-weight:700; color:var(--ink); margin-bottom:.45rem;
}
.ingredient-card p { font-size:.8rem; color:var(--muted); line-height:1.6; }
.ingredient-origin {
  display:inline-block; font-size:.68rem; font-weight:700;
  color:var(--sage); background:var(--mint);
  padding:.25rem .75rem; border-radius:50px; margin-top:.8rem;
  letter-spacing:.04em;
}

/* ═══════════════════════════════════════════════
   HEALTH GOALS GRID
   ═══════════════════════════════════════════════ */
.goals-section { background:var(--cream-dark); }
.goals-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
}
.goal-card {
  position:relative; border-radius:var(--radius);
  overflow:hidden; height:300px; cursor:none;
}
.goal-card img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s ease;
}
.goal-card:hover img { transform:scale(1.1); }
.goal-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(18,30,18,.88) 0%,rgba(18,30,18,.15) 55%,transparent 100%);
  display:flex; flex-direction:column;
  justify-content:flex-end; padding:1.5rem;
}
.goal-icon { font-size:1.3rem; margin-bottom:.4rem; }
.goal-overlay h3 {
  font-family:var(--font-display); color:var(--white);
  font-size:1.15rem; font-weight:700; margin-bottom:.3rem;
}
.goal-overlay p {
  font-size:.8rem; color:rgba(255,255,255,.75);
  line-height:1.5; margin-bottom:.8rem;
  max-height:0; overflow:hidden;
  opacity:0;
  transition:max-height .4s ease, opacity .4s ease .05s;
}
.goal-card:hover .goal-overlay p { max-height:80px; opacity:1; }
.goal-tag {
  display:inline-flex; align-items:center;
  font-size:.72rem; font-weight:600;
  color:var(--white);
  background:rgba(74,124,89,.8);
  padding:.28rem .8rem; border-radius:50px;
  width:fit-content;
  transition:background .3s ease;
}
.goal-card:hover .goal-tag { background:var(--sage); }

/* ═══════════════════════════════════════════════
   PHOTO GALLERY
   ═══════════════════════════════════════════════ */
.gallery-section { background:var(--cream); }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:240px 240px;
  gap:1rem;
}
.gallery-item {
  border-radius:var(--radius-sm); overflow:hidden;
  position:relative;
}
.gallery-item.tall { grid-row:span 2; }
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s ease;
}
.gallery-item:hover img { transform:scale(1.08); }
.gallery-hover {
  position:absolute; inset:0;
  background:rgba(74,124,89,.3);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .4s ease;
}
.gallery-item:hover .gallery-hover { opacity:1; }
.gallery-hover-icon { font-size:2rem; color:white; }

/* ═══════════════════════════════════════════════
   REAL IMAGE COMPONENTS
   ═══════════════════════════════════════════════ */

/* Full-bleed top image inside product cards */
.product-img {
  width:calc(100% + 3rem);
  margin:-2rem -1.5rem 0;
  height:200px; overflow:hidden;
  border-radius:var(--radius) var(--radius) 0 0;
  flex-shrink:0;
}
.product-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-img img { transform:scale(1.08); }

/* Full-bleed top image inside shop cards */
.shop-img {
  width:calc(100% + 3rem);
  margin:-1.8rem -1.5rem 0;
  height:165px; overflow:hidden;
  border-radius:var(--radius) var(--radius) 0 0;
  flex-shrink:0;
}
.shop-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s cubic-bezier(0.16,1,0.3,1);
}
.shop-card:hover .shop-img img { transform:scale(1.08); }

/* Service card image */
.service-img {
  width:calc(100% + 3rem);
  margin:-2rem -1.5rem 1.5rem;
  height:185px; overflow:hidden;
  border-radius:var(--radius) var(--radius) 0 0;
  flex-shrink:0;
}
.service-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-img img { transform:scale(1.08); }

/* About page hero background image */
.about-hero-bg {
  position:absolute; inset:0; z-index:0;
  pointer-events:none; overflow:hidden;
}
.about-hero-bg img {
  width:100%; height:100%;
  object-fit:cover; opacity:.07;
  display:block;
}
.about-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom,var(--cream) 0%,transparent 40%,var(--cream) 100%);
}

/* Mission section photo */
.mission-visual-img {
  border-radius:var(--radius); overflow:hidden;
  height:400px; position:relative;
  box-shadow:var(--shadow-lg);
}
.mission-visual-img img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .65s ease;
}
.mission-visual-img:hover img { transform:scale(1.04); }
.mission-visual-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(74,124,89,.2),transparent 60%);
  pointer-events:none;
}
.mission-img-badges {
  position:absolute; bottom:1.5rem; left:1.5rem;
  display:flex; flex-direction:column; gap:.6rem;
}
.mission-badge-chip {
  background:rgba(255,255,255,.93); backdrop-filter:blur(8px);
  border-radius:50px; padding:.45rem 1rem;
  font-size:.78rem; font-weight:600; color:var(--ink);
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  display:inline-flex; align-items:center; gap:.4rem;
  width:fit-content;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width:1100px) {
  .features-grid, .products-grid, .shop-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .vs-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .ingredients-row { grid-template-columns:repeat(3,1fr); }
  .goals-grid { grid-template-columns:repeat(3,1fr); }
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
}

@media (max-width:900px) {
  .hero { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-stats { justify-content:center; }
  .hero-actions { justify-content:center; }
  .mission-grid { grid-template-columns:1fr; }
  .mission-visual { display:none; }
  .testi-grid { grid-template-columns:1fr; }
  .testi-card.featured { transform:none; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .service-card.big { grid-column:span 2; }
  .timeline::before { left:20px; }
  .tl-item { grid-template-columns:40px 1fr; }
  .tl-year { display:none; }
  .tl-item.right .tl-content { order:2; text-align:left; }
  .tl-item.right .tl-year { display:none; }
  .science-grid { grid-template-columns:1fr; }
  .science-img { height:380px; }
  .goals-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-template-rows:auto; }
  .gallery-item.tall { grid-row:span 1; height:240px; }
  .gallery-item { height:220px; }
  .trust-inner { flex-direction:column; align-items:flex-start; gap:1rem; }
}

@media (max-width:680px) {
  .nav-links, .nav-cta { display:none; }
  .nav-burger { display:flex; }
  .features-grid, .products-grid, .shop-grid, .services-grid, .team-grid { grid-template-columns:1fr; }
  .service-card.big { grid-column:span 1; grid-template-columns:1fr; text-align:center; }
  .steps-row { flex-direction:column; }
  .step-arrow { transform:rotate(90deg); }
  .hero-title { font-size:2.8rem; }
  .cart-drawer { width:100%; }
  .vs-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .ingredients-row { grid-template-columns:repeat(2,1fr); }
  .goals-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item.tall { grid-row:span 1; }
  .science-stats { grid-template-columns:1fr; gap:.8rem; }
}