/* ═══════════════════════════════════════════════════════
   TAKE A HIKE — Vincent Angelo
   Scroll-Based Immersive Trail World
   Hip-Hop / R&B · Nature Meets the City
   Palette extracted directly from artwork illustrations
   ═══════════════════════════════════════════════════════ */

:root {
  /* ── TYPE ── */
  --font-throw: 'Boogaloo', 'Impact', cursive;
  --font-body:  'Work Sans', 'Helvetica Neue', sans-serif;

  /* ── ARTWORK PALETTE ── */
  --sky-mint:       #7dd4b8;
  --sky-peach:      #f0c890;
  --sage-dark:      #2e5436;
  --sage-mid:       #3a6644;
  --sage-light:     #4a7a52;
  --sage-bright:    #5a8a44;
  --earth-dark:     #8a7060;
  --earth-mid:      #9a7a5a;
  --terracotta:     #b85a2a;
  --terra-mid:      #c87040;
  --terra-light:    #d4834a;
  --terra-warm:     #f0c890;
  --teal-deep:      #3aada8;
  --teal-light:     #6ececa;
  --charcoal:       #1e1a14;
  --bark-dark:      #3a2010;
  --bark-mid:       #5a3a18;
  --bark-light:     #7a5230;

  /* ── TIMING ── */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  /* ── SCENE MOOD — overridden by JS per stop ── */
  --scene-intensity: 0.2;
}

/* ══════════════════════════════
   RESET + BASE
══════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  background: #0e1a10;
  color: #f0e8d8;
  overflow: hidden; /* trail-scroll handles scrolling */
}
img { display: block; max-width: 100%; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════
   HAWK — fixed overlay, flies on scroll
══════════════════════════════ */
#hawkWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: 300;
  opacity: 0;
  will-change: transform, opacity;
}

.hawk-canvas {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.30));
}

/* Wing beat speed variants — no-op when using img instead of SVG,
   kept for compatibility if SVG is restored */
[data-speed="hawk-fast"] .wing-r { animation-duration: 0.85s; }
[data-speed="hawk-fast"] .wing-l { animation-duration: 0.85s; }
[data-speed="hawk-slow"] .wing-r { animation-duration: 2.4s; }
[data-speed="hawk-slow"] .wing-l { animation-duration: 2.4s; }

/* Hide foreground plant detail layers */
.foreground-plants,
.plant-layer,
.layer--foreground-plants,
.fg-plants,
.scene-plants {
  display: none !important;
}

/* ══════════════════════════════
   NAV — fixed glass bar
══════════════════════════════ */
#navShell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.trail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(14, 20, 10, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(125, 212, 184, 0.1);
}

/* ── Mission Control sub-bar ── */
.mc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 24px;
  background: rgba(10, 16, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 131, 74, 0.18);
}

.mc-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-trail-map {
  width: 64px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.mc-bar-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.mc-bar-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(212,131,74,0.85);
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid rgba(212,131,74,0.28);
  border-radius: 999px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.mc-bar-btn:hover {
  background: rgba(212,131,74,0.12);
  color: rgba(212,131,74,1);
  border-color: rgba(212,131,74,0.5);
}

@media (max-width: 640px) {
  .mc-bar-label { display: none; }
  .mc-bar { padding: 5px 14px; }
  .mc-trail-map { width: 52px; height: 28px; }
}
.nav-brand {
  font-family: var(--font-throw);
  font-size: 1.5rem;
  color: white;
  -webkit-text-stroke: 2px #0e0600;
  paint-order: stroke fill;
  text-shadow:
    3px 3px 0 var(--terracotta),
    6px 6px 0 var(--sage-dark);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-stop-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 200, 144, 0.85);
  transition: opacity 0.4s ease;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}
.nav-dot.active {
  background: var(--terra-light);
  transform: scale(1.5);
}
.nav-dot.visited {
  background: rgba(125, 212, 184, 0.55);
}
.theme-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,200,144,0.75);
  transition: border-color 0.2s, color 0.2s;
}
.theme-toggle:hover { color: white; border-color: rgba(255,255,255,0.45); }

/* Drive Mode nav button — mobile only */
.nav-drive-btn {
  display: none; /* hidden on desktop */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  align-items: center;
  justify-content: center;
  color: rgba(200,169,110,0.75);
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-drive-btn:hover { color: white; border-color: rgba(255,255,255,0.45); }
.nav-drive-btn--active { color: #c8a96e; border-color: rgba(200,169,110,0.6); background: rgba(200,169,110,0.08); }

/* ══════════════════════════════
   TRAIL SCROLL CONTAINER
══════════════════════════════ */
.trail-scroll {
  position: fixed;
  inset: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Soft snap — locks to each section but releases naturally on scroll */
  scrollbar-width: none;
}
.trail-scroll::-webkit-scrollbar { display: none; }

/* ══════════════════════════════
   TRAIL SECTIONS — each is one full viewport scene
══════════════════════════════ */
.trail-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ── Scene background layers ── */
.scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Sky gradient fills */
.sky {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sky--golden {
  background: linear-gradient(
    180deg,
    #d4c890 0%,
    #e8c878 18%,
    #f0c870 35%,
    #f0c890 58%,
    #e8b060 72%,
    #d4904a 86%,
    #c87040 100%
  );
}
.sky--forest-entry {
  background: linear-gradient(
    180deg,
    #3d7050 0%,
    #2a5038 20%,
    #1e3828 40%,
    #1a3020 60%,
    #162818 80%,
    #122014 100%
  );
}
.sky--old-growth {
  background: linear-gradient(
    180deg,
    #0e1c10 0%,
    #122014 20%,
    #0e1a0c 40%,
    #0a1608 60%,
    #081208 80%,
    #060e06 100%
  );
}
.sky--dry-ridge {
  background: linear-gradient(
    180deg,
    #a8d0b8 0%,
    #c0d8a0 20%,
    #d8e898 35%,
    #e8e880 50%,
    #f0d890 65%,
    #e8c878 80%,
    #d4a858 100%
  );
}
.sky--spring {
  background: linear-gradient(
    180deg,
    #78c4a8 0%,
    #9ad8b0 20%,
    #b8e8a0 38%,
    #c8e888 52%,
    #d8e070 65%,
    #e8c870 80%,
    #d4a850 100%
  );
}
.sky--canyon {
  background: linear-gradient(
    180deg,
    #4a8cb0 0%,
    #6aaac0 18%,
    #8ac8c8 35%,
    #a8d8c0 50%,
    #c0e0b8 65%,
    #d8e8a8 80%,
    #e8e898 100%
  );
}
.sky--waterfall {
  /* Covered entirely by artwork */
  background: #3aada8;
}
.sky--dusk {
  background: linear-gradient(
    180deg,
    #1a0e28 0%,
    #381830 15%,
    #6a2840 28%,
    #8a3840 40%,
    #b85030 55%,
    #d47040 68%,
    #e89060 80%,
    #f0b870 92%,
    #e8c870 100%
  );
}
.sky--night {
  background: linear-gradient(
    180deg,
    #020408 0%,
    #04080e 20%,
    #060c14 40%,
    #080e16 60%,
    #060c10 80%,
    #04080c 100%
  );
}
.sky--predawn {
  background: linear-gradient(
    180deg,
    #060c18 0%,
    #0a1228 18%,
    #0e1830 32%,
    #1a2438 45%,
    #2a3040 56%,
    #3a3840 66%,
    #5a4838 76%,
    #7a6040 86%,
    #d0a060 94%,
    #e8c070 100%
  );
}
.sky--basecamp {
  background: linear-gradient(
    180deg,
    #7dd4b8 0%,
    #a8d8b0 20%,
    #d0e8a0 38%,
    #f0d498 55%,
    #f0c888 70%,
    #e0a060 85%,
    #c07840 100%
  );
}

/* ── Environment layers (SVG treelines, rocks, etc) ── */

/* SVGs fill from bottom */

/* ── Foliage side panels ── */

/* Parallax depth on scroll */

/* ── Artwork fills (hero + waterfall) ── */
.artwork-fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.92) contrast(1.04);
}
.artwork-img--hero {
  object-fit: cover;
  object-position: center 0%;
}
.artwork-img--waterfall {
  object-position: center 35%; /* push down to show more canyon walls + teal pool, hide seam */
  filter: saturate(0.95) contrast(1.06);
}

/* ── Figure embed (isolated character on white bg) ── */
.figure-embed {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-55%);
  z-index: 3;
  height: 90%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.figure-embed img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.05);
  animation: figureDrift 9s ease-in-out infinite alternate;
}
@keyframes figureDrift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-8px) scale(1.01); }
}

/* Smoke wisps from figure */
.smoke {
  position: absolute;
  width: 5px;
  border-radius: 3px;
  background: rgba(240, 220, 185, 0.35);
  pointer-events: none;
  z-index: 4;
  /* Positions relative to figure mouth area — adjusted per scene */
  left: calc(50% - 52px);
  bottom: 76%;
}
.smoke-1 { height: 28px; animation: smokeDrift 4.5s ease-out infinite; }
.smoke-2 { height: 18px; left: calc(50% - 47px); animation: smokeDrift 4.5s ease-out infinite 1.5s; opacity: 0.65; }
.smoke-3 { height: 12px; left: calc(50% - 57px); animation: smokeDrift 4.5s ease-out infinite 3s; opacity: 0.4; }
@keyframes smokeDrift {
  0%   { transform: translateY(0) translateX(0) scaleX(1);   opacity: 0.5; }
  50%  { transform: translateY(-45px) translateX(7px) scaleX(1.6); opacity: 0.22; }
  100% { transform: translateY(-90px) translateX(14px) scaleX(2.8); opacity: 0; }
}

/* ── Water ripples (waterfall scene) ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 173, 168, 0.4);
  pointer-events: none;
  z-index: 4;
}
.ripple-1 { width: 70px;  height: 28px; left: 30%; bottom: 22%; animation: ripplePulse 3.2s ease-out infinite; }
.ripple-2 { width: 110px; height: 42px; left: 27%; bottom: 21%; animation: ripplePulse 3.2s ease-out infinite 1.1s; }
.ripple-3 { width: 150px; height: 58px; left: 24%; bottom: 20%; animation: ripplePulse 3.2s ease-out infinite 2.2s; }
@keyframes ripplePulse {
  0%   { opacity: 0.7; transform: scale(0.7); }
  100% { opacity: 0;   transform: scale(1.5); }
}

/* ── Stars (night scene) ── */
@keyframes starTwinkle {
  0%, 100% { opacity: var(--star-lo, 0.4); transform: scale(1); }
  50%       { opacity: var(--star-hi, 1);   transform: scale(1.3); }
}

/* ── Campfire (basecamp scene) ── */
.flame-a { transform-origin: center bottom; animation: flicker1 0.85s ease-in-out infinite alternate; }
.flame-b { transform-origin: center bottom; animation: flicker2 0.65s ease-in-out infinite alternate; }
.flame-c { transform-origin: center bottom; animation: flicker3 1.05s ease-in-out infinite alternate; }
.fire-glow { animation: glowPulse 2.2s ease-in-out infinite alternate; }
@keyframes flicker1 {
  from { transform: skewX(-5deg) scaleY(1); }
  to   { transform: skewX(6deg) scaleY(0.86); }
}
@keyframes flicker2 {
  from { transform: skewX(4deg) scaleY(1.1); }
  to   { transform: skewX(-7deg) scaleY(0.80); }
}
@keyframes flicker3 {
  from { transform: skewX(-3deg) scaleY(0.88); }
  to   { transform: skewX(5deg) scaleY(1.14); }
}
@keyframes glowPulse {
  from { opacity: 0.1; r: 55; }
  to   { opacity: 0.2; r: 72; }
}

/* ══════════════════════════════
   SECTION CONTENT — stop cards
══════════════════════════════ */
.section-content {
  position: relative;
  z-index: 10;
  pointer-events: all;
  width: 100%;
}

/* ── HERO content ── */
.section-content--hero {
  position: absolute;
  bottom: 9vh;
  left: 5vw;
  width: min(680px, 88vw);
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 14px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* ── STOP cards ── */
.section-content--stop {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 86vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: rgba(10, 18, 10, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 212, 184, 0.16);
  border-radius: 14px;
  padding: 14px 20px 12px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.section-content--figure {
  left: auto;
  right: 4vw;
  transform: none;
  bottom: 11vh;
}
.section-content--canyon {
}
.section-content--waterfall {
  /* no text-align override — inherits centered layout from section-content--stop */
}
.section-content--dusk {
  border-color: rgba(180, 80, 40, 0.25);
  background: rgba(18, 8, 8, 0.18);
}
.section-content--night {
}
.section-content--basecamp {
  /* cosmetic only — layout handled by .section-content--stop */
}

/* ══════════════════════════════
   THROWUP GRAFFITI TITLE
   Blocky hand-style — Boogaloo font
   White fill, thick black outline, color depth shadow
══════════════════════════════ */
.throwup-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 0.88;
}
.throwup-line {
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  line-height: 0.88;
}
.t-word {
  font-family: var(--font-throw);
  display: inline-block;
  line-height: 0.88;
  color: white;
  /* Thick black outline — the graffiti block look */
  -webkit-text-stroke: 6px #050200;
  paint-order: stroke fill;
  /* Multi-layer color depth: terracotta then sage push it back */
  text-shadow:
    3px 4px 0 #8a2808,
    6px 8px 0 #1e4028,
    9px 11px 0 rgba(0,0,0,0.45),
    0 2px 24px rgba(0,0,0,0.55);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  /* Slightly condensed feel */
  letter-spacing: -0.01em;
}
.t-take {
  font-size: clamp(4rem, 11vw, 8rem);
}
.t-a {
  font-size: clamp(3.4rem, 9.5vw, 6.8rem);
  margin-left: 0.14em;
}
.t-hike {
  font-size: clamp(4rem, 11vw, 8rem);
  text-shadow:
    3px 4px 0 #104848,
    6px 8px 0 #1e4028,
    9px 11px 0 rgba(0,0,0,0.45),
    0 2px 24px rgba(0,0,0,0.55);
}
.throwup-line-2 {
  margin-top: -0.06em;
}

/* ── Hero sub text ── */
.hero-byline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240, 200, 144, 0.78);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.65;
}

/* ── Scroll cue ── */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-cue-arrow {
  font-size: 1rem;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ══════════════════════════════
   STOP HEADER
══════════════════════════════ */
.stop-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.stop-num {
  font-family: var(--font-throw);
  font-size: 1.6rem;
  color: white;
  -webkit-text-stroke: 2.5px #0e0400;
  paint-order: stroke fill;
  text-shadow:
    2px 2px 0 var(--terracotta),
    4px 5px 0 var(--sage-dark);
  line-height: 1;
  min-width: 46px;
}
/* Teal variant for canyon/waterfall */
.stop-num--teal {
  text-shadow:
    2px 2px 0 var(--teal-deep),
    4px 5px 0 #104848;
}
/* Warm variant for dusk/camp */
.stop-num--warm {
  text-shadow:
    2px 2px 0 #c87040,
    4px 5px 0 #5a2808;
}
/* Fire/camp variant */
.stop-num--fire {
  text-shadow:
    2px 2px 0 #d07840,
    4px 5px 0 #5a2808;
}
/* Night variant */
.stop-num--night {
  text-shadow:
    2px 2px 0 #2a3a6a,
    4px 5px 0 #0a0e20;
}

/* 3D wooden trail sign */

/* ── Stop title — blocky graffiti ── */
.stop-title {
  font-family: var(--font-throw);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: white;
  -webkit-text-stroke: 3px #0e0400;
  paint-order: stroke fill;
  text-shadow:
    2px 3px 0 var(--terracotta),
    5px 7px 0 rgba(80,24,4,0.75),
    8px 10px 0 rgba(30,60,40,0.4);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.stop-title--teal {
  text-shadow:
    2px 3px 0 var(--teal-deep),
    5px 7px 0 rgba(8,56,56,0.75),
    0 0 28px rgba(58,173,168,0.2);
}
.stop-title--warm {
  text-shadow:
    2px 3px 0 #c87040,
    5px 7px 0 rgba(100,40,8,0.75),
    0 0 28px rgba(212,131,74,0.25);
}
.stop-title--night {
  text-shadow:
    2px 3px 0 #2a3a6a,
    5px 7px 0 rgba(10,20,50,0.8);
}

.stop-desc {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: rgba(240, 220, 190, 0.8);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 300;
  max-width: 42ch;
}

/* ── Listen row ── */
.listen-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--terracotta);
  border: 1.5px solid transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 18px 8px 14px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(184, 90, 42, 0.45);
}
.listen-btn .play-icon {
  flex-shrink: 0;
  position: relative;
  left: 1px; /* optical center for triangle */
}
.listen-btn:hover {
  background: var(--terra-light);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(184, 90, 42, 0.55);
}
.listen-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 6px rgba(184, 90, 42, 0.35);
}
.listen-btn.playing {
  background: var(--sage-mid);
  box-shadow: 0 2px 10px rgba(60, 120, 100, 0.4);
}
.listen-btn:disabled, .listen-btn.loading {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.plat-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.plat-btn:hover {
  color: #fff;
  border-color: var(--terra-light);
  background: rgba(184,90,42,0.12);
}

/* End CTAs */
.end-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.cta-primary {
  padding: 11px 26px;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-throw);
  font-size: 1rem;
  border-radius: 9999px;
  box-shadow: 3px 3px 0 rgba(80,36,8,0.4), 0 4px 18px rgba(184,90,42,0.38);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cta-primary:hover { background: var(--terra-light); transform: translateY(-2px); }
.cta-secondary {
  padding: 11px 26px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.cta-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }

/* ══════════════════════════════
   TRANSPORT BAR (autoplay controls)
══════════════════════════════ */
.transport {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 480px;
  margin: 0 16px;
}
.transport-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.transport-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.transport-btn--play {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(184,90,42,0.45);
}
.transport-btn--play:hover {
  background: var(--terra-light);
  border-color: transparent;
  transform: scale(1.06);
}
.transport-btn--play.is-playing {
  background: var(--sage-mid);
}
.transport-btn--skip {
  width: 26px;
  height: 26px;
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}
.transport-btn--skip:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.transport-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.transport-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.transport-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--terra-light));
  border-radius: 3px;
  transition: width 0.5s linear;
  will-change: width;
}
.transport-time {
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: rgba(240,200,144,0.65);
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 32px;
}

/* Per-section song progress bar (thin, top of section) */

/* Scene transition overlay — brief flash when advancing */
.scene-flash {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,20,12,0.0);
  pointer-events: none;
  transition: background 0.25s ease-in;
}

/* cut — fast dark dip (default skip/next) */
.scene-flash.cut {
  transition: background 0.18s ease-in;
}
.scene-flash.cut.active {
  background: rgba(10,20,12,0.65);
}

/* slow — long cinematic fade (auto-advance at track end) */
.scene-flash.slow {
  transition: background 0.55s ease-in-out;
}
.scene-flash.slow.active {
  background: rgba(10,20,12,0.80);
}

/* dissolve — lighter cross-fade feel */
.scene-flash.dissolve {
  transition: background 0.35s ease-in-out;
}
.scene-flash.dissolve.active {
  background: rgba(10,20,12,0.45);
}

/* fallback active (no type class set) */
.scene-flash.active {
  background: rgba(10,20,12,0.55);
}

/* ══════════════════════════════
   SCROLL POSITION INDICATOR
   (replaces clunky advance prompt)
══════════════════════════════ */
.scroll-track {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 180;
  pointer-events: none;
}
#trackDots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.track-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, transform 0.3s ease, height 0.3s ease;
}
.track-dot.active {
  background: var(--terra-light);
  height: 12px;
  border-radius: 2px;
  transform: scaleX(1.3);
}
.track-dot.visited {
  background: rgba(125, 212, 184, 0.5);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 640px) {
  .trail-nav { padding: 10px 12px; gap: 8px; }
  .nav-stop-label { display: none; }
  .nav-drive-btn { display: flex; } /* show on mobile */

  /* Transport: tighter on mobile but all 5 buttons visible */
  .transport { max-width: 200px; margin: 0 4px; gap: 4px; flex-shrink: 0; }
  .transport-btn--skip { width: 22px; height: 22px; }
  .transport-info { min-width: 0; }
  .transport-time { display: none; }

  /* Nav brand: slightly smaller */
  .nav-brand { font-size: 1.25rem; }

  /* Nav right: tighter gap, smaller dots */
  .nav-right { gap: 8px; }
  .nav-dots { gap: 3px; }
  .nav-dot { width: 4px; height: 4px; }

  /* Theme + drive buttons: slightly smaller */
  .theme-toggle, .nav-drive-btn { width: 26px; height: 26px; }

  .section-content--hero {
    left: 3vw;
    bottom: 6vh;
    padding: 22px 20px 18px;
    width: 94vw;
  }
  .section-content--stop {
    bottom: 5vh;
    width: 94vw;
    padding: 20px 18px 18px;
  }
  .section-content--figure {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5vh;
    width: 94vw;
  }

  .t-take, .t-hike { font-size: clamp(3rem, 12vw, 5rem); }
  .t-a { font-size: clamp(2.6rem, 10.5vw, 4.4rem); }

  #hawkWrap { width: 120px; }
  .stop-title { font-size: 1.7rem; }
  .stop-desc { font-size: 0.82rem; }
  .scroll-track { right: 10px; }
}
@media (max-width: 420px) {
}

/* ══════════════════════════════
   SCENE-DRIVEN SKY MOOD FILTERS
   Keyed to body[data-scene] set by JS
══════════════════════════════ */

/* 0 — Trailhead: warm golden hour, full color */
[data-scene="0"] .sky  { filter: saturate(1.0) brightness(1.0); }

/* 1 — Opening: fresh morning, slightly lifted */
[data-scene="1"] .sky  { filter: saturate(1.05) brightness(1.05); }

/* 2 — Old Growth: deep canopy, cool and dim */
[data-scene="2"] .sky  { filter: saturate(0.75) brightness(0.75); }

/* 3 — Dry Ridge: doubt / fatigue, desaturated and shadowed */
[data-scene="3"] .sky  { filter: saturate(0.8) brightness(0.9); }

/* 4 — Spring Clearing: vivid, hopeful break */
[data-scene="4"] .sky  { filter: saturate(1.15) brightness(1.08); }

/* 5 — Canyon Approach: deep teal, slightly cooler */
[data-scene="5"] .sky  { filter: saturate(0.95) brightness(0.92) hue-rotate(-8deg); }

/* 6 — Waterfall: peak saturation, the payoff */
[data-scene="6"] .sky  { filter: saturate(1.25) brightness(1.06) hue-rotate(5deg); }

/* 7 — Dusk: warm orange push, darkening */
[data-scene="7"] .sky  { filter: saturate(1.1) brightness(0.82) hue-rotate(10deg); }

/* 8 — Night: near-monochrome, very dark */
[data-scene="8"] .sky  { filter: saturate(0.4) brightness(0.6); }

/* 9 — Pre-Dawn: clarity, cool lifted light */
[data-scene="9"] .sky  { filter: saturate(1.2) brightness(1.1); }

/* 10 — Base Camp: back to warmth, settled */
[data-scene="10"] .sky { filter: saturate(1.0) brightness(0.95); }

/* Smooth transition between scenes */
.sky { transition: filter 1.4s ease; }

/* ══════════════════════════════
   LIGHT THEME
══════════════════════════════ */
[data-theme="light"] .trail-nav {
  background: rgba(242, 237, 224, 0.52);
  border-bottom-color: rgba(184,90,42,0.12);
}
[data-theme="light"] .mc-bar {
  background: rgba(235, 228, 210, 0.72);
  border-bottom-color: rgba(184,90,42,0.15);
}
[data-theme="light"] .mc-bar-label { color: rgba(60,40,20,0.35); }
[data-theme="light"] .mc-bar-btn { color: rgba(184,90,42,0.85); border-color: rgba(184,90,42,0.3); }
[data-theme="light"] .mc-bar-btn:hover { background: rgba(184,90,42,0.10); color: rgba(184,90,42,1); }
[data-theme="light"] .nav-brand { color: var(--terracotta); }
[data-theme="light"] .nav-stop-label { color: rgba(80,44,16,0.85); }

/* ── Scene illustrations (generated per-stop) ── */
.scene-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.scene-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.93) contrast(1.03);
  mix-blend-mode: normal;
}
/* Vignette overlay on top of illustration */
.scene-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,14,8,0.18) 0%, transparent 28%),
    linear-gradient(to top,    rgba(8,14,8,0.72) 0%, transparent 52%),
    linear-gradient(to right,  rgba(8,14,8,0.45) 0%, transparent 30%),
    linear-gradient(to left,   rgba(8,14,8,0.45) 0%, transparent 30%);
  pointer-events: none;
}
/* Per-scene object position tweaks */
.scene-illustration--s0  img { object-position: center 0%; }
.scene-illustration--s1  img { object-position: center 20%; }
.scene-illustration--s2  img { object-position: center 20%; }
.scene-illustration--s3  img { object-position: center 10%; }
.scene-illustration--s4  img { object-position: center 30%; }
.scene-illustration--s5  img { object-position: center 18%; }
.scene-illustration--s6  img { object-position: center 10%; }
.scene-illustration--s7  img { object-position: center 22%; }
.scene-illustration--s8  img { object-position: center 18%; }
.scene-illustration--s9  img { object-position: center 35%; }
.scene-illustration--s10 img { object-position: center 15%; }
.scene-illustration--s11 img { object-position: center 35%; } /* show character upper body + waving hand above card */

/* Stop 6 and Stop 10 — layout matches all other stops via .section-content--stop */

/* ── Stop 11: Merch / End page — compact card, character visible above ── */
#s11 .section-content--stop {
  bottom: 5vh;
}
.section-content--merch {
  text-align: center;
  align-items: center;
  gap: 18px;
}
/* ── Merch Panel (hidden until toggled) ── */
.merch-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.merch-panel--open {
  max-height: 70vh;
  opacity: 1;
  margin-top: 14px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

/* ── Merch Grid ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  background: rgba(10,18,10,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.merch-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,131,74,0.4);
}

.merch-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.merch-img--tee     { background: rgba(180, 120, 60, 0.15); }
.merch-img--hat     { background: rgba(80,  110, 80, 0.18); }
.merch-img--hoodie  { background: rgba(50,  60,  80, 0.22); }
.merch-img--notes   { background: rgba(160, 140, 90, 0.15); }
.merch-img--incense  { background: rgba(120, 80, 140, 0.18); }
.merch-img--producer { background: rgba(47, 74, 47, 0.22); }

.merch-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}

.merch-card--wide .merch-img {
  width: 38%;
  flex-shrink: 0;
  aspect-ratio: unset;
}

.merch-scents {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 6px 0 4px;
}

.merch-scents span {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.merch-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.merch-name {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin: 0;
  letter-spacing: 0.03em;
}

.merch-desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.merch-price {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(212,131,74,0.9);
  margin-top: 6px;
}

.merch-mission {
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  background: rgba(10,18,10,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-align: left;
}

.merch-mission-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,131,74,0.8);
  margin: 0 0 6px;
}

.merch-mission-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* ── Vault / Mission Control ── */
.vault-product {
  border-color: rgba(255,255,255,0.22) !important;
  background:
    linear-gradient(135deg, rgba(47,74,47,.28), rgba(155,95,61,.22)),
    rgba(0,0,0,.18) !important;
}

.merch-img--vault {
  background: linear-gradient(135deg, rgba(47,74,47,.5), rgba(155,95,61,.4)) !important;
  color: rgba(255,255,255,0.55);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.vault-name {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.96) !important;
}

.vault-section-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,131,74,0.85);
  margin: 14px 0 5px;
}

.vault-note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0 0 6px;
}

.vault-tagline {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 12px 0 8px;
  font-style: italic;
}

/* ── Link Hub ── */
.link-hub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0;
}

.link-hub-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,131,74,0.8);
  margin: 0 0 6px;
  text-align: center;
}

.link-hub-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(10,18,10,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.link-hub-row:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,131,74,0.35);
  transform: translateX(3px);
}

.link-hub-icon {
  opacity: 0.75;
  flex-shrink: 0;
}

/* ── Merch eyebrow ── */
.merch-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 131, 74, 0.85);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   FIELD NOTES PANEL — premium quote card overlapping title card
   Top right of viewport, tucks into upper-right of stop card.
═══════════════════════════════════════════════════════════ */
.field-notes {
  position: fixed;
  bottom: calc(8vh + 168px);
  right: calc(50% - 210px);
  width: 148px;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: grab;
  user-select: none;
}
.field-notes--visible {
  opacity: 1;
  pointer-events: all;
}
.field-notes:active { cursor: grabbing; }
.field-notes__card {
  padding: 12px 14px 10px;
  border-radius: 16px;
  background: rgba(14, 9, 4, 0.88);
  border: 1px solid rgba(212, 131, 74, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.field-notes--enter .field-notes__text {
  animation: field-notes-fade 0.55s ease both;
}
@keyframes field-notes-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.field-notes__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.field-notes__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 131, 74, 0.80);
  font-family: system-ui, sans-serif;
  font-weight: normal;
}
.field-notes__shuffle {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 234, 212, 0.60);
  background: rgba(246, 234, 212, 0.07);
  border: 1px solid rgba(246, 234, 212, 0.18);
  border-radius: 999px;
  padding: 3px 10px;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  transition: background 0.15s;
  width: auto;
  height: auto;
  display: inline-block;
}
.field-notes__shuffle:hover {
  background: rgba(212, 131, 74, 0.18);
  color: rgba(212, 131, 74, 1);
  border-color: rgba(212, 131, 74, 0.45);
}
.field-notes__text {
  margin: 0 0 8px;
  font-size: 0.84rem;
  line-height: 1.5;
  font-style: italic;
  color: rgba(246, 234, 212, 0.92);
  font-family: system-ui, sans-serif;
  white-space: normal;
  overflow: visible;
}
.field-notes__label {
  display: block;
  margin: -4px 0 0;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.05em;
  color: rgba(212, 131, 74, 0.60);
  font-family: system-ui, sans-serif;
}
.field-notes__actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 8px;
}
.field-notes__settings {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 234, 212, 0.60);
  background: rgba(246, 234, 212, 0.07);
  border: 1px solid rgba(246, 234, 212, 0.18);
  border-radius: 999px;
  padding: 3px 10px;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  transition: background 0.15s;
}
.field-notes__settings:hover {
  background: rgba(212, 131, 74, 0.18);
  color: rgba(212, 131, 74, 1);
  border-color: rgba(212, 131, 74, 0.45);
}

@media (max-width: 700px) {
  .field-notes {
    bottom: calc(5vh + 158px);
    right: 3vw;
    left: auto;
    top: auto;
    width: 138px;
  }
  .field-notes__text { font-size: 0.78rem; }
}

/* .trail-settings-btn removed — settings toggle now lives inside the Field Notes card */

.trail-settings-menu {
  position: fixed;
  z-index: 80;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(20, 16, 10, 0.94);
  border: 1px solid rgba(212, 131, 74, 0.32);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.55);
  color: #f3ece0;
  backdrop-filter: blur(10px);
}
.trail-settings-menu h5 {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 131, 74, 0.9);
}
.trail-settings-menu .ts-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.84rem;
  cursor: pointer;
}
.trail-settings-menu .ts-row input { accent-color: #d4834a; }

/* ─── Hawk message — brief grounded line on flight ────────── */
/* Hawk message — child of .section-content--stop, not a global overlay.
   Anchors above the card’s content area. Desktop/tablet only (js skips mobile). */
.hawk-message {
  position: absolute;
  top: -38px;          /* sits just above the card’s top edge */
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(14, 9, 4, 0.82);
  border: 1px solid rgba(212, 131, 74, 0.28);
  color: rgba(243, 236, 224, 0.92);
  font-size: 0.74rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  z-index: 10;         /* relative to card, not viewport */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.35s ease, transform 0.4s ease;
  max-width: calc(100% + 40px); /* can bleed slightly past card edges */
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.hawk-message--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Mobile: never shown — disabled in JS via matchMedia check */
@media (max-width: 720px) {
  .hawk-message { display: none; }
}
