:root {
  --sand: #d7c3a1;
  --warm-white: #f6f0e7;
  --ocean: #1b5d70;
  --ocean-deep: #0c2f3c;
  --palm: #264438;
  --charcoal: #0b0d0e;
  --stone: #7d7b72;
  --sunset: #d98b58;
  --gold: #e5b878;
  --glass: rgba(246, 240, 231, 0.10);
  --border: rgba(246, 240, 231, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--charcoal);
  color: var(--warm-white);
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--warm-white);
  cursor: default;
}

body.is-locked { overflow: hidden; }

::selection {
  background: rgba(229, 184, 120, 0.45);
  color: var(--warm-white);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
  transform: translateY(-180%);
  color: var(--charcoal);
  background: var(--warm-white);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.skip-link:focus { transform: translateY(0); }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.25) 0 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
}

.cursor-light {
  position: fixed;
  width: 40vw;
  height: 40vw;
  left: -20vw;
  top: -20vw;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,240,231,0.10), transparent 58%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.has-entered .cursor-light { opacity: 1; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(27, 93, 112, 0.22), transparent 38%),
    #020304;
  overflow: hidden;
}

.intro__mist {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 40% 40%, rgba(246, 240, 231, 0.08), transparent 20%),
    radial-gradient(circle at 65% 70%, rgba(27, 93, 112, 0.12), transparent 24%);
  filter: blur(34px);
  animation: mistDrift 18s ease-in-out infinite alternate;
}

.intro__start {
  position: relative;
  display: grid;
  gap: 1.2rem;
  width: min(760px, calc(100vw - 2rem));
  padding: 2rem;
  color: var(--warm-white);
  background: transparent;
  border: 0;
  text-align: center;
  font: inherit;
  cursor: pointer;
}

.intro__start:focus-visible {
  outline: 1px solid rgba(246, 240, 231, 0.8);
  outline-offset: 1rem;
}

.intro__small,
.eyebrow {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.72);
}

.intro__line {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  opacity: 0;
  transform: translateY(28px);
}

.intro__line[data-line="1"] { opacity: 1; transform: translateY(0); }
.intro__line[data-line="2"],
.intro__line[data-line="3"] { position: absolute; inset: 50% 1rem auto; transform: translateY(-30%); }

.intro__hint {
  margin-top: 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.45);
}

.audio-toggle {
  position: fixed;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(246, 240, 231, 0.22);
  border-radius: 999px;
  background: rgba(11, 13, 14, 0.38);
  color: var(--warm-white);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.audio-toggle span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone);
  box-shadow: 0 0 0 0 rgba(229, 184, 120, 0.4);
}

.audio-toggle[aria-pressed="true"] span {
  background: var(--gold);
  animation: soundPulse 2.2s ease-in-out infinite;
}

body.has-entered .audio-toggle {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.compass {
  position: fixed;
  left: clamp(0.8rem, 3vw, 2rem);
  top: 50%;
  z-index: 5000;
  transform: translateY(-50%);
  display: grid;
  gap: 0.85rem;
  place-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.has-entered .compass { opacity: 1; }

.compass__brand {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: rgba(246, 240, 231, 0.55);
  margin-bottom: 0.4rem;
}

.compass__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 240, 231, 0.28);
  transition: transform 0.4s ease, background 0.4s ease;
}

.compass__dot.is-active {
  transform: scale(1.9);
  background: var(--gold);
}

.scene {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.scene__content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

h1,
h2,
h3,
p { margin: 0; }

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

h1 { font-size: clamp(5rem, 15vw, 16rem); }
h2 { font-size: clamp(3.4rem, 9.6vw, 11rem); }

.lead,
.scene-copy {
  max-width: 560px;
  margin-top: 2rem;
  color: rgba(246, 240, 231, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  font-weight: 300;
}

.scene--arrival {
  background:
    linear-gradient(180deg, rgba(6, 14, 20, 0.2), rgba(8, 22, 27, 0.66) 58%, rgba(11, 13, 14, 1)),
    radial-gradient(circle at 50% 20%, rgba(246, 240, 231, 0.15), transparent 36%),
    var(--ocean-deep);
}

.ocean-canvas,
.stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.arrival__content {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
}

.arrival__content h1 {
  margin-top: 1.4rem;
  max-width: 11ch;
}

.arrival__light {
  position: absolute;
  inset: -10% 20% auto;
  height: 78vh;
  background: conic-gradient(from 180deg at 50% 0%, transparent, rgba(246, 240, 231, 0.18), transparent 38%);
  filter: blur(18px);
  opacity: 0.5;
  animation: lightBreath 9s ease-in-out infinite alternate;
}

.cloud {
  position: absolute;
  width: 38vw;
  height: 12vw;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(246,240,231,0.22), rgba(246,240,231,0.04) 58%, transparent 70%);
  filter: blur(22px);
  opacity: 0.5;
  z-index: 1;
  animation: cloudDrift 40s linear infinite;
}

.cloud--one { top: 15%; left: -12%; animation-duration: 48s; }
.cloud--two { top: 27%; right: -14%; animation-direction: reverse; animation-duration: 58s; }
.cloud--three { top: 7%; left: 42%; width: 22vw; opacity: 0.28; animation-duration: 70s; }

.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(246, 240, 231, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scene--island {
  min-height: 118vh;
  background:
    radial-gradient(circle at 72% 34%, rgba(229, 184, 120, 0.18), transparent 24%),
    linear-gradient(180deg, var(--charcoal), #152019 36%, #0d1310 100%);
}

.sun-orb {
  position: absolute;
  top: 14%;
  right: 13%;
  width: clamp(9rem, 20vw, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,184,120,0.54), rgba(217,139,88,0.16) 46%, transparent 68%);
  filter: blur(4px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.island__content h2 { max-width: 11ch; }

.destinations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
  margin-top: clamp(3rem, 7vw, 7rem);
}

.destination-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  text-decoration: none;
  color: var(--warm-white);
  background:
    linear-gradient(180deg, rgba(246,240,231,0.12), rgba(246,240,231,0.04)),
    rgba(246,240,231,0.04);
  border: 1px solid rgba(246,240,231,0.14);
  border-radius: 999px 999px 2rem 2rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(var(--float, 0));
  transition: transform 0.8s var(--ease), border-color 0.4s ease, background 0.4s ease;
}

.destination-card:nth-child(2) { margin-top: 4rem; }
.destination-card:nth-child(3) { margin-top: 1.5rem; }
.destination-card:nth-child(4) { margin-top: 5.5rem; }

.destination-card:hover,
.destination-card:focus-visible {
  transform: translateY(calc(var(--float, 0) - 18px));
  border-color: rgba(229, 184, 120, 0.42);
  background: rgba(246,240,231,0.09);
}

.destination-card__icon { font-size: 2rem; filter: grayscale(0.3); }
.destination-card__title { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.4rem); line-height: 0.92; letter-spacing: -0.05em; }
.destination-card__meta { max-width: 12rem; font-size: 0.75rem; line-height: 1.8; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246, 240, 231, 0.55); }

.scene--beach {
  min-height: 130vh;
  align-items: start;
  padding-top: 14vh;
  background:
    linear-gradient(180deg, #ebdac0 0%, #dfc8a5 52%, #bfa27a 100%);
  color: var(--charcoal);
}

.sand-texture {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(11,13,14,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.35) 0 1px, transparent 1px);
  background-size: 14px 14px, 22px 22px;
}

.wave-layer {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 36vh;
  border-radius: 50% 50% 0 0 / 26% 26% 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(27,93,112,0.82) 18%, rgba(12,47,60,0.9));
  opacity: 0.75;
  animation: tide 8s ease-in-out infinite alternate;
}

.wave-layer--back { bottom: 14vh; opacity: 0.33; animation-duration: 13s; }
.wave-layer--front { filter: blur(0.3px); }

.birds span {
  position: absolute;
  width: 34px;
  height: 14px;
  border-top: 2px solid rgba(11,13,14,0.4);
  border-radius: 50%;
  animation: birdFly 22s linear infinite;
}

.birds span:nth-child(1) { top: 18%; left: -4%; animation-delay: 0s; }
.birds span:nth-child(2) { top: 28%; left: -12%; animation-delay: 7s; transform: scale(0.75); }
.birds span:nth-child(3) { top: 12%; left: -8%; animation-delay: 13s; transform: scale(0.55); }

.beach__content .eyebrow,
.beach__content .scene-copy { color: rgba(11, 13, 14, 0.68); }
.beach__content h2 { max-width: 10ch; }

.hotspot {
  position: relative;
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(11, 13, 14, 0.20);
  border-radius: 999px;
  padding: 0.92rem 1.15rem;
  color: var(--charcoal);
  background: rgba(246, 240, 231, 0.44);
  backdrop-filter: blur(16px);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease;
}

.hotspot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ocean);
  box-shadow: 0 0 0 12px rgba(27,93,112,0.10);
  animation: hotspotPulse 2s ease-in-out infinite;
}

.hotspot:hover,
.hotspot:focus-visible { transform: translateY(-4px); background: rgba(246, 240, 231, 0.72); }

.floating-products {
  position: relative;
  z-index: 4;
  width: min(1040px, calc(100vw - 2rem));
  margin: 12vh auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(70px);
  pointer-events: none;
}

.floating-products.is-visible { pointer-events: auto; }

.product-relic {
  min-height: 31rem;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(246, 240, 231, 0.42);
  border: 1px solid rgba(11, 13, 14, 0.10);
  box-shadow: 0 30px 80px rgba(60, 42, 24, 0.18);
  backdrop-filter: blur(20px);
}

.product-relic__image {
  height: 23rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.82), transparent 18%),
    linear-gradient(135deg, rgba(27,93,112,0.16), rgba(11,13,14,0.1)),
    #d8c4a3;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.product-relic__image::before,
.product-relic__image::after {
  content: "";
  position: absolute;
  border-radius: 1.5rem 1.5rem 0.8rem 0.8rem;
  background: rgba(246, 240, 231, 0.62);
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.08);
}

.product-relic__image--linen::before { width: 44%; height: 72%; left: 28%; top: 18%; clip-path: polygon(15% 0, 85% 0, 100% 32%, 84% 100%, 16% 100%, 0 32%); }
.product-relic__image--shorts::before { width: 56%; height: 42%; left: 22%; top: 40%; clip-path: polygon(0 0, 100% 0, 88% 100%, 58% 100%, 50% 32%, 42% 100%, 12% 100%); }
.product-relic__image--overshirt::before { width: 50%; height: 76%; left: 25%; top: 16%; background: rgba(38,68,56,0.34); clip-path: polygon(14% 0, 86% 0, 100% 26%, 86% 100%, 14% 100%, 0 26%); }

.product-relic p,
.product-relic h3 { color: var(--charcoal); }
.product-relic p { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(11, 13, 14, 0.55); }
.product-relic h3 { margin-top: 0.65rem; font-family: var(--serif); font-size: 2rem; line-height: 1; letter-spacing: -0.04em; font-weight: 500; }

.scene--forest {
  min-height: 130vh;
  background:
    radial-gradient(circle at 42% 12%, rgba(246,240,231,0.14), transparent 26%),
    linear-gradient(180deg, #121914, #1c2d24 36%, #07100d 100%);
}

.forest-light {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 15%, rgba(246,240,231,0.12) 20%, transparent 28%),
    linear-gradient(128deg, transparent 42%, rgba(229,184,120,0.10) 48%, transparent 56%);
  filter: blur(4px);
  animation: forestLight 11s ease-in-out infinite alternate;
}

.leaf {
  position: absolute;
  width: 34vw;
  height: 54vh;
  background: rgba(38, 68, 56, 0.42);
  border-radius: 0 100% 0 100%;
  filter: blur(1px);
  transform-origin: top center;
  animation: leafSway 8s ease-in-out infinite alternate;
}

.leaf--a { left: -10%; top: 4%; transform: rotate(22deg); }
.leaf--b { right: -8%; top: 14%; transform: rotate(-38deg); animation-duration: 10s; }
.leaf--c { left: 38%; bottom: -20%; transform: rotate(70deg); opacity: 0.55; animation-duration: 13s; }

.forest__content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.forest__content h2 { max-width: 9ch; }

.journal-stack {
  display: grid;
  gap: 1rem;
}

.journal-entry {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: rgba(246, 240, 231, 0.08);
  border: 1px solid rgba(246, 240, 231, 0.13);
  border-radius: 1.2rem;
  backdrop-filter: blur(20px);
}

.journal-entry span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 240, 231, 0.48);
}

.journal-entry h3 {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.journal-entry p {
  margin-top: 1rem;
  color: rgba(246, 240, 231, 0.64);
  line-height: 1.75;
  font-weight: 300;
}

.scene--campfire {
  min-height: 130vh;
  background:
    radial-gradient(circle at 50% 70%, rgba(217, 139, 88, 0.28), transparent 28%),
    linear-gradient(180deg, #030506, #0b1117 50%, #070606 100%);
}

.campfire__content h2 { max-width: 10ch; }

.campfire__glow {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 54vw;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,139,88,0.5), rgba(229,184,120,0.14) 22%, transparent 58%);
  filter: blur(26px);
  animation: fireGlow 1.8s ease-in-out infinite alternate;
}

.fire {
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: 8rem;
  height: 10rem;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 0 35px rgba(217, 139, 88, 0.85));
}

.fire span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4rem;
  height: 8rem;
  border-radius: 4rem 4rem 1rem 1rem;
  background: linear-gradient(180deg, #f3c17e, #d98b58 54%, transparent);
  transform-origin: bottom center;
  animation: flame 0.9s ease-in-out infinite alternate;
}

.fire span:nth-child(1) { transform: translateX(-50%) rotate(-8deg); }
.fire span:nth-child(2) { width: 3rem; height: 7rem; animation-delay: 0.15s; background: linear-gradient(180deg, #f8e3bd, #e2a16c 58%, transparent); }
.fire span:nth-child(3) { width: 4.6rem; height: 6rem; animation-delay: 0.32s; transform: translateX(-50%) rotate(12deg); opacity: 0.75; }

.smoke {
  position: absolute;
  left: 50%;
  bottom: 27%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,240,231,0.11), transparent 58%);
  filter: blur(14px);
  animation: smokeRise 8s ease-in-out infinite;
}

.smoke--two { animation-delay: 3s; opacity: 0.6; }

.campfire-objects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 3rem;
  max-width: 760px;
}

.camp-object {
  min-width: 8rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(246,240,231,0.16);
  color: var(--warm-white);
  background: rgba(246,240,231,0.07);
  backdrop-filter: blur(16px);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.camp-object span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.5);
}

.camp-object:hover,
.camp-object:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(229,184,120,0.45);
  background: rgba(246,240,231,0.12);
}

.scene--sunset {
  min-height: 118vh;
  background:
    linear-gradient(180deg, #df8d5e 0%, #d7a46c 42%, #1b5d70 72%, #071114 100%);
}

.sunset__content {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sunset__content h2 { max-width: 10ch; }
.sunset__content .scene-copy { color: rgba(11, 13, 14, 0.7); font-weight: 400; }
.sunset__content .eyebrow { color: rgba(11, 13, 14, 0.58); }

.sunset-cloud {
  position: absolute;
  height: 12vh;
  width: 38vw;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(246,240,231,0.26), transparent 68%);
  filter: blur(14px);
  animation: cloudDrift 45s linear infinite;
}

.sunset-cloud--one { top: 18%; left: -10%; }
.sunset-cloud--two { top: 31%; right: -14%; animation-direction: reverse; animation-duration: 62s; }

.cliff {
  position: absolute;
  right: -4vw;
  bottom: -1px;
  width: 54vw;
  height: 38vh;
  background: linear-gradient(135deg, transparent 0 18%, #15110d 19% 100%);
  filter: drop-shadow(-20px -30px 60px rgba(0, 0, 0, 0.25));
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.4rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  color: var(--warm-white);
  background: var(--charcoal);
  border: 1px solid rgba(11,13,14,0.2);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.cta::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.4s ease;
}

.cta:hover,
.cta:focus-visible { transform: translateY(-4px); background: #000; }
.cta:hover::after { transform: translateX(5px); }

.reveal-panel {
  position: fixed;
  z-index: 8500;
  left: 50%;
  bottom: 1rem;
  width: min(1120px, calc(100vw - 2rem));
  max-height: min(82vh, 760px);
  overflow: auto;
  transform: translate(-50%, 110%);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(246,240,231,0.18);
  background:
    linear-gradient(180deg, rgba(246,240,231,0.16), rgba(246,240,231,0.08)),
    rgba(11,13,14,0.74);
  color: var(--warm-white);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
  transition: transform 0.9s var(--ease);
}

.reveal-panel.is-open { transform: translate(-50%, 0); }

.reveal-panel h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  max-width: 12ch;
}

.reveal-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1.3rem;
  color: rgba(246,240,231,0.68);
  line-height: 1.7;
  font-weight: 300;
}

.reveal-panel__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.72rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(246,240,231,0.18);
  background: rgba(246,240,231,0.08);
  color: var(--warm-white);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.panel-card {
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(246,240,231,0.12);
  border-radius: 1rem;
  background: rgba(246,240,231,0.06);
}

.panel-card__visual {
  height: 10rem;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(246,240,231,0.45), transparent 18%),
    linear-gradient(135deg, rgba(215,195,161,0.44), rgba(27,93,112,0.18));
  margin-bottom: 1rem;
}

.panel-card span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.48);
}

.panel-card h3 {
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 18rem;
  padding: 4rem 1rem;
  background: #070808;
  border-top: 1px solid rgba(246,240,231,0.08);
}

.footer span {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.footer a {
  color: rgba(246,240,231,0.55);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer a:hover,
.footer a:focus-visible { color: var(--warm-white); }

@keyframes mistDrift { to { transform: translate3d(4%, -3%, 0) scale(1.08); } }
@keyframes soundPulse { 50% { box-shadow: 0 0 0 8px rgba(229, 184, 120, 0); } }
@keyframes lightBreath { to { opacity: 0.8; transform: translateY(4vh) scale(1.05); } }
@keyframes cloudDrift { to { transform: translateX(124vw); } }
@keyframes orbFloat { to { transform: translate3d(-2vw, 4vh, 0) scale(1.05); } }
@keyframes tide { to { transform: translateY(5vh) scaleX(1.04); } }
@keyframes birdFly { to { transform: translateX(118vw) translateY(-5vh); } }
@keyframes hotspotPulse { 50% { box-shadow: 0 0 0 20px rgba(27,93,112,0); } }
@keyframes forestLight { to { transform: translateX(4vw); opacity: 0.75; } }
@keyframes leafSway { to { transform: rotate(30deg) translate3d(2vw, -1vh, 0); } }
@keyframes fireGlow { to { transform: translateX(-50%) scale(1.07); opacity: 0.8; } }
@keyframes flame { to { height: 9.5rem; transform: translateX(-50%) rotate(7deg) scaleX(0.78); } }
@keyframes smokeRise { to { transform: translate(-7vw, -22vh) scale(1.7); opacity: 0; } }

@media (max-width: 960px) {
  .compass { display: none; }
  .destinations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .destination-card { min-height: 22rem; border-radius: 2rem; }
  .destination-card:nth-child(n) { margin-top: 0; }
  .forest__content { grid-template-columns: 1fr; align-items: start; }
  .floating-products,
  .panel-grid { grid-template-columns: 1fr; }
  .product-relic { min-height: auto; }
  .footer { flex-wrap: wrap; justify-content: flex-start; padding-inline: 2rem; }
}

@media (max-width: 640px) {
  .scene__content { width: min(100% - 2rem, 1180px); }
  .arrival__content { min-height: 78vh; padding-top: 5rem; }
  h1 { font-size: clamp(4.2rem, 21vw, 7rem); }
  h2 { font-size: clamp(3.2rem, 16vw, 5.8rem); }
  .destinations { grid-template-columns: 1fr; }
  .destination-card { min-height: 15rem; }
  .scene--beach,
  .scene--forest,
  .scene--campfire { min-height: 118vh; }
  .campfire-objects { display: grid; grid-template-columns: 1fr 1fr; }
  .camp-object { min-width: 0; }
  .cliff { width: 78vw; height: 24vh; }
  .audio-toggle { left: 1rem; right: auto; }
  .reveal-panel { bottom: 0.5rem; width: calc(100vw - 1rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .cursor-light { display: none; }
}
