/* ============================================================
   DRYZIL · MAIN STYLES
   Reads the knobs from tokens.css. Organised top-to-bottom:
   1. Reset / base      6. Stats        11. Process
   2. Typography        7. Gallery      12. Trust
   3. Utilities         8. Features     13. CTA
   4. Nav + progress    9. Philosophy   14. Footer
   5. Hero + marquee   10. (spacer)     15. Float · Motion · Responsive
   ============================================================ */

/* 1 ── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a   { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--mango); color: var(--card); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* 2 ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* 3 ── UTILITIES ─────────────────────────────────────────── */
.wrap    { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section  { padding: var(--section-y) 0; }
.band    { background: var(--bg-soft); }

/* Logo */
.logomark  { width: 30px; height: 30px; flex-shrink: 0; }
.logo-group{ display: flex; align-items: center; gap: 10px; }
.logo      { font-family: var(--font-display); font-weight: 560; font-size: 21px; letter-spacing: 0.01em; }

/* Decorative ring divider */
.ring-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto; width: fit-content; }
.ring-divider .line { width: 64px; height: 1px; background: linear-gradient(90deg, transparent, var(--card-border)); }
.ring-divider .line.right { background: linear-gradient(270deg, transparent, var(--card-border)); }
.ring {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at center, transparent 0, transparent 28%, var(--mango) 29%, var(--mango) 34%, transparent 35%, transparent 55%, var(--gold) 56%, var(--gold) 62%, transparent 63%);
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mango); color: var(--text);
  font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--gold); box-shadow: var(--shadow-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,246,232,0.35); color: var(--text-invert);
  font-weight: 500; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,246,232,0.7); background: rgba(255,246,232,0.1); }
.btn-secondary-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,246,232,0.35); color: var(--text-invert);
  font-weight: 500; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn-secondary-light:hover { border-color: rgba(255,246,232,0.7); background: rgba(255,246,232,0.1); }

/* 4 ── SCROLL PROGRESS + NAV ─────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: var(--z-progress); background: transparent; pointer-events: none;
}
.scroll-progress > span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--mango), var(--gold));
  transform-origin: left;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  padding: 20px 0;
  background: rgba(252,246,236,0);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
}
nav.scrolled {
  padding: 12px 0;
  background: rgba(252,246,236,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  position: relative; transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px;
  background: var(--mango); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mango); color: var(--text);
  font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: var(--radius-pill);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(224,138,60,0.5); }

/* 5 ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media-inner { height: 100%; will-change: transform; }      /* JS parallax target */
.hero-media svg {
  width: 100%; height: 105%; display: block;
  transform: scale(1.08); animation: hero-settle 1.8s var(--ease) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,7,0.15) 0%, rgba(20,13,7,0.1) 40%, rgba(20,13,7,0.78) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; padding: 0 0 90px; will-change: transform, opacity; }
.hero-content .wrap { max-width: 900px; }
.hero-content .eyebrow { color: rgba(255,246,232,0.75); }
.hero-content h1 { color: var(--text-invert); font-size: var(--fs-hero); margin: 16px 0 24px; }
.hero-content h1 em { font-style: italic; color: #FFD79A; }
.hero-content p.sub { font-size: var(--fs-lead); color: rgba(255,246,232,0.82); max-width: 520px; margin-bottom: 32px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1;
  width: 22px; height: 34px; border: 1.5px solid rgba(255,246,232,0.55);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cue::before {
  content: ''; width: 3px; height: 7px; border-radius: 2px; background: rgba(255,246,232,0.8);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop { 0%{opacity:1;transform:translateY(0);} 70%{opacity:0;transform:translateY(9px);} 100%{opacity:0;transform:translateY(0);} }

/* Marquee band (edge-faded) */
.marquee-band {
  border-block: 1px solid var(--card-border); background: var(--bg-soft);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; gap: 48px; animation: scroll-left 30s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--text-faint); text-transform: uppercase; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 6 ── STATS ─────────────────────────────────────────────── */
.stat-hero { text-align: center; }
.stat-hero .eyebrow { display: block; margin-bottom: 20px; }
.stat-hero h2 { font-size: var(--fs-display); max-width: 820px; margin: 0 auto; }
.stat-hero h2 .num { color: var(--mango-deep); }
.stat-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.stat-trio .cell { border-top: 1px solid var(--card-border); padding-top: 18px; text-align: left; }
.stat-trio .cell .n { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); color: var(--mango-deep); }
.stat-trio .cell .l { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* 7 ── GALLERY ───────────────────────────────────────────── */
.gallery-strip { padding: 0 0 var(--section-y); }
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; height: 460px; }
.gallery-grid figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery-grid svg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.gallery-grid figure:hover svg { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 18px; bottom: 16px; color: var(--text-invert);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

/* 8 ── FEATURES ──────────────────────────────────────────── */
.collection-section { padding: 80px 0 20px; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading h2 { font-size: var(--fs-display); margin-top: 12px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,243,0.9));
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(120,72,30,0.32); border-color: rgba(192,107,39,0.3); }
.product-card__media {
  position: relative;
  min-height: 220px;
  padding: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card__media svg {
  width: 72%;
  max-width: 160px;
  height: auto;
  z-index: 1;
}
.product-card__media svg ellipse,
.product-card__media svg circle,
.product-card__media svg path,
.product-card__media svg rect {
  shape-rendering: geometricPrecision;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--surface-900);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 40px rgba(9, 16, 25, 0.08);
}
.product-card__shape {
  position: absolute; inset: 18px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), transparent 30%), var(--card-shape);
  transform: rotate(-6deg);
  filter: saturate(1.05);
}
.product-card--mango .product-card__media { background: linear-gradient(135deg, #f7d8a7 0%, #e58a38 100%); }
.product-card--beet .product-card__media { background: linear-gradient(135deg, #eec4b7 0%, #c24e63 100%); }
.product-card--herb .product-card__media { background: linear-gradient(135deg, #e6efc8 0%, #7c9163 100%); }
.product-card--gift .product-card__media { background: linear-gradient(135deg, #f0dcc4 0%, #d29b53 100%); }
.product-card--mango .product-card__shape { --card-shape: linear-gradient(135deg, #f8e0b1, #c06b27); }
.product-card--beet .product-card__shape { --card-shape: linear-gradient(135deg, #f1c3c8, #96334a); }
.product-card--herb .product-card__shape { --card-shape: linear-gradient(135deg, #eef6d8, #5d7247); }
.product-card--gift .product-card__shape { --card-shape: linear-gradient(135deg, #f8e4c2, #b76d2f); }
.product-card__body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__body h3 { font-size: 1.25rem; }
.product-card__body p { color: var(--text-muted); font-size: 0.95rem; }
.product-card__body a { margin-top: auto; font-weight: 600; color: var(--mango-deep); }
.feature { padding: 80px 0; }
.feature .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature.reverse .wrap { direction: rtl; }
.feature.reverse .wrap > * { direction: ltr; }
.feature-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  opacity: 0; transform: scale(1.08);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.feature-media.in { opacity: 1; transform: scale(1); }
.feature-media svg { width: 100%; height: 100%; }
.feature-text { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s; }
.feature-text.in { opacity: 1; transform: translateY(0); }
.feature-text h2 { font-size: var(--fs-h2); margin: 16px 0 18px; }
.feature-text p { font-size: 17px; color: var(--text-muted); max-width: 440px; margin-bottom: 26px; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.feature.fruits .feature-tag { background: color-mix(in srgb, var(--mango) 16%, var(--bg)); color: var(--mango-deep); }
.feature.veg    .feature-tag { background: color-mix(in srgb, var(--sage) 16%, var(--bg));  color: var(--sage-deep); }
.feature.herb   .feature-tag { background: color-mix(in srgb, var(--gold) 20%, var(--bg));  color: #8A6412; }
.feature.mix    .feature-tag { background: color-mix(in srgb, var(--cherry) 16%, var(--bg)); color: var(--cherry-deep); }
.feature-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; transition: gap var(--dur-fast) var(--ease); }
.feature-link:hover { gap: 12px; }
.feature.fruits .feature-link { color: var(--mango-deep); }
.feature.veg    .feature-link { color: var(--sage-deep); }
.feature.herb   .feature-link { color: #8A6412; }
.feature.mix    .feature-link { color: var(--cherry-deep); }
.feature.custom .feature-tag { background: color-mix(in srgb, var(--gold) 18%, var(--bg)); color: #B65F18; }
.feature.custom .feature-link { color: #B65F18; }
.feature.custom .usp-list {
  margin: 20px 0 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}
.feature.custom .usp-list li { margin-bottom: 0.75rem; }

/* 9 ── PHILOSOPHY (pinned statement) ─────────────────────── */
.philosophy { text-align: center; }
.philosophy .wrap { max-width: 900px; }
.philosophy .eyebrow { display: block; margin-bottom: 28px; }
.philosophy h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; }
.philosophy .line { display: block; opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.philosophy.in .line { opacity: 1; transform: translateY(0); }
.philosophy.in .line:nth-child(2) { transition-delay: 0.12s; }
.philosophy.in .line:nth-child(3) { transition-delay: 0.24s; }
.philosophy h2 .accent { color: var(--mango-deep); font-style: italic; }

/* 11 ── PROCESS ──────────────────────────────────────────── */
.process-head { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.process-head h2 { font-size: var(--fs-h2); }
.process-head p { color: var(--text-muted); margin-top: 16px; font-size: 16px; }
.trays { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tray {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-md);
  padding: 32px 24px; box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tray:hover { transform: translateY(-6px); box-shadow: 0 1px 2px rgba(120,72,30,0.06), 0 24px 40px -18px color-mix(in srgb, var(--mango) 35%, transparent); }
.tray .idx { font-family: var(--font-mono); font-size: 13px; color: var(--mango-deep); }
.tray h3 { font-size: 22px; margin: 14px 0 10px; font-weight: 460; }
.tray p { font-size: 14.5px; color: var(--text-muted); }

/* 12 ── TRUST ────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-md);
  padding: 32px 24px; box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft), 0 20px 36px -20px rgba(120,72,30,0.3); }
.trust-item svg { width: 26px; height: 26px; stroke: var(--mango-deep); margin-bottom: 18px; }
.trust-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 460; margin-bottom: 8px; }
.trust-item p { font-size: 13.5px; color: var(--text-muted); }

/* 13 ── CTA ──────────────────────────────────────────────── */
.cta-section {
  position: relative; margin: 0 var(--gutter); border-radius: 32px; overflow: hidden;
  min-height: 440px; display: flex; align-items: center; justify-content: center; text-align: center;
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media svg { width: 100%; height: 100%; }
.cta-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(197,90,30,0.88), rgba(150,51,74,0.88)); }
.cta-inner { position: relative; z-index: 1; padding: 80px 40px; max-width: 720px; }
.cta-inner .eyebrow { color: rgba(255,247,236,0.75); }
.cta-inner h2 { color: #FFF7EC; font-size: var(--fs-display); margin: 18px 0 24px; }
.cta-inner h2 em { font-style: italic; color: #FFE1B8; }
.cta-inner p { color: rgba(255,247,236,0.88); font-size: 17px; margin-bottom: 36px; }
.cta-inner .btn-primary { background: #FFF7EC; color: var(--cherry-deep); }
.cta-inner .btn-primary:hover { background: #FFFFFF; box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25); }

/* 14 ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--bg-deep); border-top: 1px solid var(--card-border); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
footer .logo-group { margin-bottom: 14px; }
footer .col p, footer .col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
footer .col a:hover { color: var(--text); }
footer .col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--card-border); font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }

/* 15 ── WHATSAPP FLOAT ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: var(--z-float);
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #0B3B22; padding: 14px 20px 14px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14px; box-shadow: 0 10px 30px -8px rgba(0,0,0,0.35);
  transition: transform var(--dur-fast) var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-pulse { position: absolute; inset: 0; border-radius: var(--radius-pill); background: #25D366; animation: pulse 2.4s ease-out infinite; z-index: -1; }
@keyframes pulse { 0%{opacity:0.5;transform:scale(1);} 100%{opacity:0;transform:scale(1.3);} }

/* ── SCROLL REVEAL (generic) ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
/* staggered children inside a revealed grid */
.stagger.in > * { animation: rise 0.7s var(--ease) both; }
.stagger.in > *:nth-child(2) { animation-delay: 0.08s; }
.stagger.in > *:nth-child(3) { animation-delay: 0.16s; }
.stagger.in > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .wa-pulse, .scroll-cue::before { animation: none; }
  .hero-media svg { animation: none; transform: none; }
  .reveal, .feature-media, .feature-text, .philosophy .line { opacity: 1; transform: none; transition: none; }
  .stagger.in > * { animation: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-grid > figure:first-child { grid-column: span 2; height: 280px; }
  .gallery-col { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gallery-col figure { height: 200px; }
}
@media (max-width: 860px) {
  :root { --gutter: 22px; }
  .custom-points { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  nav { padding: 16px 0; }
  .nav-links { display: none; }               /* collapse links, keep CTA */
  .hero-content { padding-bottom: 64px; }
  .hero-content p.sub { font-size: 16px; }
  .btn-row { width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .stat-trio { gap: 12px; }
  .feature { padding: 56px 0; }
  .feature .wrap { grid-template-columns: 1fr; gap: 32px; }
  .feature.reverse .wrap { direction: ltr; }
  .feature-media { aspect-ratio: 16/10; }
  .trays { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-cta span.full { display: none; }
}
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .collection-grid { grid-template-columns: 1fr; }
  .logo { font-size: 18px; }
  .logomark { width: 26px; height: 26px; }
  .nav-cta { padding: 9px 15px; font-size: 13px; }
  .gallery-strip { padding-bottom: 80px; }
  .gallery-grid { gap: 10px; }
  .gallery-grid > figure:first-child { height: 220px; }
  .gallery-col figure { height: 160px; }
  .stat-trio { grid-template-columns: 1fr; gap: 14px; }
  .marquee-track span { font-size: 12px; }
  .trays, .trust-grid { grid-template-columns: 1fr; }
  .cta-section { border-radius: 22px; }
  .cta-inner { padding: 52px 22px; }
  .cta-inner .btn-primary { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; bottom: 18px; right: 18px; }
}
@media (max-width: 380px) {
  .stat-trio .cell .n { font-size: 1.7rem; }
}
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 90px; }
}
