/* Walk on the Wildside — homepage-only styles.
   Loaded AFTER css/base.css on index.html. Design tokens (:root) and shared
   nav/footer/button/card/detail styles live in base.css; this file carries the
   landing-page sections (hero, marquee, about, van mosaic, services, reviews,
   gallery, tiktok, faq, find-us, stock-alert, final-cta) plus homepage media
   queries. Where selectors overlap base.css, this file loads later and wins,
   reproducing the original single-block rendering exactly. */

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

:root {
  --bg: #0d0d0d;
  --bg-warm: #111111;
  --paper: #F5F5F0;
  --paper-alt: #E8E8E3;
  --ink: #f1f1f1;
  --ink-soft: #c8c8c0;
  --muted: #777770;
  --rule: #2a2a24;
  --rule-light: #d4d4ce;
  --accent: #3DB54A;
  --accent-deep: #2E8B3A;
  --accent-glow: #5AE66E;
  --accent-dark: #1E7A2E;
  --display: "Permanent Marker", cursive;
  --display-alt: "Outfit", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --script: "Caveat", cursive;
  --maxw: 1240px;
  --pad-x: clamp(16px, 4vw, 64px);
  --section-y: clamp(80px, 9vw, 160px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html, body { overflow-x: hidden; }

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: var(--section-y) 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-label--light::after { background: var(--rule-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--accent); color: #fff; }
.btn--dark { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn--dark:hover { border-color: var(--accent); color: var(--accent); }

.gs-reveal { opacity: 0; transform: translateY(32px); will-change: opacity, transform; }
.gs-split-word { display: inline-block; white-space: nowrap; }
.gs-split-char { display: inline-block; opacity: 0; transform: translateY(0.4em); will-change: opacity, transform; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gs-reveal, .gs-split-char { opacity: 1 !important; transform: none !important; }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--pad-x);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s;
  border-bottom: 1px solid transparent;
}
body { padding-top: 64px; }
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: 36px;
  width: auto;
}
.nav-brand-text {
  font-family: var(--display);
  font-size: 13px;
  color: var(--accent-glow);
  text-shadow: 0 0 10px rgba(61,181,74,0.3);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: stretch; gap: 8px; }
.nav-cta .btn { padding: 10px 20px; font-size: 11px; }
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 0 12px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-icon svg { width: 18px; height: 18px; }
.btn-icon:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100dvh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: grayscale(20%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.hero-wordmark {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(61,181,74,0.15), 0 0 80px rgba(61,181,74,0.08);
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-sub {
  font-family: var(--display-alt);
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.hero-tagline {
  font-family: var(--script);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 100%;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--display-alt);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '\2022';
  font-size: 8px;
  opacity: 0.5;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ─── ABOUT ─── */
.about { background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: var(--accent-glow);
  text-shadow: 0 0 20px rgba(90,230,110,0.15);
  margin-bottom: 16px;
}
.about-head .tagline-script {
  font-family: var(--script);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink-soft);
}
.about-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  margin-top: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.about-body p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 62ch;
}
.about-body p strong { color: var(--ink); }
.about-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(61,181,74,0.04);
}
.about-quote p {
  font-family: var(--script);
  font-size: 24px;
  color: var(--accent);
  line-height: 1.5;
  margin-bottom: 8px !important;
}
.about-quote cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
/* Van mosaic */
.van-section { background: var(--bg-warm); }
.van-mosaic { margin-top: 0; }
.van-mosaic-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.van-mosaic-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.van-mosaic-sub {
  font-family: var(--script);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-soft);
  line-height: 1;
}
.van-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 16 / 9;
}
.van-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
}
.van-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 600ms ease;
}
.van-tile:hover img { transform: scale(1.04); filter: brightness(1.08); }
.van-tile-hero { grid-row: 1 / 3; grid-column: 1; }
.van-tile-hero img { object-position: center 55%; }
.van-tile-square-a { grid-row: 1; grid-column: 2; }
.van-tile-square-b { grid-row: 2; grid-column: 2; }
.van-tile-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 2px;
  pointer-events: none;
}

/* ─── ANIMALS ─── */
.animals { background: var(--paper); color: var(--bg); }
.animals .section-label { color: #888; }
.animals .section-label::after { background: var(--rule-light); }
.animals-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.animals-intro {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin-bottom: 28px;
}
/* ─── LOCATION TOGGLE ─── */
.loc-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 100px;
  background: rgba(0,0,0,0.06);
  border: 1px solid var(--rule-light);
  margin-bottom: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}
.loc-toggle button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 18px;
  min-height: 44px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.loc-toggle button:hover { color: var(--accent-deep); }
.loc-toggle button.is-active {
  background: var(--accent-deep);
  color: #fff;
}
.loc-toggle button .loc-count {
  opacity: 0.7;
  font-weight: 500;
  margin-left: 6px;
}
@media (max-width: 520px) {
  .loc-toggle { display: flex; width: 100%; }
  .loc-toggle button { flex: 1; padding: 11px 8px; }
}
.stock-updated {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #777;
  margin: 0 0 36px;
}
.stock-updated-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 0 rgba(40,120,60,0.5);
  animation: stockPulse 2.4s ease-out infinite;
}
@keyframes stockPulse {
  0%   { box-shadow: 0 0 0 0 rgba(40,120,60,0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(40,120,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,120,60,0); }
}
@media (prefers-reduced-motion: reduce) {
  .stock-updated-dot { animation: none; }
}
.animal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.animal-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}
.animal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(10%);
}
.animal-card:hover img { transform: scale(1.08); filter: grayscale(0%); }
.animal-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}
.animal-card:hover .animal-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%); }
.animal-card-name {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 4px;
}
.animal-card-sci {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.animal-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.animal-stock {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(90,230,110,0.18);
  color: var(--accent-glow);
  border: 1px solid rgba(90,230,110,0.4);
  white-space: nowrap;
}
.animal-stock.is-out {
  background: rgba(255,255,255,0.08);
  color: #cfcfca;
  border-color: rgba(255,255,255,0.18);
}
.animal-stock.is-low {
  background: rgba(255,170,60,0.16);
  color: #ffc777;
  border-color: rgba(255,170,60,0.4);
}
.animal-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.92;
}
.animal-card-desc {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  margin-top: 8px;
  max-width: 90%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.35s ease;
}
.animal-card:hover .animal-card-desc,
.animal-card:focus-within .animal-card-desc { opacity: 1; max-height: 80px; }
@media (hover: none) {
  /* On touch devices, always show the description (no hover). */
  .animal-card-desc { opacity: 1; max-height: 80px; }
}

/* ─── SERVICES ─── */
.services { background: var(--bg); }
.services-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: var(--accent-glow);
  text-shadow: 0 0 20px rgba(90,230,110,0.15);
  margin-bottom: 12px;
}
.services-intro {
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 48px;
}
.svc-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s;
}
.svc-card:hover { background: rgba(255,255,255,0.04); }
.svc-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-marker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-width: 20px;
}
.svc-card h3 {
  font-family: var(--display-alt);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.svc-card .svc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
  padding-left: 32px;
}
.svc-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── EXPERIENCE FEATURE ─── */
.experience {
  background: var(--accent-deep);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 40px,
    rgba(0,0,0,0.03) 40px 42px
  );
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.exp-grid h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 16px;
}
.exp-grid .exp-sub {
  font-family: var(--script);
  font-size: 26px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.exp-list { list-style: none; }
.exp-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.exp-list li:last-child { border-bottom: none; }
.exp-num {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  min-width: 28px;
  padding-top: 2px;
}
.exp-list li p { font-size: 16px; line-height: 1.5; }
.exp-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── WORK EXPERIENCE ─── */
.work-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.work-exp-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.work-exp-sub {
  font-family: var(--script);
  font-size: 24px;
  color: #666;
  margin-bottom: 24px;
}
.work-exp-body {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.work-exp-card {
  background: var(--accent-deep);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-exp-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.work-exp-card-row {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.5;
}
.work-exp-card-num {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  min-width: 24px;
}
.work-exp-cta {
  margin-top: 16px;
  align-self: flex-start;
}

/* ─── REVIEWS ─── */
.reviews { background: var(--paper); color: var(--bg); }
.reviews .section-label { color: #888; }
.reviews .section-label::after { background: var(--rule-light); }
.reviews-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: var(--accent-deep);
  margin-bottom: 48px;
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.review {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--rule-light);
}
.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--body);
  font-size: 16px;
  font-style: italic;
  color: #444;
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}
.reviews-foot {
  text-align: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule-light);
}
.reviews-big {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 120px);
  color: var(--accent-deep);
  line-height: 0.9;
}
.reviews-big-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #999;
  margin-top: 8px;
}

/* ─── GALLERY ─── */
.gallery { background: var(--bg); padding: var(--section-y) 0; }
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.gallery-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--accent-glow);
}
.gallery-head a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.gallery-head a:hover { color: var(--accent-glow); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-cell:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s;
}
.gallery-cell:hover::after { background: rgba(0,0,0,0.2); }

/* ─── TIKTOK HIGHLIGHTS ─── */
.tiktok-section { background: var(--bg-warm); }
.tiktok-head { margin-bottom: 32px; }
.tiktok-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--accent-glow);
  margin-bottom: 8px;
}
.tiktok-head p {
  color: var(--ink-soft);
  max-width: 500px;
}
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tiktok-card {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}
.tiktok-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tiktok-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
  pointer-events: none;
}
.tiktok-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.tiktok-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.tiktok-card:hover .tiktok-play { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.tiktok-card.playing .tiktok-play { opacity: 0; }
.tiktok-follow {
  text-align: center;
  margin-top: 32px;
}

/* ─── FAQ ─── */
.faq { background: var(--paper); color: var(--bg); }
.faq .section-label { color: #888; }
.faq .section-label::after { background: var(--rule-light); }
.faq-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.faq-intro {
  color: #555;
  max-width: 600px;
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 5vw, 80px);
}
.faq-item {
  border-bottom: 1px solid var(--rule-light);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--rule-light); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-q h3 {
  font-family: var(--display-alt);
  font-size: 17px;
  font-weight: 600;
  color: var(--bg);
  line-height: 1.4;
}
.faq-toggle {
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 12px;
}
.faq-a p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FIND US ─── */
.find { background: var(--bg-warm); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.location-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-name {
  font-family: var(--display-alt);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.find-info h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  color: var(--accent-glow);
  text-shadow: 0 0 20px rgba(90,230,110,0.15);
  margin-bottom: 32px;
}
.find-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  margin-bottom: 32px;
}
.find-dl dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}
.find-dl dd {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.find-dl dd a { color: var(--accent); transition: color 0.25s; }
.find-dl dd a:hover { color: var(--accent-glow); }
.find-dl dd.find-licence {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.find-socials { display: flex; gap: 16px; margin-top: 24px; }
.find-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.25s;
}
.find-socials a:hover { border-color: var(--accent); color: var(--accent); }
.find-map {
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
}
.find-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* ─── STOCK ALERT ─── */
.stock-alert {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stock-alert::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(61,181,74,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(90,230,110,0.10), transparent 50%);
  pointer-events: none;
}
.stock-alert .wrap { position: relative; max-width: 880px; text-align: center; }
.stock-alert .eyebrow {
  font-family: var(--mono, var(--display));
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stock-alert .eyebrow::before,
.stock-alert .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent-glow);
  opacity: 0.6;
}
.stock-alert h2 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 20px;
}
.stock-alert h2 em {
  font-style: italic;
  color: var(--accent-glow);
}
.stock-alert .sa-sub {
  font-family: var(--script);
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.stock-alert form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 22px;
  flex-wrap: wrap;
}
.stock-alert input[type="email"] {
  flex: 1 1 auto;
  width: 0;
  min-width: 200px;
  height: 52px;
  box-sizing: border-box;
  padding: 0 22px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.stock-alert input[type="email"]::placeholder { color: var(--ink-soft); opacity: 0.7; }
.stock-alert input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(61,181,74,0.06);
}
.stock-alert button[type="submit"] {
  flex: 0 0 auto;
  height: 52px;
  box-sizing: border-box;
  padding: 0 28px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.stock-alert button[type="submit"]:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}
.stock-alert .sa-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.stock-alert .sa-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stock-alert .sa-perks span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
}
.stock-alert .sa-fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.stock-alert .sa-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 32px 28px;
  background: rgba(61,181,74,0.10);
  border: 1px solid var(--accent);
  border-radius: 20px;
  animation: sa-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stock-alert .sa-success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(61,181,74,0.18);
  animation: sa-check-pop 0.6s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stock-alert .sa-success-check svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: sa-check-draw 0.4s 0.35s ease-out forwards;
}
.stock-alert .sa-success-title {
  font-family: var(--display-alt);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.stock-alert .sa-success-title strong { color: var(--accent-glow); font-weight: 700; }
.stock-alert .sa-success-body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 380px;
}
.stock-alert .sa-success-email {
  font-family: var(--mono, var(--display));
  font-size: 13px;
  color: var(--accent-glow);
  padding: 6px 14px;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  letter-spacing: 0.02em;
  word-break: break-all;
}
/* ─── INTEREST CHIPS ─── */
.sa-interests {
  max-width: 600px;
  margin: 0 auto 26px;
  overflow: hidden;
  /* collapsed until the input is focused */
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin 0.4s ease;
}
.sa-interests.is-open {
  max-height: 420px;
  opacity: 1;
}
.sa-interests-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.sa-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.sa-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  min-height: 40px;
  box-sizing: border-box;
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: color 0.18s, background 0.18s, border-color 0.18s, transform 0.12s;
  /* GSAP sets the entrance; this is the reduced-motion / no-JS resting state */
  will-change: transform, opacity;
}
.sa-chip .sa-chip-emoji { font-size: 15px; line-height: 1; }
.sa-chip:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(61,181,74,0.07);
}
.sa-chip:active { transform: scale(0.95); }
.sa-chip:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 2px;
}
.sa-chip.is-selected {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}
.sa-chip.is-selected .sa-chip-emoji { filter: drop-shadow(0 0 4px rgba(0,0,0,0.25)); }
.sa-chip.is-selected:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.sa-chip-check {
  width: 13px;
  height: 13px;
  stroke: #fff;
  stroke-width: 3.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sa-interest-count {
  margin-top: 13px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--accent-glow);
  min-height: 15px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sa-interest-count.is-shown { opacity: 1; }

/* ━━━ WhatsApp Lead Modal ━━━ */
.wa-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0; animation: waFade .2s ease;
}
@keyframes waFade { from { opacity: 0; } to { opacity: 1; } }
.wa-modal {
  background: var(--bg-warm); color: var(--ink);
  width: 100%; max-width: 480px; border-radius: 20px 20px 0 0;
  padding: 28px 22px calc(22px + env(safe-area-inset-bottom));
  position: relative; box-shadow: 0 -8px 40px rgba(0,0,0,.5);
  border: 1px solid var(--rule); border-bottom: none;
  max-height: 92vh; overflow-y: auto;
}
@media (min-width: 600px) {
  .wa-modal-overlay { align-items: center; padding: 24px; }
  .wa-modal { border-radius: 20px; border-bottom: 1px solid var(--rule); }
}
.wa-modal-close {
  position: absolute; top: 12px; right: 14px; background: none; border: none;
  font-size: 28px; line-height: 1; cursor: pointer; color: var(--muted);
  width: 40px; height: 40px;
}
.wa-modal-close:hover { color: var(--ink); }
.wa-modal-title { margin: 0 0 6px; font-size: 1.35rem; font-family: var(--display-alt); }
.wa-modal-sub { margin: 0 0 18px; color: var(--ink-soft); font-size: .95rem; }
.wa-input {
  width: 100%; padding: 13px 15px; margin-bottom: 12px; font-size: 1rem;
  border: 1px solid var(--rule); border-radius: 12px;
  background: rgba(255,255,255,0.04); color: var(--ink);
  font-family: var(--body); box-sizing: border-box;
}
.wa-input::placeholder { color: var(--muted); }
.wa-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.wa-textarea { resize: vertical; min-height: 72px; font-family: var(--body); }
.wa-interests-label { font-size: .85rem; color: var(--ink-soft); margin: 4px 0 8px; }
.wa-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.wa-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: 999px; cursor: pointer; font-size: .85rem;
  border: 1px solid var(--rule); background: rgba(255,255,255,0.04); color: var(--ink-soft);
  font-family: var(--body); min-height: 40px;
  transition: color .18s, background .18s, border-color .18s;
}
.wa-chip:hover { color: var(--ink); border-color: var(--accent); background: rgba(61,181,74,0.07); }
.wa-chip.is-selected { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.wa-modal-send { width: 100%; justify-content: center; margin-top: 4px; }
.wa-modal-skip {
  display: block; width: 100%; margin-top: 14px; padding: 10px;
  background: none; border: none; cursor: pointer; font-size: .9rem;
  color: var(--muted); text-align: center; font-family: var(--body);
}
.wa-modal-skip:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .sa-interests {
    transition: none;
  }
  .sa-chip { transition: none; will-change: auto; }
  .wa-modal-overlay { animation: none; }
  .wa-chip { transition: none; }
}

@keyframes sa-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sa-check-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
@keyframes sa-check-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 600px) {
  .stock-alert form { flex-direction: column; }
  .stock-alert input[type="email"] { flex: 0 0 52px; width: 100%; }
  .stock-alert button[type="submit"] { flex: 0 0 52px; width: 100%; }
  .stock-alert .sa-perks { gap: 6px 18px; font-size: 12px; }
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--accent-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 60px,
    rgba(0,0,0,0.04) 60px 62px
  );
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 80px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.final-cta .final-sub {
  font-family: var(--script);
  font-size: clamp(22px, 3vw, 32px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  position: relative;
}
.final-cta .btn { position: relative; background: #fff; color: var(--accent-deep); border-color: #fff; }
.final-cta .btn:hover { background: var(--bg); color: var(--accent); border-color: var(--bg); }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  padding: 64px 0 0;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer p, .footer li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { transition: color 0.25s; }
.footer ul a:hover { color: var(--accent); }
.footer-bar {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bar p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-bar a { color: var(--accent); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-brand img { height: 30px; }
  .nav-brand-text { font-size: 11px; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-wordmark { font-size: clamp(36px, 12vw, 72px); }
  .hero-sub { letter-spacing: 0.1em; font-size: 12px; margin-bottom: 24px; }
  .hero-tagline { font-size: 20px; margin-bottom: 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding-top: 28px; }
  .hero-meta { gap: 10px; }
  .hero-meta .eyebrow { font-size: 10px; letter-spacing: 0.1em; }
  .hero-stars { font-size: 11px; }
  .hero-content { overflow: hidden; }
  .hero-ctas { margin-bottom: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { aspect-ratio: 16 / 9; margin-top: 20px; }
  .about-quote { padding: 16px 18px; }
  .about-quote p { font-size: 20px; }
  .van-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    gap: 8px;
  }
  .van-tile-hero { grid-row: 1; grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .van-tile-square-a { grid-row: 2; grid-column: 1; aspect-ratio: 1; }
  .van-tile-square-b { grid-row: 2; grid-column: 2; aspect-ratio: 1; }
  .van-mosaic-head { flex-wrap: wrap; gap: 8px; }
  .animal-grid { grid-template-columns: repeat(2, 1fr); }
  .animal-card-name { font-size: 20px; }
  .animal-card-overlay { padding: 16px; }
  .svc-card { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .svc-card .svc-tag { padding-left: 0; }
  .svc-card h3 { font-size: 18px; }
  .svc-card p { font-size: 14px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-img { order: -1; }
  .exp-grid .exp-sub { font-size: 22px; }
  .review-grid { grid-template-columns: 1fr; }
  .review { padding: 28px 20px; }
  .reviews-big-sub { letter-spacing: 0.1em; font-size: 11px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-head a { font-size: 11px; letter-spacing: 0.08em; }
  .faq-grid { grid-template-columns: 1fr; }
  .tiktok-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card { padding: 24px 20px; gap: 20px; }
  .location-name { font-size: 20px; margin-bottom: 8px; }
  .find-map { aspect-ratio: 16/9; }
  .find-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .find-dl dt { font-size: 10px; letter-spacing: 0.1em; padding-top: 10px; }
  .find-dl dt:first-of-type { padding-top: 0; }
  .find-dl dd { margin-bottom: 2px; }
  .tiktok-card-label { letter-spacing: 0.06em; font-size: 10px; bottom: 10px; left: 10px; right: 10px; }
  .nav-cta .btn { min-height: 40px; }
  .nav-cta { gap: 6px; }
  .btn-icon { padding: 0 10px; }
  .btn-icon svg { width: 16px; height: 16px; }
  .work-exp-grid { grid-template-columns: 1fr; gap: 32px; }
  .work-exp-card { padding: 28px 22px; }
  .work-exp-title { font-size: 32px; }
  .work-exp-sub { font-size: 20px; margin-bottom: 16px; }
  .work-exp-cta { align-self: stretch; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .marquee-item { font-size: 14px; letter-spacing: 0.04em; gap: 32px; }
  .marquee-track { gap: 32px; }
  .stat-label { letter-spacing: 0.08em; font-size: 9px; }
  .section-label { letter-spacing: 0.1em; font-size: 10px; margin-bottom: 24px; }
  .eyebrow { letter-spacing: 0.1em; }
  .svc-tag { letter-spacing: 0.1em; }
}

@media (max-width: 480px) {
  .hero-wordmark { font-size: clamp(32px, 11vw, 56px); }
  .animal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-num { font-size: 24px; }
}

@media (max-width: 320px) {
  .hero-wordmark { font-size: 28px; }
  .nav-brand img { height: 24px; }
  .nav-brand-text { font-size: 10px; }
  .btn { padding: 12px 20px; font-size: 12px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 10px; }
  .btn-icon { padding: 0 8px; }
  .btn-icon svg { width: 14px; height: 14px; }
}

/* ─── FOCUS ─── */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
