/* ============================================================
   ECOKUKU FARM LTD — Design System v3
   Option B: Warm Mid-tone
   Warm dark base. Gold accent. Terra CTA only.
   ============================================================ */

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

:root {
  /* ── PALETTE ─────────────────────────────────────────────
     Neutral 1: #1a0f05 warm near-black
     Neutral 2: #2e1f0e warm dark brown
     Base:      #f5efe3 warm cream (all text)
     Contrast:  #c8960c gold (prices, highlights)
     Accent:    #c04a28 terracotta (CTAs ONLY)
     ──────────────────────────────────────────────────── */
  --ink:          #1a0f05;
  --ink-2:        #231508;
  --ink-3:        #2e1f0e;
  --ink-4:        #3d2c18;
  --ink-5:        #4a3520;
  --gold:         #c8960c;
  --gold-lt:      #d4a820;
  --gold-dim:     rgba(200,150,12,0.12);
  --gold-line:    rgba(200,150,12,0.25);
  --terra:        #c04a28;
  --terra-lt:     #d45a35;
  --terra-dim:    rgba(192,74,40,0.1);
  --cream:        #f5efe3;
  --cream-dim:    rgba(245,239,227,0.55);
  --cream-soft:   rgba(245,239,227,0.25);
  --cream-faint:  rgba(245,239,227,0.08);
  --white:        #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --section-y:    clamp(64px, 10vw, 112px);
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 32px rgba(200,150,12,0.12);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── GRAIN TEXTURE ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
section    { padding: var(--section-y) 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
/* Golden ratio scale: base 1rem × 1.618 */
.t-hero { font-family: var(--font-display); font-size: clamp(2.6rem,5.5vw,4.4rem); line-height: 1.08; font-weight: 400; }
.t-h1   { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);       line-height: 1.12; font-weight: 400; }
.t-h2   { font-family: var(--font-display); font-size: clamp(1.5rem,2.8vw,2rem);   line-height: 1.2;  font-weight: 400; }
.t-h3   { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.4rem);   line-height: 1.3;  font-weight: 500; }
em      { font-style: italic; color: var(--gold-lt); }

/* ── LABEL ──────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm); border: none;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 4px 20px rgba(200,150,12,0.3);
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 8px 28px rgba(200,150,12,0.45); }
.btn-terra {
  background: var(--terra); color: var(--white);
  box-shadow: 0 4px 20px rgba(192,74,40,0.28);
}
.btn-terra:hover { background: var(--terra-lt); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,239,227,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); background: var(--gold-dim); }
.btn-outline-gold {
  background: transparent; color: var(--gold-lt);
  border: 1px solid var(--gold-line);
}
.btn-outline-gold:hover { background: var(--gold-dim); border-color: var(--gold); }
.btn-white { background: var(--white); color: var(--terra); font-weight: 600; }
.btn-white:hover { background: var(--cream); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--ink-3); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-card), var(--shadow-gold); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), backdrop-filter 300ms var(--ease);
}
#nav.scrolled {
  background: rgba(26,15,5,0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--ink-4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,48px);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line); border-radius: var(--r-sm);
  display: grid; place-items: center; font-size: 1.1rem;
  background: var(--gold-dim);
}
.nav-logo-name    { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--cream); line-height: 1.2; }
.nav-logo-country { font-size: 0.68rem; color: var(--cream-dim); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 0.85rem; color: var(--cream-dim);
  transition: color 150ms, background 150ms;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); background: var(--cream-faint); }
.nav-book {
  background: var(--terra) !important; color: var(--white) !important;
  font-weight: 500; padding: 8px 18px !important; margin-left: 8px;
  border-radius: var(--r-sm);
}
.nav-book:hover { background: var(--terra-lt) !important; }
.nav-ham { display: none; background: none; border: none; color: var(--cream); padding: 8px; }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 850;
  background: rgba(26,15,5,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-4);
  padding: 16px clamp(20px,5vw,48px) 24px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: all; display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 1rem; color: var(--cream-dim);
  border-bottom: 1px solid var(--ink-4);
  transition: color 150ms;
}
.mobile-menu a:hover { color: var(--gold-lt); }
.mobile-menu a:last-child { border: none; }

/* ── WHATSAPP ────────────────────────────────────────────── */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 800; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; border: none;
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 200ms var(--ease-spring), box-shadow 200ms var(--ease);
  position: relative;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-btn svg   { width: 28px; height: 28px; fill: white; }
.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--terra); color: white;
  font-size: 0.65rem; font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--ink);
}
.wa-panel {
  position: fixed; bottom: 100px; right: 28px; z-index: 800;
  width: 348px; background: var(--ink-3);
  border: 1px solid var(--ink-4); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: scale(0.95) translateY(12px); opacity: 0; pointer-events: none;
  transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}
.wa-panel.open { transform: none; opacity: 1; pointer-events: all; }
.wa-panel-head {
  background: #075e54; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.wa-av         { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.15); display: grid; place-items: center; font-size: 1.4rem; }
.wa-head-name  { font-weight: 600; color: white; font-size: 0.95rem; }
.wa-head-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.wa-close-btn  { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.1rem; padding: 4px; }
.wa-body       { padding: 18px; }
.wa-bubble     {
  background: var(--ink-4); border: 1px solid var(--ink-5);
  border-radius: 0 var(--r-md) var(--r-md) var(--r-md);
  padding: 14px 16px; font-size: 0.875rem; color: var(--cream-dim);
  line-height: 1.6; margin-bottom: 16px;
}
.wa-form input,
.wa-form select {
  width: 100%; padding: 11px 14px; margin-bottom: 10px;
  background: var(--ink-4); border: 1px solid var(--ink-5);
  border-radius: var(--r-sm); font-family: var(--font-body);
  font-size: 0.875rem; color: var(--cream); outline: none;
  transition: border-color 150ms;
}
.wa-form input:focus, .wa-form select:focus { border-color: #25d366; }
.wa-form select option { background: var(--ink-3); }
.wa-submit {
  width: 100%; padding: 12px; background: #25d366; color: white; border: none;
  border-radius: var(--r-sm); font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 150ms;
}
.wa-submit:hover { background: #1ebe5d; }
.wa-note { font-size: 0.72rem; color: var(--cream-dim); text-align: center; margin-top: 8px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  background: var(--ink-2); padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(200,150,12,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(192,74,40,0.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: linear-gradient(rgba(245,239,227,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,239,227,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-title    { color: var(--cream); margin-bottom: 20px; }
.hero-sub      { color: var(--cream-dim); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.hero-actions  { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-stats    { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--ink-4); border-radius: var(--r-md); overflow: hidden; }
.hero-stat     { background: var(--ink-3); padding: 18px 12px; text-align: center; }
.hero-stat-n   { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.hero-stat-l   { font-size: 0.7rem; color: var(--cream-dim); font-weight: 400; }
.hero-card     {
  background: var(--ink-3); border: 1px solid var(--ink-4);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-card-top { padding: 18px 22px 0; display: flex; justify-content: space-between; align-items: center; }
.hero-card-lbl { font-size: 0.68rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 18px 0; }
.mini-card {
  background: var(--ink-4); border: 1px solid var(--ink-5);
  border-radius: var(--r-md); padding: 16px 14px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.mini-card:hover { border-color: var(--gold-line); background: rgba(200,150,12,0.06); }
.mini-cap  { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.mini-name { font-size: 0.7rem; color: var(--cream-dim); margin-bottom: 8px; }
.mini-was  { font-size: 0.68rem; color: rgba(245,239,227,0.25); text-decoration: line-through; }
.mini-now  { font-size: 0.85rem; color: var(--gold-lt); font-weight: 500; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 18px 18px; border-top: 1px solid var(--ink-4); margin-top: 14px;
}
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 100px;
  background: var(--ink-4); border: 1px solid var(--ink-5);
  font-size: 0.7rem; color: var(--cream-dim);
}
.trust-pill strong { color: var(--gold-lt); }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee       { overflow: hidden; background: var(--terra); padding: 13px 0; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item  { flex-shrink: 0; padding: 0 28px; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; }
.marquee-item::after { content: '·'; margin-left: 28px; color: rgba(255,255,255,0.35); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEAD ───────────────────────────────────────── */
.section-head          { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .label { justify-content: center; }
.section-head.centered .label::before { display: none; }
.section-sub  { color: var(--cream-dim); font-size: 0.95rem; font-weight: 300; line-height: 1.8; max-width: 520px; margin-top: 14px; }
.section-head.centered .section-sub { margin: 14px auto 0; }

/* ── PRODUCT CARDS ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card  {
  background: var(--ink-3); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-card), var(--shadow-gold); }
.product-img   { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-4); }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 400ms var(--ease); }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-fallback { position: absolute; inset: 0; display: none; place-items: center; font-size: 3rem; background: var(--ink-4); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--ink-5); color: var(--gold-lt); border: 1px solid var(--gold-line); font-size: 0.65rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.product-badge.gold { background: var(--gold-dim); }
.product-body  { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream-dim); margin-bottom: 6px; }
.product-name  { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); margin-bottom: 14px; }
.product-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; flex: 1; }
.product-feat  { font-size: 0.8rem; color: var(--cream-dim); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.product-feat::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.product-footer { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--ink-4); }
.price-was     { font-size: 0.7rem; color: rgba(245,239,227,0.25); text-decoration: line-through; margin-bottom: 2px; }
.price-now     { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-lt); }
.price-note    { font-size: 0.65rem; color: var(--cream-dim); margin-top: 2px; }
.order-btn     {
  background: var(--ink-5); color: var(--cream); border: 1px solid var(--ink-5);
  padding: 9px 16px; border-radius: var(--r-sm);
  font-size: 0.8rem; font-weight: 500;
  transition: background 150ms, border-color 150ms, color 150ms, transform 150ms;
}
.order-btn:hover { background: var(--terra); border-color: var(--terra); color: white; transform: translateY(-1px); }

/* ── COMPARE TABLE ──────────────────────────────────────── */
.compare-wrap  { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--ink-4); box-shadow: var(--shadow-card); margin-top: 52px; }
.compare       { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--ink-4); font-size: 0.85rem; }
.compare thead th { background: var(--ink-3); color: var(--cream-dim); font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare thead th.hl { background: var(--terra); color: white; }
.compare tbody tr:hover td { background: var(--ink-3); }
.compare tbody td.hl { background: var(--terra-dim); }
.compare tbody tr:last-child td { border-bottom: none; }
.c-was   { display: block; font-size: 0.68rem; color: rgba(245,239,227,0.25); text-decoration: line-through; }
.c-price { font-weight: 600; color: var(--gold-lt); }
.c-check { color: var(--gold); font-weight: 700; font-size: 1rem; }
.compare-actions { padding: 16px; background: var(--ink-2); border-top: 1px solid var(--ink-4); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── CHICKS GRID ────────────────────────────────────────── */
.chicks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.chick-card  {
  background: var(--ink-3); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.chick-card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow-card), var(--shadow-gold); }
.chick-img   { aspect-ratio: 1; overflow: hidden; background: var(--ink-4); position: relative; }
.chick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.chick-card:hover .chick-img img { transform: scale(1.05); }
.chick-img-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3rem; }
.chick-body  { padding: 16px; }
.chick-name  { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; color: var(--cream); }
.chick-desc  { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.6; margin-bottom: 12px; }
.chick-pricing { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.chick-pricing td { padding: 5px 0; font-size: 0.78rem; border-bottom: 1px solid var(--ink-4); }
.chick-pricing td:first-child { color: var(--cream-dim); }
.chick-pricing td:last-child  { color: var(--gold-lt); font-weight: 500; text-align: right; }
.chick-pricing tr:last-child td { border-bottom: none; }
.chick-link  { font-size: 0.8rem; color: var(--gold); font-weight: 500; transition: color 150ms; }
.chick-link:hover { color: var(--gold-lt); }

/* ── WHY US ─────────────────────────────────────────────── */
.why-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-feats   { display: flex; flex-direction: column; gap: 26px; }
.why-feat    {
  display: flex; gap: 16px; align-items: flex-start;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.why-feat.visible { opacity: 1; transform: none; }
.why-icon    { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--gold-dim); border: 1px solid var(--gold-line); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.why-feat h4 { font-size: 0.92rem; font-weight: 600; color: var(--cream); margin-bottom: 5px; }
.why-feat p  { font-size: 0.84rem; color: var(--cream-dim); line-height: 1.7; }
.why-visual  { background: var(--ink-3); border: 1px solid var(--ink-4); border-radius: var(--r-xl); padding: 40px; }
.why-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.why-stat    { background: var(--ink-4); border: 1px solid var(--ink-5); border-radius: var(--r-md); padding: 20px 16px; text-align: center; }
.why-stat-n  { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-lt); line-height: 1; }
.why-stat-l  { font-size: 0.7rem; color: var(--cream-dim); margin-top: 5px; }
.contact-strip { display: flex; align-items: center; gap: 14px; background: var(--ink-4); border: 1px solid var(--ink-5); border-radius: var(--r-md); padding: 16px; }
.contact-strip-icon { font-size: 1.3rem; }
.contact-strip a { color: var(--gold-lt); font-weight: 500; }
.contact-strip span { font-size: 0.75rem; color: var(--cream-dim); display: block; }

/* ── PROCESS ────────────────────────────────────────────── */
.process-section { background: var(--ink-3); border-top: 1px solid var(--ink-4); border-bottom: 1px solid var(--ink-4); }
.process-steps   { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 52px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 23px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.process-step  { text-align: center; }
.step-num      {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-lt);
}
.step-title    { font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 7px; }
.step-desc     { font-size: 0.78rem; color: var(--cream-dim); line-height: 1.7; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.testi-card {
  background: var(--ink-3); border: 1px solid var(--ink-4);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-card);
  transition: border-color 220ms var(--ease);
}
.testi-card:hover { border-color: var(--gold-line); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-quote { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: var(--cream-dim); line-height: 1.8; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av    { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-line); display: grid; place-items: center; font-weight: 600; font-size: 0.88rem; color: var(--gold-lt); flex-shrink: 0; }
.testi-name  { font-weight: 600; font-size: 0.85rem; color: var(--cream); }
.testi-loc   { font-size: 0.72rem; color: var(--cream-dim); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 52px; }
.faq-item { background: var(--ink-3); border: 1px solid var(--ink-4); border-radius: var(--r-lg); overflow: hidden; transition: border-color 200ms; }
.faq-item:hover { border-color: var(--gold-line); }
.faq-q    {
  width: 100%; padding: 18px 22px; text-align: left; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 0.875rem; font-weight: 500; color: var(--cream);
  transition: background 150ms;
}
.faq-q:hover { background: var(--ink-4); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--ink-4); border: 1px solid var(--ink-5); display: grid; place-items: center; font-size: 0.95rem; flex-shrink: 0; transition: transform 250ms var(--ease), background 150ms; color: var(--cream-dim); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terra); border-color: var(--terra); color: white; }
.faq-a    { display: none; padding: 0 22px 18px; font-size: 0.84rem; color: var(--cream-dim); line-height: 1.8; border-top: 1px solid var(--ink-4); padding-top: 14px; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band  { background: var(--terra); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,0,0,0.12) 0%, transparent 70%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band .t-h2 { color: white; margin: 12px 0 16px; }
.cta-band p     { color: rgba(255,255,255,0.72); max-width: 460px; margin: 0 auto 32px; font-size: 0.95rem; }
.cta-actions    { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── MAP ────────────────────────────────────────────────── */
.map-iframe    { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--ink-4); box-shadow: var(--shadow-card); }
.map-cards     { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.map-card      { background: var(--ink-3); border: 1px solid var(--ink-4); border-radius: var(--r-md); padding: 20px; text-align: center; }
.map-card.gold { background: var(--gold-dim); border-color: var(--gold-line); }
.map-card-icon { font-size: 1.7rem; margin-bottom: 8px; }
.map-card-title{ font-weight: 600; font-size: 0.85rem; color: var(--cream); margin-bottom: 4px; }
.map-card.gold .map-card-title { color: var(--gold-lt); }
.map-card-sub  { font-size: 0.78rem; color: var(--cream-dim); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer         { background: var(--ink-2); border-top: 1px solid var(--ink-4); }
.footer-inner  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding: 64px 0 44px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin: 12px 0 10px; }
.footer-brand-desc { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.75; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--ink-3); border: 1px solid var(--ink-4);
  display: grid; place-items: center; font-size: 0.8rem; color: var(--cream-dim);
  transition: background 150ms, border-color 150ms, color 150ms;
}
.footer-social a:hover { background: var(--gold-dim); border-color: var(--gold-line); color: var(--gold-lt); }
.footer-col h5 { color: rgba(245,239,227,0.4); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 0.8rem; color: var(--cream-dim); transition: color 150ms; }
.footer-col li a:hover { color: var(--gold-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p, .footer-contact-item a { font-size: 0.8rem; color: var(--cream-dim); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid var(--ink-4); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(245,239,227,0.22); }
.footer-bottom a { color: rgba(245,239,227,0.22); transition: color 150ms; }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ── BREED PAGES ────────────────────────────────────────── */
.sub-hero      { background: var(--ink-2); border-bottom: 1px solid var(--ink-4); padding: 120px 0 68px; }
.breadcrumb    { font-size: 0.75rem; color: var(--cream-dim); margin-bottom: 18px; }
.breadcrumb a  { color: var(--cream-dim); transition: color 150ms; }
.breadcrumb a:hover { color: var(--gold-lt); }
.sub-page-title { color: var(--cream); margin-bottom: 14px; }
.sub-page-sub   { color: var(--cream-dim); font-size: 1rem; line-height: 1.8; max-width: 520px; font-weight: 300; }
.breed-detail   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.breed-img-block { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--ink-4); aspect-ratio: 4/3; background: var(--ink-4); position: relative; }
.breed-img-block img { width: 100%; height: 100%; object-fit: cover; }
.breed-img-placeholder { position: absolute; inset: 0; display: none; place-items: center; font-size: 5rem; }
.breed-stats    { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 24px 0; }
.breed-stat     { background: var(--ink-4); border: 1px solid var(--ink-5); border-radius: var(--r-md); padding: 18px 14px; text-align: center; }
.breed-stat-n   { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.breed-stat-l   { font-size: 0.7rem; color: var(--cream-dim); }
.breed-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.breed-feat     { font-size: 0.85rem; color: var(--cream-dim); display: flex; align-items: center; gap: 10px; }
.breed-feat::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── SITEMAP ────────────────────────────────────────────── */
.sitemap-section { background: var(--ink-3); border-top: 1px solid var(--ink-4); padding: 52px 0; }
.sitemap-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 28px; }
.sitemap-col h4  { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,239,227,0.35); margin-bottom: 12px; }
.sitemap-col ul  { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sitemap-col a   { font-size: 0.8rem; color: var(--cream-dim); transition: color 150ms; }
.sitemap-col a:hover { color: var(--gold-lt); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 44px; }
  .hero-card       { max-width: 480px; }
  .hero-stats      { grid-template-columns: repeat(2,1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: repeat(2,1fr); }
  .chicks-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sitemap-grid    { grid-template-columns: repeat(2,1fr); }
  .breed-detail    { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links       { display: none; }
  .nav-ham         { display: flex; align-items: center; }
  .process-steps   { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .faq-grid        { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 10px 12px; font-size: 0.78rem; }
}
@media (max-width: 640px) {
  section          { padding: clamp(48px,8vw,80px) 0; }
  .products-grid   { grid-template-columns: 1fr; }
  .chicks-grid     { grid-template-columns: 1fr 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .map-cards       { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
  .sitemap-grid    { grid-template-columns: 1fr 1fr; }
  .wa-panel        { width: calc(100vw - 32px); right: 16px; }
  .hero-stats      { grid-template-columns: repeat(2,1fr); }
  .breed-stats     { grid-template-columns: 1fr 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .hero-card-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .chicks-grid     { grid-template-columns: 1fr; }
}