/*
  CLIENT: Pandora Pet Mall
  TYPE: Local Business — Pet Retail Superstore (Calicut, Kerala)
  ART DIRECTION: Warm, premium, joyful pet-shop-as-destination. Editorial Italian-serif headlines
                 paired with a clean modern sans. Cream paper backgrounds. Deep forest green carries
                 trust and nature. Warm terracotta accent for joy and warmth. Cinematic, not cartoonish.
                 The benchmark is Anthropologie meets Petco's best-stocked store.
  PALETTE:
    - Cream paper (#FBF6EC) + ivory surfaces — warmth, organic
    - Forest green (#133b2c) — primary, trustworthy, natural
    - Warm terracotta (#d4632a) — accent for moments of joy, CTAs
    - Cocoa charcoal (#2a1d10) — text, grounded
  TYPOGRAPHY: Instrument Serif (display, italic-leaning) + DM Sans (body) — warm editorial pairing
  DENSITY: Spacious — let the brand breathe
  MOOD KEYWORDS: warm, premium, family, trustworthy, joyful, established
*/

/* =====  RESET & TOKENS  ===== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  /* Native smooth scroll for in-page anchor jumps. Wheel/trackpad
     scroll is fully native (no JS smoothing) — buttery on Chromium
     and Firefox, with no double-smoothing jitter. */
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img, svg, video { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

a { color: inherit; text-decoration: none; }

:root {
  /* Light theme — hex fallbacks first (work in every browser),
     oklch overrides second (used by Chrome/Firefox 113+ for nicer
     gamut handling). If oklch fails to parse, hex still applies. */
  --color-bg: #f6efe1;
  --color-bg: oklch(96.5% 0.022 84);
  --color-surface: #fbf7ec;
  --color-surface: oklch(99% 0.012 84);
  --color-surface-2: #ece1cc;
  --color-surface-2: oklch(94% 0.025 80);
  --color-text: #2c2419;
  --color-text: oklch(22% 0.025 50);
  --color-text-muted: #6b5f50;
  --color-text-muted: oklch(45% 0.02 60);
  --color-line: #cfc4ad;
  --color-line: oklch(82% 0.025 70);
  --color-primary: #2f5a44;
  --color-primary: oklch(34% 0.07 155);
  --color-primary-hover: #234738;
  --color-primary-hover: oklch(28% 0.07 155);
  --color-primary-soft: #dde9d8;
  --color-primary-soft: oklch(92% 0.04 155);
  --color-accent: #d97844;
  --color-accent: oklch(62% 0.16 45);
  --color-accent-soft: #f3e3cf;
  --color-accent-soft: oklch(94% 0.05 60);
  --color-dark: #2a2419;
  --color-dark: oklch(20% 0.025 50);
  --color-light: #faf6ec;
  --color-light: #fbf6e9;

  /* Typography */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(20, 20, 10, 0.06);
  --shadow-md: 0 6px 24px -4px rgba(20, 20, 10, 0.10);
  --shadow-lg: 0 20px 60px -12px rgba(20, 20, 10, 0.18);
  --shadow-xl: 0 30px 80px -20px rgba(20, 20, 10, 0.25);

  /* Transitions */
  --t-fast: 0.18s cubic-bezier(0.25, 0.1, 0.25, 1);
  --t-base: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container-max: 1480px;
  --container-pad: clamp(20px, 3.2vw, 64px);
}

[data-theme="dark"] {
  --color-bg: #1c1812;
  --color-bg: oklch(15% 0.018 60);
  --color-surface: #25201a;
  --color-surface: oklch(19% 0.022 60);
  --color-surface-2: #2e2820;
  --color-surface-2: oklch(23% 0.025 60);
  --color-text: #ece5d6;
  --color-text: oklch(94% 0.018 80);
  --color-text-muted: #a89e8b;
  --color-text-muted: #a89e8b;
  --color-line: #3d362c;
  --color-line: #4d4639;
  --color-primary: #79c197;
  --color-primary: oklch(72% 0.13 150);
  --color-primary-hover: #93d4ad;
  --color-primary-hover: oklch(82% 0.13 150);
  --color-primary-soft: #2e4536;
  --color-primary-soft: oklch(28% 0.05 150);
  --color-accent: #e3a06d;
  --color-accent: oklch(72% 0.16 50);
  --color-accent-soft: #4a3525;
  --color-accent-soft: oklch(28% 0.06 50);
  --color-dark: #0e0c08;
  --color-dark: oklch(8% 0.012 60);
  --color-light: #ece5d6;
  --color-light: oklch(94% 0.018 80);
}

/* Dark mode: keep feature cards dark to maintain contrast (don't flip to light green) */
[data-theme="dark"] .cat-feature,
[data-theme="dark"] .review-feature {
  background: #1d3a2b;
  border-color: #2d4f3e;
}
[data-theme="dark"] .cat-feature:hover {
  background: #15301f;
}

/* =====  BASE  ===== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--t-base), color var(--t-base);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* =====  TYPOGRAPHY  ===== */
.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-heading em {
  font-style: italic;
  color: var(--color-accent);
}

.section-heading-light { color: var(--color-light); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-5);
}

.eyebrow-light { color: #e8b87a; }

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-top: var(--s-6);
  max-width: 60ch;
}

.lead-light { color: #e3d9c4; }

.section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-top: var(--s-4);
}

/* =====  BUTTONS  ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast), background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  border: 1px solid transparent;
  will-change: transform;
}

.btn-lg { padding: 17px 30px; font-size: 16px; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}

.btn-ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-text);
}

.btn-light {
  background: var(--color-light);
  color: var(--color-dark);
}

.btn-light:hover { background: var(--color-bg); }

.btn-outline-light {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* =====  ANNOUNCEMENT BAR  ===== */
.announce {
  background: var(--color-dark);
  color: var(--color-light);
  overflow: hidden;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.announce-track {
  display: flex;
  gap: var(--s-6);
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.announce-track span { flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====  NAVIGATION  ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.nav.scrolled {
  /* Solid-ish background instead of blur — backdrop-filter is the
     single most expensive style during scroll in Chromium. Same
     visual feel, far less GPU work per frame. */
  background: rgba(246, 239, 225, 0.96);
  box-shadow: 0 1px 0 var(--color-line), 0 4px 20px -8px rgba(20, 20, 10, 0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--color-primary);
  flex-shrink: 0;
}

.logo svg,
.logo .logo-mark { transition: transform var(--t-base); }
.logo:hover svg,
.logo:hover .logo-mark { transform: rotate(-8deg); }

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-light);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(20, 20, 10, 0.08);
}
.footer .logo-mark { width: 40px; height: 40px; }

.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  gap: var(--s-8);
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a:hover { color: var(--color-text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  color: var(--color-text);
  transition: background var(--t-fast);
  position: relative;
}
.theme-toggle:hover { background: var(--color-surface); }
.theme-toggle .ico-sun { display: block; }
.theme-toggle .ico-moon { display: none; }
[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
[data-theme="dark"] .theme-toggle .ico-moon { display: block; }

.nav-cta { padding: 10px 20px; font-size: 14px; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--color-text);
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 100px var(--container-pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-links { display: flex; flex-direction: column; gap: var(--s-6); }
.m-link {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--color-text);
  font-style: italic;
}
.m-cta { color: var(--color-accent); }
.mobile-menu-foot { color: var(--color-text-muted); font-size: 14px; line-height: 1.7; }

/* =====  HERO  ===== */
.hero {
  position: relative;
  min-height: calc(100dvh - 80px);
  padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob-1 {
  width: 50vw; height: 50vw;
  top: -10%; left: -10%;
  background: radial-gradient(circle, var(--color-primary-soft), transparent 70%);
}
.hero-blob-2 {
  width: 40vw; height: 40vw;
  bottom: -15%; right: -5%;
  background: radial-gradient(circle, var(--color-accent-soft), transparent 70%);
}
.hero-blob-3 {
  width: 30vw; height: 30vw;
  top: 30%; left: 35%;
  background: radial-gradient(circle, var(--color-surface-2), transparent 70%);
  opacity: 0.45;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: multiply;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: inherit;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-8);
}

.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 120, 68, 0.5); }
  70%      { box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--s-8);
}

.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}
.hero-title .italic {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: var(--s-10);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-12);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}
.trust-item span {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 1px; height: 36px;
  background: var(--color-line);
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 600px;
  max-height: 70vh;
}

.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}

.hero-card-img {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-card-img svg,
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient fallbacks behind <img> — show when image fails / is missing */
.bg-dog { background: radial-gradient(circle at 35% 30%, #f6d9b6, #c89058 60%, #5a3614); }
.bg-cat { background: linear-gradient(140deg, #3d2415, #0e0805); }
.bg-fish { background: linear-gradient(180deg, #0d3d52, #06212e); }
.bg-storefront { background: linear-gradient(180deg, #1d4d3a, #0a2818); }
.bg-pup { background: radial-gradient(circle at 30% 30%, #d8a96a, #5a3614); }
.bg-fish-card { background: linear-gradient(140deg, #1a4d6f, #062235); }
.bg-bird-card { background: linear-gradient(140deg, #d4632a, #6e1f0d); }
.bg-kitten-card { background: radial-gradient(circle at 50% 30%, #2a3d2a, #0a1a0a); }

.hero-card-main {
  width: 70%;
  height: 65%;
  top: 5%; right: 0;
  z-index: 3;
  transform: rotate(2deg);
}
.hero-card-cat {
  width: 42%;
  height: 38%;
  bottom: 18%; left: 0;
  z-index: 4;
  transform: rotate(-4deg);
}
.hero-card-fish {
  width: 50%;
  height: 35%;
  bottom: 0; right: 8%;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-card-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  /* Removed backdrop-filter — solid pill is just as readable */
}
.hero-card-tag .tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-card-pill {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-floating {
  position: absolute;
  top: 0; left: 5%;
  z-index: 5;
}
.floating-pill {
  background: var(--color-accent);
  color: var(--color-light);
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =====  BRANDS MARQUEE  ===== */
.brands {
  padding: var(--s-12) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--s-8);
  font-weight: 500;
}
.brands-marquee { overflow: hidden; }
.brands-track {
  display: flex;
  gap: var(--s-8);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
  color: var(--color-text);
}
.brands-track span:nth-child(odd) { color: var(--color-text); }
.brands-track span:nth-child(even) { color: var(--color-accent); }

/* =====  ABOUT  ===== */
.about { padding: clamp(80px, 12vh, 160px) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-copy { padding-top: var(--s-8); }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-12);
  padding-top: var(--s-8);
  border-top: 1px solid var(--color-line);
}
.stat { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-accent);
  margin-left: 2px;
}
.stat p {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  margin-top: var(--s-2);
}

.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-main svg,
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-full);
}

.about-card {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 80%;
  max-width: 360px;
  background: var(--color-surface);
  padding: var(--s-8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-line);
}
.about-card-quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--color-accent);
  margin-bottom: var(--s-2);
}
.about-card p {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--s-6);
}
.about-card-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}
.about-card-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.about-card-author small {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* =====  SHOP / CATEGORIES  ===== */
.shop {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--color-surface);
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 760px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}

.cat-card {
  position: relative;
  padding: var(--s-8);
  border-radius: var(--r-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  min-height: 280px;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.cat-card.cat-feature {
  background: #22513a;     /* deeper, richer green for stronger contrast */
  color: #fbf6e9;
  border-color: #22513a;
  grid-column: span 1;
}
.cat-card.cat-feature h3 { color: #fdf9ee; }                         /* near-pure white headline */
.cat-card.cat-feature p { color: #ebe2cf; }                          /* warm ivory body */
.cat-card.cat-feature .cat-tag { color: #d9a96c; font-weight: 600; }  /* warm tan, 6.4:1 contrast */
.cat-card.cat-feature .cat-arrow { color: #fdf9ee; }
.cat-card.cat-feature:hover { background: #15462e; transform: translateY(-6px); }

.cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cat-feature .cat-icon {
  background: rgba(255,255,255,0.12);
  color: var(--color-light);
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.cat-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  flex: 1;
}
.cat-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.cat-arrow {
  position: absolute;
  bottom: var(--s-6); right: var(--s-6);
  font-size: 20px;
  color: var(--color-text-muted);
  transition: transform var(--t-base);
}
.cat-card:hover .cat-arrow {
  transform: translateX(4px);
  color: var(--color-text);
}

/* =====  WHY  ===== */
.why { padding: clamp(80px, 12vh, 160px) 0; }

.why-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-12);
  max-width: none;
  align-items: end;
}

.why-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
}

.why-row {
  display: grid;
  grid-template-columns: 100px 1fr 120px;
  gap: var(--s-12);
  padding: var(--s-12) 0;
  border-bottom: 1px solid var(--color-line);
  align-items: start;
  transition: background var(--t-base), padding-left var(--t-base);
  position: relative;
}
.why-row:hover {
  background: linear-gradient(90deg, transparent, var(--color-primary-soft), transparent);
  padding-left: var(--s-4);
}
.why-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--color-accent);
  line-height: 1;
}
.why-body h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--s-4);
}
.why-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.why-tag {
  justify-self: end;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  padding-top: var(--s-3);
}

/* =====  LIVE ANIMALS BAND  ===== */
.live {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--color-dark);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.live::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, #355942 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, #8a4a26 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}

.live-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-10);
}

.live-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.live-card {
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base);
}
.live-card:nth-child(2n) { transform: translateY(24px); }
.live-card:hover { transform: translateY(-6px); }
.live-card:nth-child(2n):hover { transform: translateY(18px); }

.live-img {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.live-img svg,
.live-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-card:hover .live-img img { transform: scale(1.06); }
.live-card-body { padding: var(--s-5); }
.live-card-body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.live-card-body small {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #756855;
  font-weight: 500;
}

/* Safety: any small/muted text inside dark-themed sections gets readable color */
.live .lead-light { color: #e6dcc8; }
.live .eyebrow-light { color: #d9a96c; font-weight: 600; }

/* =====  REVIEWS  ===== */
.reviews {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--color-surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.review-card {
  padding: var(--s-8);
  background: var(--color-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card.review-feature {
  background: #22513a;
  color: #fbf6e9;
  border-color: #22513a;
}
.review-card.review-feature p { color: #fdf9ee; }
.review-card.review-feature .review-author strong { color: #fdf9ee; }
.review-card.review-feature .review-author small { color: #d8d0c0; }
.review-card.review-feature .author-avatar {
  background: #fbf6e9;
  color: #22513a;
}

.review-stars {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
.review-feature .review-stars { color: #e8b87a; }

.review-card p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--color-text);
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-line);
}
.review-feature .review-author { border-top-color: rgba(255,255,255,0.2); }

/* =====  VISIT  ===== */
.visit {
  padding: clamp(80px, 12vh, 160px) 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  margin-top: var(--s-10);
  margin-bottom: var(--s-10);
}

.info-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s-5);
  align-items: start;
}
.info-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: grid;
  place-items: center;
}
.info-row strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.info-row p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}
.info-row a { color: var(--color-accent); border-bottom: 1px solid currentColor; }
.info-row a:hover { color: var(--color-primary); }

.visit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.visit-map {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-frame { width: 100%; height: 100%; }
.map-frame iframe { width: 100%; height: 100%; }

.map-pin {
  position: absolute;
  bottom: var(--s-5); left: var(--s-5);
  background: var(--color-bg);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}
.map-pin strong { display: block; font-size: 14px; color: var(--color-text); }
.map-pin small { font-size: 12px; color: var(--color-text-muted); }

/* =====  FAQ  ===== */
.faq { padding: clamp(80px, 12vh, 160px) 0; background: var(--color-surface); }

.faq-container { max-width: 920px; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-8) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-accent); }

.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
  font-family: var(--font-body);
  font-weight: 300;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--color-accent); color: var(--color-light); }

.faq-body {
  padding-bottom: var(--s-8);
  padding-right: var(--s-12);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 70ch;
}

/* =====  FINAL CTA  ===== */
.final-cta {
  padding: clamp(80px, 12vh, 140px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, var(--color-primary-soft), transparent 50%),
    radial-gradient(circle at 70% 80%, var(--color-accent-soft), transparent 50%),
    var(--color-bg);
}

.final-cta-inner { max-width: 760px; margin: 0 auto; }

.final-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--s-5);
}
.final-cta p {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--color-text-muted);
  margin-bottom: var(--s-10);
}

.final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

/* =====  FOOTER  ===== */
.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: var(--s-20) 0 var(--s-8);
}

.footer .logo { color: var(--color-accent); }
.footer .logo-name { color: var(--color-light); }
.footer .logo-sub { color: #a89e8b; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid #4d4639;
}

.footer-brand p {
  margin-top: var(--s-5);
  font-size: 14px;
  line-height: 1.6;
  color: #b9af9c;
  max-width: 30ch;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-4);
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #cabfa9;
}
.footer-col a {
  color: #cabfa9;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer-col a:hover {
  color: var(--color-light);
  border-bottom-color: currentColor;
}

.footer-bottom {
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 12px;
  color: #998f7d;
}
.footer-bottom a { color: var(--color-accent); }

/* =====  RESPONSIVE  ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { height: 500px; max-width: 600px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { position: relative; bottom: auto; left: auto; margin-top: -60px; margin-left: 20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .why-head { grid-template-columns: 1fr; gap: var(--s-6); }
  .why-row { grid-template-columns: 60px 1fr; gap: var(--s-6); }
  .why-tag { display: none; }
  .why-num { font-size: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero-visual { height: 420px; }
  .hero-trust { gap: var(--s-4); }
  .trust-item strong { font-size: 22px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .cat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); padding-bottom: var(--s-8); }
  .footer-bottom { justify-content: flex-start; }

  .about-card {
    margin-top: -40px;
    margin-left: 0;
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .why-row { padding: var(--s-8) 0; }

  .info-row { grid-template-columns: 40px 1fr; gap: var(--s-3); }
  .info-icon { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .visit-cta { flex-direction: column; }
  .visit-cta .btn { width: 100%; }
  .final-buttons { flex-direction: column; }
  .final-buttons .btn { width: 100%; }
  .live-card:nth-child(2n) { transform: translateY(0); }
  .live-card:nth-child(2n):hover { transform: translateY(-4px); }
  .exotic-img { aspect-ratio: 4/3; }
  .map-placeholder strong { font-size: 18px; }
  .map-placeholder span { font-size: 10px; }
  /* Slightly larger tap targets */
  .faq-item summary { padding: 18px 20px; min-height: 56px; }
  .live-card-body { padding: var(--s-4); }
  .live-card-body h4 { font-size: 18px; }
  /* Stop heavy parallax on tiny screens */
  .parallax-img { transform: none !important; }
}

/* ─────────────────────────  PERFORMANCE  ───────────────────────── */
/* GPU promotion ONLY for elements that actually animate continuously
   (marquees). Avoid will-change on cards — too many layers hurt scroll. */
.brands-track, .announce-track {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Map placeholder — replaces heavy iframe until needed */
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background:
    linear-gradient(135deg, #f4ecd6 0%, #e9dbb6 100%);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, #e0d0a3 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, #e0d0a3 20px 21px),
    linear-gradient(135deg, #f4ecd6 0%, #e9dbb6 100%);
  color: #2d6647;
  cursor: pointer;
  border-radius: var(--r-lg);
  transition: opacity 0.4s ease;
}
.map-placeholder svg { color: #b35c33; margin-bottom: 4px; }
.map-placeholder strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: #1f4633;
}
.map-placeholder span {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #756855;
  font-weight: 500;
}
.map-placeholder.loaded { opacity: 0; pointer-events: none; }

/* ─────────────────────────  EXOTIC & RARE  ───────────────────────── */
.exotic {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.exotic-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.exotic-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.exotic-head .section-sub { margin: 16px auto 0; }
.exotic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.exotic-card {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.exotic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(20, 20, 10, 0.18);
}
.exotic-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-light);
}
.exotic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.exotic-card:hover .exotic-img img { transform: scale(1.06); }
.exotic-card figcaption {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exotic-card figcaption strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.exotic-card figcaption small {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .exotic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .exotic-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   v2 UPGRADE — FAIL-OPEN REVEALS, FAST HERO, PREMIUM POLISH
   Everything here is additive. Content is visible by default;
   animation is an enhancement gated on <html class="js">.
   ============================================================ */

/* ---- Brand selection + focus + scrollbar (premium micro-details) ---- */
::selection { background: var(--color-accent); color: #fff; }
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
html { scrollbar-color: var(--color-primary) transparent; }

/* ---- FAIL-OPEN SCROLL REVEAL SYSTEM ---- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1),
              transform .75s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal][data-reveal-x="left"]  { transform: translateX(-30px); }
.js [data-reveal][data-reveal-x="right"] { transform: translateX(30px); }
.js [data-reveal][data-reveal-x].is-in    { transform: none; }
.js [data-reveal][data-reveal-scale]      { transform: scale(.96); }
.js [data-reveal][data-reveal-scale].is-in{ transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---- HERO ENTRY — CSS keyframes, auto-play on load (fail-open) ---- */
@keyframes heroRise { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroPop  { from { opacity: 0; transform: scale(.93) translateY(22px); } to { opacity: 1; transform: none; } }

.js .hero-badge    { animation: heroFade .6s ease both; }
.js .hero-title .word { animation: heroRise .85s cubic-bezier(.16,1,.3,1) both; }
.js .hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: .06s; }
.js .hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: .13s; }
.js .hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: .20s; }
.js .hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .27s; }
.js .hero-title .line:nth-child(2) .word:nth-child(3) { animation-delay: .34s; }
.js .hero-title .line:nth-child(3) .word:nth-child(1) { animation-delay: .46s; }
.js .hero-subtitle { animation: heroRise .75s cubic-bezier(.16,1,.3,1) .34s both; }
.js .hero-cta      { animation: heroRise .75s cubic-bezier(.16,1,.3,1) .44s both; }
.js .hero-trust    { animation: heroFade .8s ease .58s both; }
.js .hero-card-main{ animation: heroPop .85s cubic-bezier(.16,1,.3,1) .22s both; }
.js .hero-card-cat { animation: heroPop .85s cubic-bezier(.16,1,.3,1) .40s both; }
.js .hero-card-fish{ animation: heroPop .85s cubic-bezier(.16,1,.3,1) .54s both; }
.js .hero-floating { animation: heroFade .6s ease .78s both; }
.js .hero-scroll   { animation: heroFade .7s ease 1s both; }
@media (prefers-reduced-motion: reduce) {
  .js .hero-badge, .js .hero-title .word, .js .hero-subtitle, .js .hero-cta,
  .js .hero-trust, .js .hero-card-main, .js .hero-card-cat, .js .hero-card-fish,
  .js .hero-floating, .js .hero-scroll { animation: none !important; }
}

/* ---- Floating drift on hero cards (subtle, premium, infinite) ---- */
@keyframes floatA { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes floatB { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero-card-cat  { animation: floatA 6s ease-in-out 1.4s infinite; }
  .hero-card-fish { animation: floatB 7s ease-in-out 1.6s infinite; }
}

/* ---- SPOTLIGHT cards (cursor-tracking warm glow on dark cards) ---- */
.spotlight { position: relative; overflow: hidden; }
.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 0%),
              rgba(217,148,79,0.28), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}
.spotlight:hover::after { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* ---- Section-heading gold underline draw on reveal ---- */
.heading-underline { position: relative; display: inline-block; }
.heading-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -10px;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.16,1,.3,1) .2s;
}
.js [data-reveal].is-in .heading-underline::after,
.js .heading-underline[data-reveal].is-in::after { transform: scaleX(1); }

/* ---- Marquee: pause on hover (announce + brands) ---- */
.announce:hover .announce-track,
.brands-marquee:hover .brands-track { animation-play-state: paused; }

/* ---- Image hover-zoom for category/exotic figures ---- */
.exotic-img { overflow: hidden; }
.exotic-img img { transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.exotic-card:hover .exotic-img img { transform: scale(1.07); }

/* ---- Category cards: growing top accent + lift (more crafted) ---- */
.cat-card { position: relative; overflow: hidden; }
.cat-card .cat-icon { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.cat-card:hover .cat-icon { transform: translateY(-3px) rotate(-4deg); }

/* ---- "Since 2021" editorial seal (brand signature) ---- */
.brand-seal {
  position: absolute;
  z-index: 3;
  width: clamp(78px, 8vw, 104px);
  height: clamp(78px, 8vw, 104px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 34px -10px rgba(217,120,68,0.6);
}
.brand-seal span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.brand-seal .seal-yr { font-family: var(--font-display); font-size: 22px; letter-spacing: 0; display: block; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .brand-seal { animation: floatA 5s ease-in-out infinite; }
}

/* ---- Paw-trail divider (brand signature between bands) ---- */
.paw-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px,5vw,52px) 0;
}
.paw-divider span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: .25;
}
.paw-divider span:nth-child(2){ opacity:.45; transform: scale(1.25); }
.paw-divider span:nth-child(3){ opacity:.7;  transform: scale(1.5); }
.paw-divider span:nth-child(4){ opacity:.45; transform: scale(1.25); }
.paw-divider span:nth-child(5){ opacity:.25; }

/* ---- Buttons: smoother magnetic transform handoff ---- */
.btn-magnetic { transition: transform .35s cubic-bezier(.16,1,.3,1), background var(--t-base), color var(--t-base); }

/* ---- Card entrance polish: ensure hover transforms aren't fighting reveal ---- */
.js .cat-card[data-reveal].is-in,
.js .live-card[data-reveal].is-in,
.js .review-card[data-reveal].is-in,
.js .exotic-card[data-reveal].is-in { transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1); }

/* ---- v2 fixes: brand seal placement + review author stacking ---- */
.about-img-main .brand-seal { top: 16px; right: 16px; }

.review-author > div { display: flex; flex-direction: column; line-height: 1.3; }
.review-author strong { display: block; font-size: 15px; }
.review-author small { display: block; font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.about-card-author > div { display: flex; flex-direction: column; }
