/* ============================================================
   MUGGERS OF VADODARA — Mugger City
   Cinematic homepage stylesheet
   ============================================================ */

/* ---- Local font ---- */
@font-face {
  font-family: "Cheffiy";
  src: url("cheffiy/Cheffiy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   TOKENS — Crocodile Pond · premium identity
   ------------------------------------------------------------ */
:root {
  /* PAPER — warm cream base for the premium "city site" surface */
  --cream:        #f5ecd2;
  --cream-deep:   #ecdfbc;
  --ivory:        #fbf6e6;
  --bone:         #e6dcbe;

  /* POND — primary deep green (slightly more luminous) */
  --pond:         #1d5c3c;
  --pond-deep:    #0f3e26;
  --pond-darker:  #051c12;
  --moss:         #4d7d59;
  --sage:         #88a37a;
  --reed:         #c5d3a8;

  /* SAVANNA — warm earth accents */
  --ochre:        #cd9847;
  --ochre-deep:   #a26d2c;
  --terracotta:   #b06846;
  --clay:         #6e4b2a;
  --sun:          #ebc875;

  /* INK — dark text on cream (stronger contrast) */
  --ink:          #0e1f13;
  --ink-soft:     #243a29;
  --ink-muted:    #4f6155;
  --ink-faint:    #788474;

  /* DARK STAGE — cinematic hero (brighter than before) */
  --bg-base:      #02100a;
  --bg-deep:      #03170e;
  --bg-mid:       #04210f;
  --bg-rich:      #073018;
  --bg-edge:      #000a05;

  /* STAGE TEXT — brighter, more confident */
  --t-title:     #d4e3b7;   /* luminous river-light green */
  --t-sub:       #b8d09a;
  --t-support:   #a3c188;
  --t-faint:     #80a06d;
  --t-accent:    #e7c574;   /* warm sun-gold for HUD accents */

  /* Type — Cheffiy local font leads every stack */
  --f-display: "Cheffiy", "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-title:   "Cheffiy", "Space Grotesk", "Inter", -apple-system, sans-serif;
  --f-body:    "Cheffiy", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "Cheffiy", "JetBrains Mono", "Inter", monospace;

  /* Easing */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Cheffiy", var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* IMPORTANT: do not set overflow on html/body — it breaks position: sticky on .stage */
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
video, canvas { display: block; max-width: 100%; height: auto; }

::selection { background: var(--pond); color: var(--cream); }

/* ============================================================
   STAGE — sticky 3D canvas + hero text
   ============================================================ */
.stage-wrap {
  position: relative;
  height: 520vh; /* enough scroll for the cinematic stage + room to read the exit screen */
  width: 100%;
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #082818; /* deep pond green — the home of the muggers */
  isolation: isolate;
}

/* Canvas fills the stage */
.stage__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Vignette layered above canvas — JS drives opacity during final zoom */
.stage__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85; /* base ambient vignette */
  background:
    radial-gradient(
      ellipse 90% 75% at 50% 50%,
      transparent 35%,
      rgba(0, 0, 0, 0.55) 75%,
      #000000 100%
    );
  transition: opacity 0.05s linear;
}

/* Subtle dark grain — keeps the gradient from feeling flat */
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.6 0 0 0 0 0.5 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   HERO TEXT — project name in warm brown on the dark pond bg
   ============================================================ */
.hero {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  pointer-events: none;
  will-change: opacity, transform;
  /* Sit BELOW the centerline so it doesn't clash with the croc */
  padding-top: 0;
}

.hero__eyebrow {
  margin: 0 0 1.8rem;
  font-family: var(--f-mono);
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: #a87331;             /* deep brown */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #8b5a26;        /* dim brown */
  opacity: 0.7;
}

.hero__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.022em;
  color: #c89545;             /* warm tan brown */
  text-shadow: 0 0 60px rgba(168, 115, 49, 0.35);
}

.hero__sub {
  margin: 1.4rem 0 0;
  font-family: var(--f-mono);
  font-size: clamp(0.7rem, 1.1vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8b6633;             /* darker sand brown */
}

/* Scroll cue */
.hero__cue {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.hero__cue-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent 0%, var(--t-faint) 100%);
  position: relative;
  overflow: hidden;
}

.hero__cue-line::after {
  content: "";
  position: absolute;
  top: -38px; left: 0;
  width: 100%; height: 38px;
  background: linear-gradient(180deg, transparent, var(--t-support));
  animation: cueSlide 2.4s ease-in-out infinite;
}

@keyframes cueSlide {
  0%   { transform: translateY(0); }
  100% { transform: translateY(76px); }
}

.hero__cue-label {
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--t-faint);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  font-family: var(--f-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-faint);
  border: 1px solid rgba(143, 168, 123, 0.12);
  border-radius: 999px;
  background: rgba(2, 16, 10, 0.6);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t-support);
  box-shadow: 0 0 8px rgba(139, 168, 123, 0.5);
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.1);  }
}

/* ============================================================
   WORMHOLE CANVAS — iris / tunnel overlay (z: 4)
   ============================================================ */
.wormhole-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;          /* above vignette(2) + grain(3), below hero(5) and exit(8) */
  pointer-events: none;
  display: block;
}

/* ============================================================
   EXIT SCREEN — "Under Construction" overlay
   Lives INSIDE the sticky stage. Triggered once the iris snaps
   shut — bursts from scale(0.04) like wormhole arrival.
   ============================================================ */
.exit {
  position: absolute;
  inset: 0;
  z-index: 8; /* above canvas/vignette/wormhole/hero */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(
      ellipse 72% 60% at 50% 52%,
      #0d3320 0%,    /* noticeably green centre — "other side" feel */
      #071a0f 42%,
      #030e08 100%
    );
  /* hidden by default — JS drives opacity/transform/filter every frame */
  opacity: 0;
  transform: scale(0.04);
  pointer-events: none;
  will-change: opacity, transform, filter;
}

/* Ambient aura — always present inside the exit, adds depth */
.exit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 55% at 50% 44%,
    rgba(18, 90, 48, 0.28) 0%,
    rgba(8, 50, 25, 0.14) 45%,
    transparent 70%
  );
}

/* Exit reveal is 100% JS-driven (see script.js applyTimeline).
   No CSS animation needed here. */

.exit__inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.exit__tag {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--t-faint);
}

.exit__heading {
  margin: 0;
  font-family: var(--f-title);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.005em;
  color: var(--t-title);
}

.exit__body {
  margin: 0;
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: var(--t-support);
  max-width: 440px;
}

/* ============================================================
   CSS CROCODILE FACE (Under Construction)
   ============================================================ */
.croc {
  position: relative;
  width: 220px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: crocBob 4.5s ease-in-out infinite alternate;
}

@keyframes crocBob {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.croc__eyes {
  display: flex;
  gap: 36px;
  margin-bottom: 6px;
  z-index: 2;
}

.croc__eye {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #2d4633, #0a1a10 75%);
  border: 1px solid rgba(143, 168, 123, 0.18);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.croc__lid {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(circle at 50% 20%, #1a2e1f, #07150d);
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%);
  animation: crocBlink 6.5s ease-in-out infinite;
  border-radius: 50px 50px 0 0;
}

@keyframes crocBlink {
  0%, 42%, 46%, 50%, 100% { transform: translateY(-100%); }
  44%, 48%                 { transform: translateY(0%); }
}

.croc__pupil {
  width: 9px;
  height: 28px;
  background: #06120b;
  border-radius: 40%;
  box-shadow:
    0 0 6px rgba(0, 0, 0, 0.7),
    inset 0 0 2px rgba(0, 0, 0, 0.8);
  position: relative;
}

.croc__pupil::after {
  content: "";
  position: absolute;
  top: 6px; left: 2.5px;
  width: 2.5px;
  height: 5px;
  background: rgba(156, 175, 136, 0.55);
  border-radius: 50%;
}

.croc__snout {
  position: relative;
  width: 170px;
  height: 56px;
  background:
    linear-gradient(180deg, #122017 0%, #0a160e 60%, #050d08 100%);
  border-radius: 28px 28px 50% 50%;
  border: 1px solid rgba(143, 168, 123, 0.1);
  box-shadow:
    inset 0 -6px 14px rgba(0, 0, 0, 0.5),
    0 8px 22px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding-top: 14px;
}

.croc__nostril {
  width: 9px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.croc__mouth {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(143, 168, 123, 0.4) 50%,
    transparent
  );
}

.croc__ripple {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(143, 168, 123, 0.12),
    transparent 70%
  );
  animation: crocRipple 4s ease-in-out infinite;
}

@keyframes crocRipple {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scaleX(1); }
  50%      { opacity: 0.85; transform: translateX(-50%) scaleX(1.2); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stage-wrap { height: 480vh; }
}

@media (max-width: 768px) {
  .stage-wrap { height: 440vh; }

  .hero__title    { font-size: clamp(2.2rem, 11vw, 4rem); }
  .hero__sub      { font-size: 0.9rem; }
  .hero__support  { font-size: 0.66rem; letter-spacing: 0.14em; }

  .croc { width: 180px; height: 110px; }
  .croc__eyes { gap: 28px; }
  .croc__eye  { width: 38px; height: 38px; }
  .croc__pupil { height: 22px; width: 7px; }
  .croc__snout { width: 140px; height: 46px; padding-top: 10px; }
}

@media (max-width: 480px) {
  .hero__eyebrow { letter-spacing: 0.24em; }
  .hero__support { display: none; }
  .hero__cue     { bottom: 1.8rem; }
}

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

/* ============================================================
   CUSTOM CURSOR — cursor.png sitewide
   ============================================================ */
html, body {
  cursor: url('cursor-48.png') 3 26, auto;
}
a, button, [role="button"], input, select, textarea, label[for] {
  cursor: url('cursor-48.png') 3 26, pointer;
}

.cursor {
  display: none;
}

.cursor__dot {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #ece2b8;
  border-radius: 50%;
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              top 0.3s var(--ease-out),
              left 0.3s var(--ease-out),
              opacity 0.3s var(--ease-out);
}

.cursor.is-hover .cursor__dot {
  width: 30px;
  height: 30px;
  top: -15px;
  left: -15px;
  opacity: 0.85;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   HUD — cinematic dossier corners (z: 6)
   ============================================================ */
.hud {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-faint);
  will-change: opacity;
}

.hud__corner {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  background: rgba(2, 12, 7, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(143, 168, 123, 0.1);
  border-radius: 2px;
}

.hud__corner--tl { top: 1.4rem; left: 1.6rem; }
.hud__corner--tr { top: 1.4rem; right: 1.6rem; }
.hud__corner--bl { bottom: 1.4rem; left: 1.6rem; }
.hud__corner--br { bottom: 1.4rem; right: 1.6rem; }

.hud__label,
.hud__time,
.hud__frame,
.hud__phase,
.hud__phase-label {
  display: inline-block;
  white-space: nowrap;
}

.hud__phase-label { opacity: 0.55; }

.hud__phase {
  color: var(--t-accent);
  font-weight: 500;
  letter-spacing: 0.18em;
  min-width: 6.5em;
}

.hud__time, .hud__frame {
  color: var(--t-support);
  font-variant-numeric: tabular-nums;
}

.hud__sep {
  width: 1px;
  height: 11px;
  background: rgba(143, 168, 123, 0.3);
  display: inline-block;
}

.hud__rec {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c84a3a;          /* the only non-green accent — a deliberate REC dot */
  box-shadow: 0 0 8px rgba(200, 74, 58, 0.65);
  animation: recPulse 1.4s ease-in-out infinite;
}

@keyframes recPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%      { opacity: 0.3; transform: scale(0.82); }
}

.hud__progress {
  display: inline-block;
  width: 84px;
  height: 1px;
  background: rgba(143, 168, 123, 0.18);
  position: relative;
  margin-left: 0.25rem;
}

.hud__progress-fill {
  position: absolute;
  top: 0; left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--t-support), var(--t-accent));
  box-shadow: 0 0 6px rgba(156, 175, 136, 0.6);
}

/* ============================================================
   MARQUEE — slow horizontal scroll inside hero
   ============================================================ */
.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7.5rem;
  height: 22px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  opacity: 0.7;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  white-space: nowrap;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--t-faint);
  animation: marqueeScroll 52s linear infinite;
}

.marquee__sep {
  font-family: var(--f-body);
  color: var(--t-accent);
  opacity: 0.45;
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   LETTERBOX — black bars that slide in during descent (z: 7)
   ============================================================ */
.letterbox {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 7;
  height: 0;
  background: #000;
  pointer-events: none;
  will-change: height;
}

.letterbox--top    { top: 0; }
.letterbox--bottom { bottom: 0; }

/* a faint inner edge so the bars feel like cinema mattes, not flat black */
.letterbox--top::after,
.letterbox--bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 168, 123, 0.12) 50%, transparent);
}
.letterbox--top::after    { bottom: 0; }
.letterbox--bottom::after { top: 0; }

/* ============================================================
   CITY — Mugger City reveal (inside .exit)
   ============================================================ */
.city {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding-bottom: 4rem;
}

/* Pulsing transmission badge */
.city__transmission {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(184, 212, 166, 0.22);
  border-radius: 999px;
  background: rgba(2, 28, 16, 0.55);
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--t-accent);
  box-shadow: 0 0 36px rgba(40, 120, 70, 0.18);
}

.city__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8d4a6;
  box-shadow:
    0 0 10px rgba(184, 212, 166, 0.9),
    0 0 22px rgba(120, 200, 140, 0.4);
  animation: cityDot 1.8s ease-in-out infinite;
}

@keyframes cityDot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%      { opacity: 0.35; transform: scale(0.78); }
}

/* Massive city title */
.city__title {
  margin: 0.4rem 0 0;
  font-family: var(--f-title);
  font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--t-title);
  text-shadow: 0 0 40px rgba(120, 180, 130, 0.15);
}

.city__title-line { display: block; }

.city__title-line--soft {
  font-weight: 300;
  font-style: italic;
  color: var(--t-sub);
  opacity: 0.92;
}

.city__tag {
  margin: 0;
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  letter-spacing: 0.04em;
  color: var(--t-support);
  max-width: 480px;
}

/* Concept cards grid */
.city__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  width: 100%;
  margin-top: 1rem;
}

.city__card {
  position: relative;
  padding: 1.25rem 1.05rem 1.05rem;
  border: 1px solid rgba(143, 168, 123, 0.14);
  background: rgba(4, 24, 14, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
  transition: border-color 0.45s var(--ease),
              background 0.45s var(--ease),
              transform 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
}

.city__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 212, 166, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.city__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(120, 200, 140, 0.10),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.city__card:hover {
  border-color: rgba(184, 212, 166, 0.4);
  background: rgba(8, 42, 24, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.7),
              0 0 40px -10px rgba(40, 120, 70, 0.35);
}

.city__card:hover::before,
.city__card:hover::after { opacity: 1; }

.city__card-num {
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--t-faint);
}

.city__card-name {
  font-family: var(--f-title);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--t-title);
  letter-spacing: -0.005em;
  margin-top: 0.2rem;
}

.city__card-desc {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--t-support);
  opacity: 0.85;
  flex-grow: 1;
}

.city__card-status {
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-faint);
  margin-top: 0.6rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(143, 168, 123, 0.08);
}

/* Manifesto quote */
.city__manifesto {
  margin: 1.4rem 0 0;
  font-family: var(--f-title);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--t-sub);
  text-align: center;
  max-width: 560px;
  position: relative;
  padding: 1.6rem 0;
}

.city__manifesto em {
  font-style: italic;
  color: var(--t-title);
  opacity: 0.95;
}

.city__manifesto::before,
.city__manifesto::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--t-faint) 50%, transparent);
}
.city__manifesto::before { top: 0; }
.city__manifesto::after  { bottom: 0; }

.city__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-faint);
}

.city__footer-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(143, 168, 123, 0.35);
}

/* ============================================================
   RIVER WAVES — at the bottom of the exit
   ============================================================ */
.city__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 130px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
}

.wave {
  position: absolute;
  left: -50%;
  bottom: 0;
  width: 220%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.wave--1 {
  /* Slow, large rolling wave */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><path d='M0,70 C150,40 300,100 450,70 C600,40 750,100 900,70 C1050,40 1200,90 1200,70 L1200,130 L0,130 Z' fill='%2316492f' fill-opacity='0.55'/></svg>");
  background-size: 1200px 130px;
  animation: waveMove 18s linear infinite;
  opacity: 0.65;
}

.wave--2 {
  /* Middle wave, opposite direction */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><path d='M0,85 C200,60 400,110 600,85 C800,60 1000,110 1200,85 L1200,130 L0,130 Z' fill='%230f3a25' fill-opacity='0.7'/></svg>");
  background-size: 1200px 130px;
  animation: waveMove 26s linear infinite reverse;
  opacity: 0.55;
}

.wave--3 {
  /* Foreground wave, fastest, darkest */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><path d='M0,100 C150,82 350,118 550,100 C750,82 950,118 1200,100 L1200,130 L0,130 Z' fill='%23072315' fill-opacity='0.95'/></svg>");
  background-size: 1200px 130px;
  animation: waveMove 12s linear infinite;
  opacity: 0.9;
}

@keyframes waveMove {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}

/* ============================================================
   RESPONSIVE OVERRIDES — cinematic at every size
   ============================================================ */
@media (max-width: 1024px) {
  .city__grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .marquee    { bottom: 6.5rem; }
  .hud__corner { font-size: 0.58rem; padding: 0.45rem 0.7rem; gap: 0.5rem; }
}

@media (max-width: 768px) {
  .hud__corner--bl,
  .hud__corner--br { display: none; }
  .hud__corner--tl,
  .hud__corner--tr { font-size: 0.55rem; padding: 0.4rem 0.6rem; }

  .marquee__track { font-size: 0.58rem; letter-spacing: 0.3em; gap: 1.6rem; }
  .marquee        { bottom: 5.5rem; }

  .city          { gap: 1.3rem; padding-bottom: 5rem; }
  .city__title   { font-size: clamp(2.4rem, 12vw, 4rem); }
  .city__grid    { grid-template-columns: 1fr 1fr; }
  .city__card    { padding: 1rem 0.85rem 0.9rem; }
  .city__manifesto { font-size: 1rem; padding: 1.1rem 0; }

  .city__waves { height: 90px; }
}

@media (max-width: 480px) {
  .hud__corner--tr { gap: 0.4rem; }
  .marquee { display: none; }

  .city__grid    { grid-template-columns: 1fr; }
  .city__footer  { flex-direction: column; gap: 0.4rem; }
  .city__footer-sep { display: none; }
}

/* ============================================================
   ============================================================
   PREMIUM CONTENT — Crocodile Pond · city site
   ============================================================
   ============================================================ */

/* ----- Update exit gradient — luminous emerald glow ----- */
.exit {
  background:
    radial-gradient(
      ellipse 80% 65% at 50% 48%,
      #1d6e44 0%,
      #0e3a23 38%,
      #051b10 78%,
      #02100a 100%
    ) !important;
}

/* ============================================================
   WELCOME CARD — replaces .city content inside the exit
   ============================================================ */
.welcome {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
  text-align: center;
  padding-bottom: 5rem;
}

.welcome__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(231, 197, 116, 0.35);
  border-radius: 999px;
  background: rgba(2, 28, 16, 0.65);
  backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--t-accent);
  box-shadow: 0 0 40px rgba(231, 197, 116, 0.18);
}

.welcome__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--t-accent);
  box-shadow:
    0 0 12px rgba(231, 197, 116, 0.9),
    0 0 24px rgba(231, 197, 116, 0.4);
  animation: cityDot 1.8s ease-in-out infinite;
}

.welcome__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: #d4ab6a;             /* warm tan brown */
  text-shadow: 0 0 70px rgba(168, 115, 49, 0.4);
}

.welcome__title-line { display: block; }

.welcome__title-line--accent {
  font-style: italic;
  font-weight: 400;
  color: #c89545;             /* deeper brown */
  font-feature-settings: "ss01" 1;
}

.welcome__tag {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: var(--t-sub);
  max-width: 520px;
}

.welcome__cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.8rem 1.2rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--t-faint);
  transition: color 0.3s var(--ease);
}

.welcome__cue:hover { color: var(--t-accent); }

.welcome__cue-arrow {
  font-size: 1.1rem;
  color: var(--t-accent);
  animation: welcomeArrow 2.2s ease-in-out infinite;
}

@keyframes welcomeArrow {
  0%, 100% { transform: translateY(0);   opacity: 1;   }
  50%      { transform: translateY(6px); opacity: 0.55; }
}

/* ============================================================
   BRIDGE — gradient handoff from dark pond → warm cream paper
   Lives between the cinematic stage-wrap and the cream content.
   ============================================================ */
.bridge {
  position: relative;
  width: 100%;
  height: 60vh;
  background: linear-gradient(180deg,
    #082818  0%,            /* exact match to .stage bg */
    #0e3a23  18%,
    #1d5c3c  36%,
    #4d7d59  56%,
    #a8b890  76%,
    var(--cream-deep) 90%,
    var(--cream)  100%
  );
  pointer-events: none;
}

/* Subtle gold streak runs through the middle of the bridge —
   "sunlight breaking through the canopy" */
.bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 32% at 50% 58%,
    rgba(231, 197, 116, 0.22),
    transparent 60%
  );
  pointer-events: none;
}

/* ============================================================
   NAVBAR — sticky, fades in once you've arrived
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 2.4rem;
  background: rgba(244, 236, 216, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 90, 58, 0.1);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.nav.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1.4rem;
  color: var(--pond);
  text-decoration: none;
}

.nav__brand-mark {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__brand-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  color: var(--pond-deep);
}

.nav__brand-sub {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--pond);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover { color: var(--pond); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle (hamburger) — hidden on desktop, revealed ≤768px */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(27, 90, 58, 0.18);
  border-radius: 10px;
  color: var(--pond-deep);
  padding: 0;
}
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before { position: absolute; left: 0; top: -6px; }
.nav__toggle-bars::after  { position: absolute; left: 0; top: 6px; }
.nav.is-open .nav__toggle-bars { background: transparent; }
.nav.is-open .nav__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

.nav__bag {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(27, 90, 58, 0.18);
  border-radius: 50%;
  color: var(--pond-deep);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav__bag svg { width: 18px; height: 18px; }

.nav__bag:hover {
  background: var(--reed);
  border-color: var(--pond);
}

.nav__bag-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ochre);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  transform: scale(0);
  transition: transform 0.25s var(--ease-out);
}

.nav__bag-count.is-active { transform: scale(1); }

.nav__cta {
  padding: 0.78rem 1.4rem;
  background: var(--pond);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  display: inline-block;
}

.nav__cta:hover {
  background: var(--pond-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(14, 58, 35, 0.5);
}

/* ============================================================
   PAGE — cream content wrapper
   ============================================================ */
.page {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
}

/* Subtle paper grain — only visible on warm cream surfaces */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.27 0 0 0 0 0.12 0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
}

.page > * { position: relative; z-index: 1; }

/* ============================================================
   SECTION PRIMITIVES — eyebrow / title / lede
   ============================================================ */
.section__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.section__title {
  margin: 0 0 1.2rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--pond-deep);
}

.section__title em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}

.section__lede {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS — premium pill + ghost
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--pond);
  color: var(--cream);
  box-shadow: 0 6px 18px -8px rgba(14, 58, 35, 0.45);
}
.btn--primary:hover {
  background: var(--pond-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(14, 58, 35, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--pond-deep);
  border-color: rgba(27, 90, 58, 0.25);
}
.btn--ghost:hover {
  background: var(--reed);
  border-color: var(--pond);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pond);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease), border-color 0.25s var(--ease);
}

.link-arrow:hover {
  color: var(--ochre-deep);
  gap: 0.8rem;
  border-color: var(--ochre);
}

/* ============================================================
   ARRIVAL HERO — first impression of the premium site
   ============================================================ */
.arrival {
  position: relative;
  padding: 11rem 2rem 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(231, 197, 116, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(136, 163, 122, 0.22), transparent 60%),
    var(--cream);
}

.arrival__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.arrival__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.eyebrow-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--ochre);
  opacity: 0.7;
}

.arrival__title {
  margin: 0 0 1.6rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--pond-deep);
}

.arrival__title--italic {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}

.arrival__sub {
  margin: 0 auto 2.4rem;
  max-width: 620px;
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

.arrival__actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}

/* ----- Stats strip ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  max-width: 920px;
  padding: 2.4rem 0;
  border-top: 1px solid rgba(27, 90, 58, 0.18);
  border-bottom: 1px solid rgba(27, 90, 58, 0.18);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(27, 90, 58, 0.16);
}

.stat__num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pond-deep);
}

.stat__num span {
  font-size: 0.5em;
  color: var(--ochre-deep);
  font-style: italic;
  margin-left: 2px;
  font-weight: 300;
}

.stat__label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ----- Floating decoration on hero ----- */
.float-decor {
  position: absolute;
  pointer-events: none;
  color: var(--sage);
  opacity: 0.25;
  z-index: 1;
}

.float-decor--1 {
  top: 14%; left: 6%;
  width: 90px; height: 90px;
  animation: floatA 11s ease-in-out infinite;
}

.float-decor--2 {
  top: 22%; right: 8%;
  width: 70px; height: 70px;
  color: var(--ochre);
  opacity: 0.3;
  animation: floatB 14s ease-in-out infinite;
}

.float-decor--3 {
  bottom: 18%; left: 12%;
  width: 130px; height: 70px;
  color: var(--moss);
  opacity: 0.45;
  animation: floatC 9s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(8px, -14px) rotate(8deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-12px, 10px) rotate(-10deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(14px, -6px); }
}

/* ============================================================
   STORY — about the muggers
   ============================================================ */
.story {
  padding: 7rem 2rem;
  background: var(--ivory);
  border-top: 1px solid rgba(27, 90, 58, 0.08);
  border-bottom: 1px solid rgba(27, 90, 58, 0.08);
}

.story__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.story__media { position: relative; }

.story__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(14, 58, 35, 0.35),
    0 10px 20px -10px rgba(14, 58, 35, 0.2);
}

.story__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.story__caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(244, 236, 216, 0.92);
  backdrop-filter: blur(4px);
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--pond-deep);
  border-left: 2px solid var(--ochre);
}

.story__text { max-width: 480px; }

.story__body {
  margin: 0 0 1.8rem;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story__body p { margin: 0 0 1.1rem; }
.story__body strong {
  font-weight: 600;
  color: var(--pond-deep);
}
.story__body em {
  font-style: italic;
  color: var(--ochre-deep);
}

/* ============================================================
   EXPERIENCES — tour cards
   ============================================================ */
.experiences {
  padding: 7rem 2rem;
  background: var(--cream);
  position: relative;
}

.experiences__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.experiences__head .section__lede { margin: 1rem auto 0; }

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.xp {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(27, 90, 58, 0.08);
  box-shadow: 0 10px 30px -18px rgba(14, 58, 35, 0.2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.xp:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -20px rgba(14, 58, 35, 0.35);
}

.xp__art {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.xp__art svg {
  width: 100%;
  height: 100%;
}

.xp__duration {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(244, 236, 216, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pond-deep);
  font-weight: 500;
}

.xp__body {
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-grow: 1;
}

.xp__title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--pond-deep);
}

.xp__desc {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.xp__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(27, 90, 58, 0.1);
}

.xp__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--pond-deep);
}
.xp__price span {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-left: 4px;
}

/* ============================================================
   DOSSIER — fact grid
   ============================================================ */
.dossier {
  padding: 7rem 2rem;
  background: var(--bone);
  position: relative;
}

.dossier::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27, 90, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 90, 58, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.dossier__head {
  position: relative;
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.dossier__head .section__lede { margin: 1rem auto 0; }

.dossier__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.fact {
  padding: 2.2rem 1.8rem 1.8rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 90, 58, 0.1);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.fact::before {
  content: "";
  position: absolute;
  top: 0; left: 1.8rem; right: 1.8rem;
  height: 2px;
  background: var(--ochre);
  transform-origin: left;
  transform: scaleX(0.4);
  transition: transform 0.4s var(--ease);
}

.fact:hover {
  transform: translateY(-3px);
  border-color: var(--pond);
}
.fact:hover::before { transform: scaleX(1); }

.fact__num {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--ochre-deep);
  margin-bottom: 0.7rem;
}

.fact__head {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--pond-deep);
  margin-bottom: 0.6rem;
}

.fact__body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.fact__body em {
  font-style: italic;
  color: var(--ochre-deep);
}

/* ============================================================
   SHOP — merchandise grid
   ============================================================ */
.shop {
  padding: 7rem 2rem 5rem;
  background: var(--cream);
}

.shop__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.shop__head .section__lede { margin: 1rem auto 0; }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1180px;
  margin: 0 auto;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(27, 90, 58, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(14, 58, 35, 0.32);
}

.product__art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--reed);
}

.product__art svg { width: 100%; height: 100%; }

.product__body {
  padding: 1.3rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product__name {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--pond-deep);
  letter-spacing: -0.005em;
}

.product__desc {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(27, 90, 58, 0.1);
}

.product__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--pond-deep);
}

.product__add {
  background: transparent;
  border: 1px solid var(--pond);
  color: var(--pond);
  padding: 0.55rem 1rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.product__add:hover {
  background: var(--pond);
  color: var(--cream);
}

.product__add.is-added {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--cream);
}

.shop__support {
  margin: 3rem auto 0;
  max-width: 520px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
}

/* ============================================================
   VISIT — final CTA
   ============================================================ */
.visit {
  padding: 6rem 2rem 7rem;
  background: var(--cream);
}

.visit__card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--pond-deep);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14, 58, 35, 0.5);
  min-height: 460px;
}

.visit__copy {
  padding: 4rem 3.5rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit__eyebrow { color: var(--t-accent) !important; }

.visit__title {
  margin: 0 0 1.2rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.visit__title em {
  font-style: italic;
  color: var(--t-accent);
  font-weight: 400;
}

.visit__body {
  margin: 0 0 2rem;
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t-sub);
  max-width: 440px;
}

.visit__list {
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.6rem;
}

.visit__list li {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--t-sub);
  line-height: 1.4;
}

.visit__list li span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--t-accent);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.visit__card .btn--primary {
  background: var(--ochre);
  color: var(--pond-deep);
  align-self: flex-start;
}

.visit__card .btn--primary:hover {
  background: var(--sun);
  color: var(--pond-deep);
}

.visit__art { position: relative; overflow: hidden; }
.visit__art svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--pond-darker);
  color: var(--t-sub);
  padding: 5rem 2rem 2rem;
}

.foot__top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(212, 184, 106, 0.15);
}

.foot__logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.foot__tag {
  margin: 0 0 1.8rem;
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--t-sub);
  max-width: 360px;
}

.foot__news {
  display: flex;
  gap: 0;
  max-width: 380px;
  border: 1px solid rgba(212, 184, 106, 0.25);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(244, 236, 216, 0.05);
}

.foot__news input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1.2rem;
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.84rem;
  outline: none;
}

.foot__news input::placeholder {
  color: var(--ink-muted);
  font-family: var(--f-body);
}

.foot__news button {
  background: var(--ochre);
  color: var(--pond-darker);
  border: none;
  padding: 0 1.4rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}

.foot__news button:hover { background: var(--sun); }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.foot__col h4 {
  margin: 0 0 1rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-accent);
  font-weight: 400;
}

.foot__col a {
  display: block;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--t-sub);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}

.foot__col a:hover { color: var(--cream); }

.foot__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.foot__bottom-sep {
  width: 4px;
  height: 4px;
  background: var(--t-accent);
  border-radius: 50%;
  opacity: 0.4;
}

/* ============================================================
   TOAST — "added to bag" feedback
   ============================================================ */
.toast {
  position: fixed;
  top: 5.5rem;
  right: 2rem;
  z-index: 100;
  padding: 0.85rem 1.2rem;
  background: var(--pond-deep);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: 0 14px 30px -12px rgba(14, 58, 35, 0.55);
  transform: translateX(120%);
  transition: transform 0.45s var(--ease-out);
  border-left: 3px solid var(--ochre);
}

.toast.is-visible { transform: translateX(0); }

.toast strong {
  color: var(--t-accent);
  font-weight: 500;
}

/* ============================================================
   INNER PAGE LAYOUT — story / field-notes / shop pages
   ============================================================ */
body.inner-page { background: var(--cream); }

body.inner-page .nav {
  /* nav visible immediately on inner pages */
  transform: translateY(0);
  opacity: 1;
}

.page-hero {
  position: relative;
  padding: 11rem 2rem 5rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(231, 197, 116, 0.16), transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(136, 163, 122, 0.18), transparent 60%),
    var(--cream);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(27, 90, 58, 0.08);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--ochre);
  opacity: 0.7;
}

.page-hero__title {
  margin: 0 0 1.4rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.8vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--pond-deep);
}

.page-hero__title em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}

.page-hero__lead {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   PROSE — long-form editorial body
   ============================================================ */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
  font-family: var(--f-body);
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.prose > p { margin: 0 0 1.4rem; }

.prose > p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4.4rem;
  line-height: 0.95;
  float: left;
  padding: 0.3rem 0.7rem 0 0;
  color: var(--ochre-deep);
  font-weight: 500;
}

.prose strong { color: var(--pond-deep); font-weight: 600; }
.prose em     { color: var(--ochre-deep); font-style: italic; }

.prose h3 {
  margin: 3.6rem 0 1rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--pond-deep);
  letter-spacing: -0.012em;
}

.prose h3 .num {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--ochre-deep);
  margin-bottom: 0.5rem;
}

.prose blockquote.pullquote {
  margin: 3.5rem -2rem;
  padding: 2.5rem 2rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  text-align: center;
  color: var(--pond-deep);
  border-top: 1px solid rgba(27, 90, 58, 0.18);
  border-bottom: 1px solid rgba(27, 90, 58, 0.18);
}

.prose blockquote.pullquote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.prose hr.rule {
  margin: 3rem auto;
  width: 60px;
  height: 1px;
  background: var(--ochre);
  border: 0;
  opacity: 0.7;
}

/* ============================================================
   FEATURED IMAGE — large editorial visual
   ============================================================ */
.feature-img {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.feature-img__art {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(14, 58, 35, 0.4);
}

.feature-img__art svg { width: 100%; height: 100%; display: block; }

.feature-img__cap {
  margin: 1rem 0 0;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}

/* ============================================================
   RELATED — end-of-page navigation cards
   ============================================================ */
.related {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid rgba(27, 90, 58, 0.1);
}

.related__card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.6rem 2.2rem;
  background: var(--ivory);
  border: 1px solid rgba(27, 90, 58, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.related__card::after {
  content: "→";
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--ochre-deep);
  transition: transform 0.4s var(--ease);
}

.related__card:hover {
  transform: translateY(-3px);
  border-color: var(--pond);
  box-shadow: 0 20px 40px -20px rgba(14, 58, 35, 0.3);
}
.related__card:hover::after { transform: translateX(6px); }

.related__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.related__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--pond-deep);
}

.related__desc {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}

/* ============================================================
   FIELD NOTES — category sections + identification guide
   ============================================================ */
.field-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.field-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(27, 90, 58, 0.18);
}

.field-section__cat {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}

.field-section__name {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.012em;
  color: var(--pond-deep);
}

.field-section__name em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}

/* Identification guide */
.id-guide {
  max-width: 1180px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: var(--ivory);
  border-radius: 8px;
  border: 1px solid rgba(27, 90, 58, 0.1);
}

.id-guide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.id-guide__art svg {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.id-guide__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.id-guide__list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.8rem;
  align-items: start;
  font-family: var(--f-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.id-guide__list li::before {
  content: attr(data-num);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--ochre-deep);
  padding-top: 0.3rem;
}

.id-guide__list strong {
  display: block;
  color: var(--pond-deep);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

/* Safety dos and donts */
.safety {
  max-width: 1180px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.safety__panel {
  padding: 2.2rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(27, 90, 58, 0.1);
  background: var(--ivory);
}

.safety__panel--do  { border-left: 3px solid #6e9460; }
.safety__panel--no { border-left: 3px solid var(--terracotta); }

.safety__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--pond-deep);
}

.safety__panel--do  .safety__head::before { content: "✓"; color: #6e9460; font-weight: 600; }
.safety__panel--no .safety__head::before  { content: "✗"; color: var(--terracotta); font-weight: 600; }

.safety__list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  font-family: var(--f-body);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.safety__list li { margin: 0 0 0.6rem; }

/* ============================================================
   SHOP — category filter bar + expanded grid
   ============================================================ */
.shop-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(27, 90, 58, 0.1);
}

.shop-bar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-filter {
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(27, 90, 58, 0.2);
  color: var(--ink-soft);
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.shop-filter:hover {
  border-color: var(--pond);
  color: var(--pond-deep);
}

.shop-filter.is-active {
  background: var(--pond);
  color: var(--cream);
  border-color: var(--pond);
}

.shop-bar__count {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.shop-page__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.product[data-hidden="true"] { display: none; }

.product__art {
  position: relative;
}

.product__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.7rem;
  background: rgba(244, 236, 216, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pond-deep);
}

.shop-support-card {
  max-width: 1180px;
  margin: 0 auto 6rem;
  padding: 3rem 2.5rem;
  background: var(--pond-deep);
  color: var(--cream);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.shop-support-card__copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--cream);
}
.shop-support-card__copy h3 em { color: var(--t-accent); font-style: italic; }

.shop-support-card__copy p {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--t-sub);
  max-width: 480px;
}

/* ============================================================
   STORY — feature image rows + alternating layout
   ============================================================ */
.story-row {
  max-width: 1180px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-row--reverse .story-row__art { order: 2; }

.story-row__art {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(14, 58, 35, 0.35);
}

.story-row__art svg { width: 100%; height: 100%; display: block; }

.story-row__copy h3 {
  margin: 0 0 1rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--pond-deep);
  letter-spacing: -0.012em;
}

.story-row__copy .eyebrow {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre-deep);
  margin-bottom: 0.8rem;
}

.story-row__copy p {
  margin: 0 0 1.2rem;
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   RESPONSIVE — premium content
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0.8rem 1.4rem; gap: 1rem; }
  .nav__links { gap: 1.4rem; }
  .nav__link { font-size: 0.72rem; }

  .story__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .story__text        { max-width: none; }

  .experiences__grid  { grid-template-columns: 1fr 1fr; }
  .experiences__grid .xp:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  .dossier__grid      { grid-template-columns: 1fr 1fr; }
  .shop__grid         { grid-template-columns: 1fr 1fr; }

  .visit__card        { grid-template-columns: 1fr; }
  .visit__art         { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .nav { padding: 0.7rem 1rem; gap: 0.5rem; }
  .nav__brand-sub { display: none; }
  .nav__cta { padding: 0.6rem 1rem; font-size: 0.65rem; }

  /* reveal hamburger, push it (and any actions) to the right */
  .nav__toggle { display: inline-flex; }
  .nav__actions { margin-left: auto; }

  /* the desktop link row becomes a drop-down panel under the bar */
  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.4rem 1rem 0.9rem;
    background: rgba(244, 236, 216, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 90, 58, 0.12);
    box-shadow: 0 18px 30px -18px rgba(15, 62, 38, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__link {
    display: block;
    padding: 0.95rem 0.3rem;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(27, 90, 58, 0.08);
  }
  .nav__links .nav__link:last-child { border-bottom: none; }
  .nav__link::after { display: none; }

  /* comfortable touch targets on mobile */
  .nav__bag { width: 42px; height: 42px; }
  .foot__col a { display: inline-block; padding: 0.4rem 0; }
  .foot__bottom { padding-top: 0.5rem; }

  .arrival { padding: 8rem 1.2rem 4rem; }
  .arrival__actions { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem 0; padding: 2rem 0; }
  .stat + .stat:nth-child(2n+1)::before { display: none; }

  .story { padding: 5rem 1.2rem; }
  .experiences, .dossier, .shop, .visit { padding: 5rem 1.2rem; }

  .experiences__grid  { grid-template-columns: 1fr; }
  .experiences__grid .xp:last-child { max-width: none; }
  .dossier__grid      { grid-template-columns: 1fr; }
  .shop__grid         { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .visit__copy { padding: 2.5rem 1.6rem; }
  .visit__list { grid-template-columns: 1fr; gap: 1rem; }

  .foot__top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .shop__grid { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot__bottom { flex-direction: column; gap: 0.5rem; }
  .foot__bottom-sep { display: none; }
  .toast { left: 1rem; right: 1rem; top: 5rem; }
}

/* ===== INNER PAGES — responsive ===== */
@media (max-width: 1024px) {
  .story-row     { grid-template-columns: 1fr; gap: 2rem; }
  .story-row--reverse .story-row__art { order: 0; }
  .id-guide__inner { grid-template-columns: 1fr; }
  .shop-page__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-support-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .page-hero    { padding: 8rem 1.2rem 4rem; }
  .prose        { padding: 3.5rem 1.2rem; }
  .field-section { padding: 3rem 1.2rem 1.5rem; }
  .id-guide     { padding: 2.5rem 1.5rem; }
  .safety       { grid-template-columns: 1fr; gap: 1rem; padding: 0 1.2rem; }
  .related      { grid-template-columns: 1fr; padding: 4rem 1.2rem; }
  .related__card { padding: 2rem 1.5rem; }
  .shop-bar     { padding: 1.6rem 1.2rem 1rem; }
  .shop-page__grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem 1.2rem 4rem; }
  .field-section__head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .shop-page__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   HOMEPAGE REDESIGN — new sections & overrides
   ============================================================ */

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-reveal-delay="0.12"].is-visible { transition-delay: 0.12s; }
[data-reveal][data-reveal-delay="0.18"].is-visible { transition-delay: 0.18s; }
[data-reveal][data-reveal-delay="0.2"].is-visible  { transition-delay: 0.20s; }
[data-reveal][data-reveal-delay="0.24"].is-visible { transition-delay: 0.24s; }

/* ---- Arrival: split layout ---- */
.arrival--split {
  padding: 8rem 2rem 7rem;
}
.arrival__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  text-align: left;
  max-width: 1300px;
  margin: 0 auto;
}
.arrival__eyebrow--left  { justify-content: flex-start; }
.arrival__sub--left      { text-align: left; margin-left: 0; }
.arrival__actions--left  { justify-content: flex-start; }
.stats--left             { text-align: left; }
.stats--left .stat       { align-items: flex-start; }
.stats--left .stat + .stat::before { top: 12%; bottom: 12%; }

/* Art frame */
.arrival__art { position: relative; }
.arrival__art-frame {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 55%, #1d5c3c 0%, #0e3a23 50%, #041408 100%);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow:
    0 50px 100px -50px rgba(14, 58, 35, 0.55),
    0 20px 40px -20px rgba(0,0,0,0.3),
    inset 0 0 80px rgba(0,0,0,0.25);
}
.arrival__art-svg { width: 100%; height: 100%; display: block; }
.arrival__art-coords {
  position: absolute;
  bottom: 1.2rem; left: 1.4rem; right: 1.4rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184,212,166,0.45);
}

/* ---- Marquee belt ---- */
.marquee-belt {
  width: 100%;
  background: var(--pond-deep);
  padding: 1.35rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  border-top: 1px solid rgba(231,197,116,0.14);
  border-bottom: 1px solid rgba(231,197,116,0.14);
}
.marquee-belt__track {
  display: inline-flex;
  align-items: center;
  gap: 2.8rem;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--t-accent);
  animation: beltScroll 44s linear infinite;
}
.marquee-dot {
  color: var(--t-faint);
  opacity: 0.45;
  font-size: 1rem;
  line-height: 1;
}
@keyframes beltScroll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

/* ---- Encounter ---- */
.encounter {
  padding: 9rem 2rem;
  background: var(--ivory);
  border-top: 1px solid rgba(27,90,58,0.08);
  border-bottom: 1px solid rgba(27,90,58,0.08);
}
.encounter__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9rem;
  align-items: center;
}
.encounter__tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}
.encounter__tag::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ochre);
  display: inline-block;
  flex-shrink: 0;
}
.encounter__title {
  margin: 0 0 2rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--pond-deep);
}
.encounter__title em { font-style: italic; color: var(--ochre-deep); }
.encounter__body {
  margin: 0 0 1.4rem;
  font-family: var(--f-body);
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 510px;
}
.encounter__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pond);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--pond);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.encounter__link:hover { gap: 1rem; color: var(--ochre-deep); border-color: var(--ochre); }
.encounter__right { position: relative; }
.encounter__pull-num {
  position: absolute;
  top: -3.5rem; right: -1rem;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--pond-deep);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.encounter__pull-num span { font-size: 0.32em; letter-spacing: 0.05em; vertical-align: super; }
.encounter__data {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2.6rem;
  background: var(--cream);
  border: 1px solid rgba(27,90,58,0.12);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px -30px rgba(14,58,35,0.18);
}
.encounter__data-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(27,90,58,0.09);
}
.encounter__data-item:first-child { padding-top: 0; }
.encounter__data-item:last-child  { border-bottom: none; padding-bottom: 0; }
.encounter__data-label {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}
.encounter__data-value {
  font-family: var(--f-display);
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--pond-deep);
  letter-spacing: -0.01em;
}
.encounter__data-note {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* ---- Pull quote ---- */
.pullquote {
  position: relative;
  padding: 9rem 2rem;
  background: var(--pond-deep);
  overflow: hidden;
}
.pullquote::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(29,92,60,0.5) 0%, transparent 72%);
  pointer-events: none;
}
.pullquote__inner {
  position: relative; z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pullquote__mark {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(6rem, 11vw, 11rem);
  line-height: 0.45;
  color: var(--ochre);
  opacity: 0.38;
  font-style: italic;
}
.pullquote__text {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.48;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.pullquote__attr {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-faint);
  opacity: 0.65;
}
.pullquote__river {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  opacity: 0.6;
}
.pullquote__river svg { width: 100%; height: 100%; }

/* ---- Profiles ---- */
.profiles {
  padding: 9rem 2rem;
  background: var(--cream);
}
.profiles__header {
  max-width: 720px;
  margin: 0 auto 5.5rem;
  text-align: center;
}
.profiles__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 0 1.3rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ochre-deep);
}
.profiles__eyebrow::before,
.profiles__eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--ochre);
  opacity: 0.6;
  display: inline-block;
}
.profiles__title {
  margin: 0 0 1.1rem;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pond-deep);
}
.profiles__sub {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-soft);
}
.profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.profile-card {
  background: var(--ivory);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(27,90,58,0.1);
  box-shadow: 0 12px 32px -20px rgba(14,58,35,0.2);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 56px -26px rgba(14,58,35,0.38);
}
.profile-card__art {
  position: relative;
  aspect-ratio: 5 / 3;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, #1d5c3c 0%, #041408 100%);
  overflow: hidden;
}
.profile-card__art svg { width: 100%; height: 100%; display: block; }
.profile-card__id {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184,212,166,0.75);
  background: rgba(2,16,10,0.6);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(143,168,123,0.22);
  backdrop-filter: blur(4px);
}
.profile-card__body {
  padding: 1.9rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.profile-card__name {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--pond-deep);
}
.profile-card__desc {
  margin: 0;
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--ink-soft);
  flex-grow: 1;
}
.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}
.profile-card__tags span {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pond);
  background: rgba(27,90,58,0.09);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(27,90,58,0.18);
}

/* ---- Responsive additions ---- */
@media (max-width: 1100px) {
  .arrival__inner--split {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  .arrival--split { padding: 7rem 2rem 6rem; }
  .encounter__inner { grid-template-columns: 1fr; gap: 4rem; }
  .encounter__pull-num { display: none; }
  .profiles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .arrival__inner--split { text-align: center; }
  .arrival__eyebrow--left  { justify-content: center; }
  .arrival__sub--left      { text-align: center; margin: 0 auto 2.4rem; }
  .arrival__actions--left  { justify-content: center; }
  .stats--left .stat       { align-items: center; }
  .profiles__grid { grid-template-columns: 1fr; }
  .pullquote__text { font-size: clamp(1.4rem, 5vw, 2rem); }
}

/* ============================================================
   WELCOME CARD — mascot split layout
   ============================================================ */
.welcome--split {
  flex-direction: row !important;
  align-items: center !important;
  gap: 3.5rem !important;
  text-align: left !important;
  max-width: 900px !important;
  padding-bottom: 2rem !important;
}

.welcome__mascot {
  flex-shrink: 0;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 1 / 1;
  position: relative;
}

.welcome__mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 40px rgba(40, 180, 100, 0.35))
          drop-shadow(0 0 80px rgba(20, 100, 55, 0.25));
  animation: mascotFloat 5s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1.5deg); }
}

.welcome__copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.welcome__badge-label {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--t-accent);
  opacity: 0.8;
}

.welcome__mascot-desc {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  line-height: 1.7;
  color: var(--t-sub);
  max-width: 400px;
}

/* Stack on small screens */
@media (max-width: 640px) {
  .welcome--split {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  .welcome__copy { align-items: center; }
  .welcome__mascot { width: clamp(140px, 50vw, 200px); }
}

/* ---- Arrival art frame: mascot, no background ---- */
.arrival__art-frame--bare {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  aspect-ratio: 1 / 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

.arrival__mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(14, 58, 35, 0.22));
  animation: mascotFloat 5s ease-in-out infinite;
}

/* ---- Profile card real photos ---- */
.profile-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.profile-card__photo--portrait {
  object-position: center top;
}

/* ---- Visit card real photo ---- */
.visit__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ---- Story page hero photo ---- */
.feature-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ---- Field notes id-guide photo ---- */
.id-guide__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 4px;
}

/* ---- Shop product photos ---- */
.product__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ---- Mascot: no frame, cream bg so transparent PNG blends clean ---- */
.arrival__art-frame--bare {
  background: var(--cream) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  inset: unset !important;
}
.arrival__mascot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 06 · THE COLLECTION  (museum collection gallery)
   Calm, curated, archive-grade. Each object is an exhibit, not a product.
   Reveal handled by existing [data-rv] system. No commerce UI.
   ═══════════════════════════════════════════════════════════════ */
.px-collection {
  position: relative;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 55%, var(--cream-deep) 100%);
  color: var(--ink);
  padding: clamp(90px, 12vh, 180px) 0 0;
  overflow: hidden;
}
.px-collection::before {           /* faint archival paper texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(110,75,42,0.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.5; pointer-events: none;
}
.px-coll__wrap { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 64px); }

/* ---- Intro ---- */
.px-coll__intro { text-align: center; max-width: 760px; margin: 0 auto clamp(60px, 9vh, 130px); }
.px-coll__sec {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ochre-deep); margin: 0 0 26px;
}
.px-coll__sec::before { content: "❖"; margin-right: 14px; color: var(--moss); }
.px-coll__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(48px, 9vw, 132px); line-height: 0.94; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.px-coll__sub {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 2.2vw, 25px); color: var(--ink-muted);
  margin: 22px auto 0; max-width: 520px; line-height: 1.5;
}
.px-coll__rule { width: 54px; height: 1px; background: var(--ink-faint); margin: 34px auto 0; opacity: 0.5; }

/* ---- Exhibit ---- */
.px-coll__item {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: clamp(50px, 8vh, 110px) 0;
}
.px-coll__item + .px-coll__item { border-top: 1px solid rgba(14,31,19,0.10); }
.px-coll__item--flip .px-coll__stage { order: 2; }
.px-coll__item--flip .px-coll__label { order: 1; }

/* ---- Image stage (the pedestal) ---- */
.px-coll__stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 3vw, 44px);
  background: radial-gradient(120% 90% at 50% 30%, var(--ivory) 0%, var(--bone) 100%);
  border: 1px solid rgba(110,75,42,0.16);
  border-radius: 4px;
  box-shadow: 0 30px 70px -38px rgba(14,31,19,0.45), inset 0 1px 0 rgba(255,255,255,0.5);
}
.px-coll__stage::after {           /* soft pedestal shadow under object */
  content: ""; position: absolute; left: 18%; right: 18%; bottom: 8%; height: 26px;
  background: radial-gradient(ellipse at center, rgba(14,31,19,0.22), transparent 70%);
  filter: blur(6px); z-index: 0;
}
.px-coll__photo {
  position: relative; z-index: 1;
  display: block; width: 100%; height: auto;
  max-height: 64vh; object-fit: contain;
  transition: transform 0.9s var(--ease-out, cubic-bezier(.2,.7,.2,1));
}
.px-coll__stage:hover .px-coll__photo { transform: scale(1.025); }

/* framed poster variant */
.px-coll__stage--frame { background: var(--bone); padding: clamp(26px, 3.4vw, 58px); }
.px-coll__stage--frame .px-coll__photo {
  border: 14px solid var(--ivory);
  outline: 1px solid rgba(14,31,19,0.35);
  box-shadow: 0 24px 50px -26px rgba(14,31,19,0.6);
  object-fit: cover; aspect-ratio: 3/4; max-height: 70vh;
}
/* postcard variant */
.px-coll__stage--card .px-coll__photo {
  aspect-ratio: 7/5; object-fit: cover; max-height: 46vh; width: 86%;
  border: 1px solid rgba(14,31,19,0.2); border-radius: 2px;
  box-shadow: 0 18px 40px -22px rgba(14,31,19,0.5);
  transform: rotate(-1.4deg);
}
.px-coll__stage--card:hover .px-coll__photo { transform: rotate(-1.4deg) scale(1.02); }
/* pin variant — small object, large presentation */
.px-coll__stage--pin { background: radial-gradient(120% 100% at 50% 35%, var(--pond) 0%, var(--pond-deep) 100%); }
.px-coll__pin {
  position: relative; z-index: 1;
  width: clamp(150px, 20vw, 230px); height: clamp(150px, 20vw, 230px);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--cream) 0%, var(--cream-deep) 60%, var(--bone) 100%);
  border: 6px solid var(--ochre);
  box-shadow: 0 22px 46px -20px rgba(0,0,0,0.6), inset 0 2px 6px rgba(255,255,255,0.6), inset 0 -8px 18px rgba(110,75,42,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-out, cubic-bezier(.2,.7,.2,1));
}
.px-coll__stage--pin:hover .px-coll__pin { transform: scale(1.04) rotate(2deg); }
.px-coll__pin img { width: 72%; height: auto; filter: saturate(1.05); }

/* ---- Label (museum placard) ---- */
.px-coll__code {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.34em;
  color: var(--ochre-deep); margin: 0 0 18px;
}
.px-coll__name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(30px, 4.2vw, 54px); line-height: 1.02; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 20px;
}
.px-coll__story {
  font-family: var(--f-body); font-size: clamp(15px, 1.25vw, 17.5px);
  line-height: 1.72; color: var(--ink-soft); margin: 0 0 30px; max-width: 42ch;
}
.px-coll__meta { list-style: none; margin: 0; padding: 0; max-width: 380px; }
.px-coll__meta li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 0; border-top: 1px solid rgba(14,31,19,0.14);
  font-size: 13px;
}
.px-coll__meta li:last-child { border-bottom: 1px solid rgba(14,31,19,0.14); }
.px-coll__meta .k {
  font-family: var(--f-mono); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); font-size: 11px;
}
.px-coll__meta .v { font-family: var(--f-body); color: var(--ink-soft); text-align: right; }

/* ---- Bridge to store ---- */
.px-coll__bridge {
  text-align: center;
  padding: clamp(120px, 22vh, 280px) 22px clamp(110px, 16vh, 200px);
}
.px-coll__bridge-mark { color: var(--moss); font-size: 16px; letter-spacing: 0.5em; margin: 0 0 30px; }
.px-coll__bridge-line {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(30px, 5vw, 64px); line-height: 1.1; color: var(--ink);
  margin: 0 auto; max-width: 16ch;
}
.px-coll__cta {
  display: inline-block; margin-top: clamp(40px, 6vh, 72px);
  font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ivory); text-decoration: none;
  background: var(--pond-deep); padding: 20px 46px; border-radius: 2px;
  border: 1px solid var(--pond);
  transition: background 0.5s var(--ease-out, ease), transform 0.5s var(--ease-out, ease), letter-spacing 0.5s ease;
}
.px-coll__cta:hover { background: var(--pond); transform: translateY(-2px); letter-spacing: 0.4em; }

@media (max-width: 860px) {
  .px-coll__item, .px-coll__item--flip { grid-template-columns: 1fr; gap: 30px; padding: 56px 0; }
  .px-coll__item--flip .px-coll__stage { order: 1; }
  .px-coll__item--flip .px-coll__label { order: 2; }
  .px-coll__photo { max-height: 56vh; }
  .px-coll__meta { max-width: none; }
}
