/* ============================================
   ZentraVet™ — Design System
   Organic & Earthy / Swiss Hybrid
   ============================================ */

:root {
  --green: #0F4C2A;
  --green-2: #1B6B3E;
  --green-soft: #EAF3ED;
  --green-deep: #0A3520;
  --gold: #D99B26;
  --gold-2: #B8801A;
  --gold-soft: #F7EAD0;
  --earth: #4A3B32;
  --sand: #F8F6F0;
  --sand-2: #F1EDE2;
  --white: #FFFFFF;
  --ink: #1A201C;
  --muted: #5A665E;
  --line: rgba(15, 76, 42, 0.14);
  --font-display: 'Cabinet Grotesk', 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lg: 0 24px 60px -20px rgba(15, 76, 42, 0.28);
  --shadow-md: 0 12px 34px -14px rgba(15, 76, 42, 0.22);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }
p.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.text-gold { color: var(--gold-2); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 14px 30px -12px rgba(15,76,42,0.55); }
.btn-green:hover { background: var(--green-2); box-shadow: 0 20px 40px -14px rgba(15,76,42,0.6); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 14px 30px -12px rgba(217,155,38,0.6); }
.btn-gold:hover { background: var(--gold-2); color: #fff; }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green-soft); }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--gold); color: var(--ink); }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.link-arrow {
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.link-arrow:hover { gap: 14px; color: var(--gold-2); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  position: relative;
  z-index: 60;
}
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.25s; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 14px; height: 14px; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right .topbar-loc { color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(15,76,42,0.25);
}
body.nav-open .site-header { z-index: 70; }
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 999px;
  position: relative;
  transition: color 0.25s, background-color 0.25s;
}
.main-nav a:hover { color: var(--green-2); background: var(--green-soft); }
.main-nav a.active { color: var(--green); background: var(--green-soft); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: relative;
  z-index: 70;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF9EC 0%, var(--sand) 68%);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: clamp(48px, 8vh, 90px);
  padding-bottom: clamp(280px, 42vw, 430px);
}
.hero h1 .mask-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .mask-line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: riseUp 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
  will-change: transform;
}
@keyframes riseUp { to { transform: translateY(0); } }
.hero-sub {
  max-width: 560px;
  margin-top: 26px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.85s forwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.05s forwards;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.25s forwards;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scene {
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  z-index: 2;
  pointer-events: none;
}
.hero-scene svg { width: 100%; height: clamp(340px, 58vh, 560px); display: block; }
.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.8s forwards;
}
.scroll-hint::after {
  content: "";
  width: 1.5px; height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: hintDrop 1.8s ease-in-out infinite;
}
@keyframes hintDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* SVG scene animations */
.blade { transform-box: fill-box; transform-origin: bottom center; animation: sway 4.4s ease-in-out infinite; }
@keyframes sway { 0%,100% { transform: rotate(-2.6deg); } 50% { transform: rotate(2.8deg); } }
.cow-head { transform-box: fill-box; transform-origin: 12% 22%; animation: headbob 5.2s ease-in-out infinite; }
@keyframes headbob { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(1.6deg) translateY(3px); } }
.cow-eye { transform-box: fill-box; transform-origin: center; animation: blink 5.6s ease-in-out infinite; }
@keyframes blink { 0%, 91%, 100% { transform: scaleY(1); } 94%, 96% { transform: scaleY(0.08); } }
.cow-ear { transform-box: fill-box; transform-origin: 80% 80%; animation: earflick 6.4s ease-in-out infinite; }
@keyframes earflick { 0%, 78%, 100% { transform: rotate(0deg); } 82% { transform: rotate(-16deg); } 86% { transform: rotate(6deg); } 90% { transform: rotate(0deg); } }
.cow-body { transform-box: fill-box; transform-origin: center bottom; animation: breathe 4.6s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(1.014); } }
.cow-tail { transform-box: fill-box; transform-origin: top center; animation: tailswish 4.2s ease-in-out infinite; }
@keyframes tailswish { 0%,100% { transform: rotate(-7deg); } 50% { transform: rotate(11deg); } }
.cloud { animation: drift 46s ease-in-out infinite alternate; }
.cloud-2 { animation-duration: 62s; animation-delay: -18s; }
@keyframes drift { from { transform: translateX(-40px); } to { transform: translateX(60px); } }
.sun-glow { transform-box: fill-box; transform-origin: center; animation: sunpulse 7s ease-in-out infinite; }
@keyframes sunpulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.bird { animation: birdFloat 9s ease-in-out infinite alternate; }
.bird-2 { animation-delay: -4s; }
@keyframes birdFloat { from { transform: translate(0,0); } to { transform: translate(46px,-14px); } }
.tree-canopy { transform-box: fill-box; transform-origin: bottom center; animation: sway 6.8s ease-in-out infinite; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green);
  color: var(--sand);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 6;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-white { background: var(--white); }
.section-green { background: var(--green-deep); color: var(--sand); }
.section-green h2, .section-green h3 { color: #fff; }
.section-green p { color: rgba(248,246,240,0.75); }
.section-sand2 { background: var(--sand-2); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Reveal ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}
html.js [data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Editorial statement ---------- */
.statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--green-deep);
}
.statement .text-gold { color: var(--gold-2); }
.split-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
.split-2 .side-copy p + p { margin-top: 18px; }
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 20px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: #fff;
}
.loc-chip svg { width: 15px; height: 15px; color: var(--gold-2); }

/* ---------- Manifesto chapters ---------- */
.chapters { border-top: 1.5px solid var(--line); }
.chapter {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(34px, 5vw, 58px) 0;
  border-bottom: 1.5px solid var(--line);
  align-items: baseline;
  transition: background-color 0.4s;
}
.chapter-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-2);
  letter-spacing: 0.2em;
}
.chapter h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.chapter p { color: var(--muted); max-width: 560px; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.35s;
}
.product-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(217,155,38,0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(217,155,38,0.5); }
.product-card:hover::before { opacity: 1; }
.product-card .card-idx {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.product-card h3 { margin-top: 18px; font-size: 1.25rem; }
.product-card .card-cat {
  font-size: 0.8rem;
  color: var(--gold-2);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.product-card p.card-desc { font-size: 0.88rem; color: var(--muted); margin-top: 12px; flex: 1; }
.product-card .card-link {
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.product-card:hover .card-link { gap: 14px; color: var(--gold-2); }

/* CSS pack mockup */
.pack-stage {
  height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 6px 0 4px;
  position: relative;
}
.pack-stage::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 16px;
  background: radial-gradient(ellipse at center, rgba(15,76,42,0.28), transparent 70%);
}
.pack {
  width: 108px; height: 150px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(160deg, var(--green-2), var(--green-deep));
  position: relative;
  box-shadow: inset -10px -8px 20px rgba(0,0,0,0.28), inset 8px 8px 16px rgba(255,255,255,0.12);
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .pack, .pack-spot:hover .pack { transform: translateY(-6px) rotate(-2deg); }
.pack::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 18px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #EDBE55, var(--gold-2));
  box-shadow: inset -4px -3px 6px rgba(0,0,0,0.2);
}
.pack-label {
  position: absolute;
  left: 9px; right: 9px; top: 34px; bottom: 16px;
  background: var(--sand);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 5px;
  text-align: center;
}
.pack-label .pl-brand {
  font-family: var(--font-mono);
  font-size: 0.42rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-2);
}
.pack-label .pl-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  line-height: 1.1;
  color: var(--green-deep);
}
.pack-label .pl-band {
  width: 70%;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.pack.pending::after {
  content: "PACK SHOT PLACEHOLDER";
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- Audience triptych ---------- */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trip-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.trip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trip-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s var(--ease-out);
}
.trip-card:hover img { transform: scale(1.06); }
.trip-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(10,53,32,0.05) 30%, rgba(10,53,32,0.92) 82%);
  z-index: -1;
}
.trip-card .trip-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.trip-card h3 { color: #fff; font-size: 1.45rem; }
.trip-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 10px; }
.trip-card .card-link { color: #fff; margin-top: 18px; }
.trip-card:hover .card-link { color: var(--gold); }

/* ---------- Photo band ---------- */
.photo-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
}
.photo-band img {
  position: absolute; inset: -12% 0;
  width: 100%; height: 124%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,53,32,0) 30%, rgba(10,53,32,0.85));
  z-index: -1;
}
.photo-band .band-copy { padding: clamp(48px, 7vw, 90px) 0; color: #fff; max-width: 720px; }
.photo-band .band-copy .statement { color: #fff; }
.photo-band .band-copy .eyebrow { color: var(--gold); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--green-deep), var(--green) 60%, var(--green-2));
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(44px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 32px;
  align-items: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,155,38,0.35), transparent 70%);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 520px; }
.cta-banner .cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(248,246,240,0.75);
  padding: clamp(56px, 8vw, 90px) 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
}
.footer-brand img { height: 58px; width: auto; background: var(--sand); padding: 10px 18px; border-radius: 14px; }

.iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.iso-badge svg { width: 16px; height: 16px; flex: none; }

/* Product photo cards (real pack shots) */
.product-photo {
  height: 240px;
  background: linear-gradient(170deg, #ffffff, var(--sand-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 18px;
  overflow: hidden;
  padding: 16px;
}
.product-photo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(15,76,42,0.14));
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-photo img { transform: translateY(-6px) scale(1.05); }
.footer-brand p { font-size: 0.88rem; margin-top: 18px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: 0.88rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(248,246,240,0.55);
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #22B45E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(34,180,94,0.6);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }
.wa-float::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34,180,94,0.5);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 78%);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0 clamp(56px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -160px; right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,155,38,0.28), transparent 70%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; margin-top: 18px; font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; margin-top: 20px; font-size: 1.05rem; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ---------- Pending badge (content placeholder marker) ---------- */
.pending-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-soft);
  border: 1px dashed rgba(184,128,26,0.5);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 14px;
}
.pending-note {
  border: 1.5px dashed rgba(184,128,26,0.55);
  background: var(--gold-soft);
  border-radius: 14px;
  padding: 20px 24px;
  color: var(--earth);
  font-size: 0.9rem;
}

/* ---------- Product detail ---------- */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.pack-spot {
  background: radial-gradient(circle at 50% 30%, #fff 0%, var(--sand-2) 75%);
  border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pack-spot::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 40%), rgba(217,155,38,0.22), transparent 70%);
  pointer-events: none;
}
.pack-spot .pack { width: 190px; height: 264px; border-radius: 18px 18px 24px 24px; }
.pack-spot .pack::before { width: 96px; height: 30px; top: -24px; border-radius: 9px 9px 4px 4px; }
.pack-spot .pack-label { left: 15px; right: 15px; top: 58px; bottom: 26px; border-radius: 10px; gap: 9px; }
.pack-spot .pack-label .pl-brand { font-size: 0.62rem; }
.pack-spot .pack-label .pl-name { font-size: 1.05rem; }
.pack-spot .pack-label .pl-band { height: 6px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1.5px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
.spec-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  width: 220px;
  font-weight: 500;
}
.check-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.check-list li svg { width: 19px; height: 19px; color: var(--gold-2); flex: none; margin-top: 2px; }
.product-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--sand);
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27,107,62,0.12);
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.contact-info-card {
  background: var(--green-deep);
  color: rgba(248,246,240,0.8);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(30px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,155,38,0.3), transparent 70%);
}
.contact-info-card h3 { color: #fff; margin-bottom: 24px; }
.contact-info-card li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; font-size: 0.92rem; position: relative; }
.contact-info-card li svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-info-card li a:hover { color: var(--gold); }
.contact-info-card .c-label { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.map-wrap {
  margin-top: clamp(40px, 6vw, 70px);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; filter: saturate(0.9); }

/* ---------- Feature / value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.value-card .v-icon svg { width: 24px; height: 24px; color: var(--green-2); }
.value-card h3 { font-size: 1.15rem; }
.value-card p { font-size: 0.9rem; color: var(--muted); margin-top: 10px; }
.value-card .v-num { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--gold-2); display: block; margin-bottom: 14px; }

/* ---------- Blog / knowledge ---------- */
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.knowledge-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.knowledge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.knowledge-card .k-cover {
  height: 170px;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.knowledge-card .k-cover svg { width: 46px; height: 46px; color: rgba(255,255,255,0.85); }
.knowledge-card .k-cover::after {
  content: "";
  position: absolute; bottom: -60px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,155,38,0.4), transparent 70%);
}
.knowledge-card .k-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.knowledge-card .k-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); }
.knowledge-card h3 { margin-top: 12px; font-size: 1.15rem; }
.knowledge-card p { font-size: 0.88rem; color: var(--muted); margin-top: 10px; flex: 1; }
.knowledge-card .k-soon {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Legal pages ---------- */
.legal-body { max-width: 820px; }
.legal-body h3 { margin: 38px 0 14px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.95rem; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body li { margin-bottom: 8px; }
.legal-body p + p { margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-deep);
}
.faq-q .faq-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.4s var(--ease-out), background-color 0.3s;
}
.faq-q .faq-icon svg { width: 14px; height: 14px; color: var(--green); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a p { padding: 0 0 24px; color: var(--muted); font-size: 0.93rem; max-width: 720px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { position: relative; padding-top: 22px; border-top: 2px solid var(--line); }
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  display: block;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.08rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); margin-top: 9px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.media-frame {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; transition: transform 0.9s var(--ease-out); }
.media-frame:hover img { transform: scale(1.04); }
.media-frame .frame-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.tick-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
}
.tick svg { width: 13px; height: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.97); }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 110px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: -20px 0 60px rgba(10,53,32,0.18);
    z-index: 65;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.05rem; padding: 14px 16px; border-radius: 14px; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(10,53,32,0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 62;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}
@media (max-width: 860px) {
  .split-2, .grid-2, .contact-grid, .product-hero-grid { grid-template-columns: 1fr; }
  .triptych, .value-grid, .knowledge-grid, .related-strip { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 60px 1fr; }
  .chapter p { grid-column: 2; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-content { padding-bottom: clamp(220px, 60vw, 340px); }
  .hero-scene svg { height: 300px; }
  .topbar-left { gap: 14px; }
  .topbar-right .topbar-loc { display: none; }
  .pack-spot { min-height: 340px; }
}
@media (max-width: 640px) {
  .product-grid, .steps, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 0.72rem; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .scroll-hint { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .hero h1 .mask-line > span { transform: none; animation: none; }
  .hero-sub, .hero-ctas, .hero-meta { opacity: 1; animation: none; }
}
