/* ==========================================================================
   ESCAPE GOATZ — "Heist Noir" redesign
   Static HTML/CSS/JS · deployable anywhere (Hostinger shared hosting OK)
   ========================================================================== */

:root {
  /* Brand system (from colorpalette.md) */
  --blue-dark:    #00446c;
  --blue:         #00588e;
  --blue-light:   #3a7cb2;
  --purple-dark:  #7d0cb5;
  --purple:       #aa1fe8;
  --purple-light: #ca6cff;
  --gold:         #ff9f1c;
  --gold-bright:  #ffb545;
  --cyan:         #00c0cc;

  /* Noir stage */
  --ink:      #070b13;
  --ink-2:    #0b1120;
  --ink-3:    #111a2e;
  --line:     rgba(148, 170, 210, 0.14);
  --paper:    #f3efe6;
  --muted:    #9aa7bd;

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Karla", sans-serif;

  --radius: 20px;
  --nav-h: 76px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #1a1204; }

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

/* Film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, #e88400);
  color: #221302;
  box-shadow: 0 10px 34px -10px rgba(255, 159, 28, 0.65);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(255, 159, 28, 0.8); }

.btn-ghost {
  border-color: rgba(243, 239, 230, 0.28);
  color: var(--paper);
  background: rgba(243, 239, 230, 0.04);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 38px -12px rgba(7, 11, 19, 0.55);
}
.btn-dark:hover { transform: translateY(-2px); background: #101a2f; }

.btn-sm { padding: 11px 22px; font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.8);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.05);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 11, 19, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  padding: 10px 20px;
  color: var(--paper);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 18px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 940px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background:
    radial-gradient(900px 520px at 78% 30%, rgba(255, 159, 28, 0.13), transparent 62%),
    radial-gradient(700px 500px at 12% 82%, rgba(125, 12, 181, 0.16), transparent 65%),
    var(--ink);
  overflow: hidden;
}
/* diagonal light beam, echoing the keyhole art */
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -6%;
  width: 46%; height: 150%;
  background: linear-gradient(200deg, rgba(255, 159, 28, 0.10), rgba(255, 159, 28, 0.015) 60%, transparent);
  transform: skewX(-14deg);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  margin: 22px 0 24px;
}
.hero h1 .gold {
  color: var(--gold);
  position: relative;
}
@media (min-width: 880px) {
  .hero h1 .gold { white-space: nowrap; }
}
.hero h1 .gold::after {
  content: "";
  position: absolute;
  left: 2%; right: -2%;
  bottom: 0.04em;
  height: 0.14em;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
  border-radius: 3px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-meta {
  margin-top: 54px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--paper);
}
.hero-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero background video */
.hero .wrap { width: 100%; }
.hero-content { max-width: 1200px; }
.hero-content > * { max-width: 680px; }
.hero-has-video h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  text-transform: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7, 11, 19, 0.93) 8%, rgba(7, 11, 19, 0.72) 48%, rgba(7, 11, 19, 0.38)),
    linear-gradient(to top, rgba(7, 11, 19, 0.9), transparent 36%);
}
.hero-has-video .wrap { position: relative; z-index: 2; }
.hero-has-video::before { z-index: 2; }
.hero-float {
  position: absolute;
  z-index: 2;
  right: 4.5%;
  bottom: 13%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}
.hero-float .chip { position: static; }
@media (max-width: 1020px) {
  .hero-float { display: none; }
}

/* Hero artwork */
.hero-art { position: relative; }
.hero-art-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(2.5deg);
  border: 1px solid rgba(255, 159, 28, 0.35);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 0 10px rgba(255, 159, 28, 0.05),
    0 0 90px -18px rgba(255, 159, 28, 0.35);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.hero-art-frame:hover { transform: rotate(1deg) scale(1.015); }
.hero-art-frame img { width: 100%; height: auto; }

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(11, 17, 32, 0.86);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.8);
}
.chip-timer {
  top: 8%; left: -30px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  animation: float 5s ease-in-out infinite;
}
.chip-timer small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip-rooms {
  bottom: 7%; right: -18px;
  color: var(--paper);
  font-size: 0.95rem;
  animation: float 6s ease-in-out infinite 0.8s;
}
.chip-rooms .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

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

/* --------------------------------------------------------------------------
   Security-cam UI (hero)
   -------------------------------------------------------------------------- */
.cam-ui {
  position: absolute;
  inset: calc(var(--nav-h) + 18px) 22px 22px;
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(243, 239, 230, 0.75);
}
.cam-corner { position: absolute; width: 26px; height: 26px; border: 2px solid rgba(243, 239, 230, 0.35); }
.cam-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.cam-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.cam-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.cam-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.cam-rec {
  position: absolute;
  top: 14px; left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ff6b81;
}
.rec-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e43f5a;
  box-shadow: 0 0 10px rgba(228, 63, 90, 0.9);
  animation: rec-blink 1.4s steps(2, start) infinite;
}
@keyframes rec-blink { to { opacity: 0; } }
.cam-time { position: absolute; top: 14px; right: 20px; font-variant-numeric: tabular-nums; }
.cam-id { position: absolute; bottom: 14px; right: 20px; }
@media (max-width: 880px) {
  .cam-id { display: none; }
  .cam-ui { font-size: 0.68rem; }
}

/* Scroll countdown bar — depletes as you scroll the page */
.timebar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 12px rgba(255, 159, 28, 0.5);
  transform-origin: left;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Doors — expanding room panels
   -------------------------------------------------------------------------- */
.doors { padding: 110px 0 120px; }
.doors-track {
  display: flex;
  gap: 14px;
  height: min(72vh, 640px);
  min-height: 520px;
}
.door {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
  transition: flex 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.door.open {
  flex: 3.2;
  border-color: rgba(255, 159, 28, 0.5);
  box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.9), 0 0 70px -26px rgba(255, 159, 28, 0.4);
}
.door > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.85) brightness(0.75);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.door.open > img { filter: saturate(1.05) brightness(0.95); transform: scale(1.03); }
.door-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7, 11, 19, 0.95) 6%, rgba(7, 11, 19, 0.42) 46%, rgba(7, 11, 19, 0.12));
  transition: background 0.4s ease;
}
/* collapsed label: vertical number + name */
.door-side {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.door.open .door-side { opacity: 0; }
.door-side .door-no {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-bright);
}
.door-side .door-name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  letter-spacing: 0.04em;
  color: var(--paper);
  white-space: nowrap;
}
/* expanded content */
.door-reveal {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 32px 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease 0.18s, transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1) 0.18s;
  pointer-events: none;
  min-width: 340px;
}
.door.open .door-reveal { opacity: 1; transform: none; pointer-events: auto; }
.door-reveal h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 12px; white-space: nowrap; }
.door-no-inline { color: var(--gold-bright); }
.door-reveal .room-tags { margin-bottom: 14px; }
.door-reveal p {
  color: rgba(243, 239, 230, 0.85);
  font-size: 0.98rem;
  max-width: 48ch;
  margin-bottom: 18px;
}
.door-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

@media (max-width: 880px) {
  .doors-track { flex-direction: column; height: auto; min-height: 0; }
  .door { flex: none; height: 96px; transition: height 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease; }
  .door.open { flex: none; height: 480px; }
  .door-side { flex-direction: row; justify-content: flex-start; gap: 16px; padding: 0 22px; align-items: center; }
  .door-side .door-name { writing-mode: horizontal-tb; transform: none; }
  .door-reveal { min-width: 0; padding: 22px 20px; }
  .door-reveal h3 { white-space: normal; }
}

/* --------------------------------------------------------------------------
   Steps — how it works
   -------------------------------------------------------------------------- */
.steps {
  padding: 110px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.steps::after {
  content: "60:00";
  position: absolute;
  right: -1%;
  bottom: -6%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 159, 28, 0.12);
  pointer-events: none;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; position: relative; z-index: 1; }
.step-no {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.45rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 1rem; }
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; gap: 38px; }
}

/* --------------------------------------------------------------------------
   Rooms page — cinematic chapters
   -------------------------------------------------------------------------- */
.chapter {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 140px 0 90px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}
.chapter-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.chapter-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(7, 11, 19, 0.92) 12%, rgba(7, 11, 19, 0.55) 52%, rgba(7, 11, 19, 0.18)),
    linear-gradient(to top, rgba(7, 11, 19, 0.95) 4%, rgba(7, 11, 19, 0.25) 45%, rgba(7, 11, 19, 0.45));
}
.chapter-no {
  position: absolute;
  top: 6%;
  right: 3%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 159, 28, 0.35);
  z-index: 0;
  pointer-events: none;
}
.chapter-content { max-width: 1200px; }
.chapter-content > * { max-width: 620px; }
.chapter h2 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin: 14px 0 22px; }
.chapter .lede { color: var(--paper); font-size: 1.15rem; margin-bottom: 16px; }
.chapter .body-copy { color: rgba(243, 239, 230, 0.72); margin-bottom: 30px; }
@media (max-width: 880px) {
  .chapter { min-height: 0; padding: 110px 0 70px; }
  .chapter-no { font-size: 5.5rem; top: 4%; }
}

/* --------------------------------------------------------------------------
   Marquee divider
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--gold); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Rooms grid (home)
   -------------------------------------------------------------------------- */
.rooms { padding: 110px 0 60px; }
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.home-room-row { margin-bottom: 96px; }
.home-room-row:last-child { margin-bottom: 20px; }
.home-room-row .room-detail-media img { aspect-ratio: 16 / 10.5; }
@media (max-width: 1020px) {
  .home-room-row { margin-bottom: 72px; }
}
.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 159, 28, 0.45);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.9), 0 0 60px -24px rgba(255, 159, 28, 0.35);
}
.room-card-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1), filter 0.5s ease;
  filter: saturate(0.92) brightness(0.9);
}
.room-card:hover .room-card-img img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7, 11, 19, 0.96) 8%, rgba(7, 11, 19, 0.55) 44%, rgba(7, 11, 19, 0.08) 78%);
}
.room-card-body { padding: 30px 30px 28px; width: 100%; }
.room-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 19, 0.65);
  backdrop-filter: blur(6px);
  color: var(--paper);
}
.tag-difficulty { color: var(--gold-bright); border-color: rgba(255, 159, 28, 0.4); }
.tag-difficulty[data-level="Hard"] { color: #ff7a92; border-color: rgba(228, 63, 90, 0.5); }
.tag-difficulty[data-level="Easy"] { color: #6fe3d4; border-color: rgba(0, 192, 204, 0.45); }
.room-card h3 { font-size: 1.9rem; margin-bottom: 8px; }
.room-card p {
  color: rgba(243, 239, 230, 0.82);
  font-size: 0.98rem;
  max-width: 46ch;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.room-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 4px;
}
.room-link svg { transition: transform 0.25s ease; }
.room-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Why / features — editorial numbered list
   -------------------------------------------------------------------------- */
.why {
  padding: 110px 0;
  background:
    radial-gradient(800px 400px at 85% 15%, rgba(0, 88, 142, 0.22), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.why-item {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  position: relative;
}
.why-item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 56px; height: 2px;
  background: var(--gold);
}
.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.why-item h3 { font-size: 1.45rem; margin: 12px 0 12px; }
.why-item p { color: var(--muted); font-size: 1rem; }

/* --------------------------------------------------------------------------
   Testimonials marquee
   -------------------------------------------------------------------------- */
.testimonials { padding: 110px 0; overflow: hidden; }
.testimonials .section-head { margin-bottom: 44px; }
.quote-track-outer {
  margin: 0 -28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.quote-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 6px 0 14px;
  animation: marquee 46s linear infinite;
}
.quote-track:hover { animation-play-state: paused; }
.quote-card {
  width: 360px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  flex-shrink: 0;
}
.quote-card:nth-child(odd) { transform: rotate(-1.1deg); }
.quote-card:nth-child(even) { transform: rotate(0.9deg) translateY(6px); }
.quote-card::before {
  content: "“";
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 159, 28, 0.18);
}
.quote-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 14px; }
.quote-card p { font-size: 1.02rem; color: var(--paper); margin-bottom: 16px; }
.quote-card footer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple-light);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, #ffb545, var(--gold) 45%, #f08300);
  color: #221302;
  padding: 96px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, rgba(34, 19, 2, 0.05) 0 2px, transparent 2px 26px);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}
.cta-band .eyebrow { color: #221302; }
.cta-band .eyebrow::before { background: linear-gradient(90deg, transparent, #221302); }
.cta-band h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  max-width: 14ch;
  margin-top: 14px;
}
.cta-band p { max-width: 44ch; font-size: 1.1rem; margin-top: 16px; color: rgba(34, 19, 2, 0.82); }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-note { font-size: 0.88rem; color: rgba(34, 19, 2, 0.7); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #050810;
  border-top: 1px solid var(--line);
  padding: 76px 0 34px;
  color: var(--muted);
  font-size: 0.98rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo img { height: 52px; width: auto; margin-bottom: 18px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--gold-bright); }
.footer address { font-style: normal; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Rooms page
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 0 70px;
  background:
    radial-gradient(760px 420px at 80% 0%, rgba(170, 31, 232, 0.14), transparent 62%),
    radial-gradient(700px 420px at 8% 100%, rgba(255, 159, 28, 0.08), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin: 16px 0 18px; }
.page-hero p { color: var(--muted); max-width: 560px; font-size: 1.12rem; }

.room-index {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(7, 11, 19, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.room-index-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}
.room-index-inner::-webkit-scrollbar { display: none; }
.room-index a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 16px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.room-index a:hover { color: var(--paper); }
.room-index a.current { color: var(--gold-bright); border-bottom-color: var(--gold); }

.room-detail { padding: 110px 0; border-bottom: 1px solid var(--line); }
.room-detail:nth-child(even) { background: var(--ink-2); }
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.room-detail-grid.flip .room-detail-media { order: 2; }
.room-detail-media { position: relative; }
.room-detail-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.85);
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.room-detail-media:hover img { transform: scale(1.015); }
.room-detail-media .room-no {
  position: absolute;
  top: -34px; left: -14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 6.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 159, 28, 0.5);
  z-index: 2;
  pointer-events: none;
}
.room-detail h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 20px; }
.room-detail .lede { color: var(--paper); font-size: 1.12rem; margin-bottom: 16px; }
.room-detail .body-copy { color: var(--muted); margin-bottom: 30px; }

.room-facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.fact {
  border: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.03);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 108px;
}
.fact strong { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--paper); }
.fact span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.difficulty-pips { display: inline-flex; gap: 5px; align-items: center; }
.pip { width: 14px; height: 6px; border-radius: 3px; background: rgba(243, 239, 230, 0.15); }
.pip.on { background: var(--gold); box-shadow: 0 0 8px rgba(255, 159, 28, 0.6); }
.pip.over {
  background: #e43f5a;
  box-shadow: 0 0 10px rgba(228, 63, 90, 0.8);
  animation: pip-pulse 1.6s ease-in-out infinite;
}
@keyframes pip-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.room-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Page hero variants
   -------------------------------------------------------------------------- */
.page-hero-img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-img .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-img .page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(7, 11, 19, 0.94) 20%, rgba(7, 11, 19, 0.72) 55%, rgba(7, 11, 19, 0.45));
}

/* --------------------------------------------------------------------------
   Cards & panels
   -------------------------------------------------------------------------- */
.panel {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

/* Pricing tiers */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tier {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 159, 28, 0.4);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.9);
}
.tier.featured {
  border-color: rgba(255, 159, 28, 0.55);
  background: linear-gradient(180deg, rgba(255, 159, 28, 0.07), rgba(17, 26, 46, 1) 45%);
}
.tier-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #221302;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-size {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier h3 { font-size: 1.6rem; margin: 10px 0 6px; }
.tier-desc { color: var(--muted); font-size: 0.98rem; margin-bottom: 22px; flex-grow: 1; }
.tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--gold-bright);
  line-height: 1;
}
.tier-price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 6px;
}
.tier .btn { margin-top: 26px; }
.tier-list { list-style: none; display: grid; gap: 12px; margin: 22px 0 0; }
.tier-list li { display: flex; gap: 11px; color: var(--muted); font-size: 0.96rem; align-items: flex-start; }
.tier-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature grid (team building skills, thank-you perks) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(202, 108, 255, 0.4); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(170, 31, 232, 0.16);
  color: var(--purple-light);
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-cat { margin-bottom: 56px; }
.faq-cat > h2 {
  font-size: 1.7rem;
  color: var(--gold-bright);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 159, 28, 0.25);
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ink-2);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(255, 159, 28, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-body p + p { margin-top: 10px; }
.faq-body a { color: var(--purple-light); text-decoration: underline; text-underline-offset: 3px; }
.faq-body a:hover { color: var(--gold-bright); }
.diff-row { display: flex; align-items: center; gap: 12px; margin: 6px 0; flex-wrap: wrap; }
.diff-row strong { color: var(--paper); min-width: 150px; font-weight: 700; }
.diff-stars { color: var(--gold); letter-spacing: 2px; }
.diff-stars .off { color: rgba(243, 239, 230, 0.18); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-grid .form-field, .form-grid-3 .form-field { margin-bottom: 0; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--paper);
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(7, 11, 19, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(154, 167, 189, 0.55); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.18);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff9f1c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-field select option { background: var(--ink-2); }
.form-field input[type="date"], .form-field input[type="time"] { color-scheme: dark; }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 4px; }
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
}
.radio-row input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0 26px;
}
.form-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 14px; text-align: center; }
.honeypot { position: absolute; left: -9999px; top: 0; opacity: 0; height: 0; overflow: hidden; }
.form-alert {
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.98rem;
  display: none;
}
.form-alert.show { display: block; }
.form-alert-success { background: rgba(0, 192, 204, 0.12); border: 1px solid rgba(0, 192, 204, 0.45); color: #7fe7ee; }
.form-alert-error { background: rgba(228, 63, 90, 0.1); border: 1px solid rgba(228, 63, 90, 0.45); color: #ff9fae; }

/* --------------------------------------------------------------------------
   Booking / gift card / waiver embeds
   -------------------------------------------------------------------------- */
.embed-shell {
  background: #f7f5f0;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  max-width: 1000px;
  margin: 0 auto;
}
.embed-shell iframe { border-radius: 12px; }
.embed-note { text-align: center; color: var(--muted); margin-top: 26px; }
.embed-note a { color: var(--purple-light); text-decoration: underline; text-underline-offset: 3px; }
.embed-note a:hover { color: var(--gold-bright); }

/* Map */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.85);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.35) contrast(1.02); }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.stat-row { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-box {
  flex: 1;
  min-width: 120px;
  background: rgba(170, 31, 232, 0.09);
  border: 1px solid rgba(170, 31, 232, 0.25);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-bright);
}
.stat-box span { font-size: 0.85rem; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.team-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: #221302;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold));
  border: 3px solid rgba(255, 159, 28, 0.35);
  overflow: hidden;
}
.avatar.purple { background: linear-gradient(150deg, var(--purple-light), var(--purple)); color: #fff; border-color: rgba(202, 108, 255, 0.4); }
.avatar.cyan { background: linear-gradient(150deg, #6fe3d4, var(--cyan)); color: #04292c; border-color: rgba(0, 192, 204, 0.4); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.5rem; color: var(--gold-bright); margin-bottom: 4px; }
.team-role { color: var(--cyan); font-weight: 700; font-size: 0.92rem; margin-bottom: 14px; }
.team-quote { color: var(--paper); font-style: italic; font-size: 0.98rem; margin-bottom: 18px; }
.team-facts { text-align: left; display: grid; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.team-facts strong { color: var(--purple-light); font-weight: 700; }

.mascot-card {
  max-width: 640px;
  margin: 60px auto 0;
  background: linear-gradient(140deg, rgba(125, 12, 181, 0.35), rgba(0, 68, 108, 0.4)), var(--ink-3);
  border: 1px solid rgba(202, 108, 255, 0.35);
  border-radius: 26px;
  padding: 44px 38px;
  text-align: center;
}
.mascot-card .avatar { width: 132px; height: 132px; }
.mascot-card h3 { font-size: 1.9rem; color: var(--gold-bright); margin-bottom: 4px; }

/* --------------------------------------------------------------------------
   Prose (privacy policy)
   -------------------------------------------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; color: var(--gold-bright); margin: 44px 0 16px; }
.prose h3 { font-size: 1.15rem; color: var(--cyan); margin: 26px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { color: var(--muted); padding-left: 22px; display: grid; gap: 8px; margin-bottom: 14px; }
.prose a { color: var(--purple-light); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-bright); }
.prose .effective { text-align: center; font-style: italic; color: var(--muted); }

/* --------------------------------------------------------------------------
   Thank you / 404
   -------------------------------------------------------------------------- */
.confirm-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(0, 192, 204, 0.15);
  border: 1px solid rgba(0, 192, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--cyan);
}
.confirm-icon svg { width: 34px; height: 34px; }

.error-hero {
  min-height: clamp(480px, calc(100svh - 200px), 760px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.goat-404 {
  width: min(280px, 58vw);
  margin: 0 auto 12px;
  border-radius: 26px;
  transform: rotate(-2deg);
  border: 1px solid rgba(255, 159, 28, 0.35);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, 0.85), 0 0 60px -20px rgba(255, 159, 28, 0.3);
}
.error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 159, 28, 0.6);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .tier-grid, .feature-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero { min-height: auto; }
  .hero-art { max-width: 560px; }
  .chip-timer { left: -8px; }
  .chip-rooms { right: -6px; }
  .why-list { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; gap: 46px; }
  .room-detail-grid.flip .room-detail-media { order: 0; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { min-height: 420px; }
  .tier-grid, .feature-grid, .team-grid { grid-template-columns: 1fr; }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .form-panel { padding: 28px 22px; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero-meta { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-card { width: 300px; }
  .cta-actions { align-items: stretch; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .room-detail-media .room-no { font-size: 4.4rem; top: -24px; }
}
