/* ============================================================
   PADEL72 — Nachtspiel v2
   Dark athletic world: court-black ground, line-white type,
   brand orange #FF6000 as accent. White closing zone (Palomino-
   style footer). Host Grotesk Variable, self-hosted (DSGVO).
   ============================================================ */

@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/host-grotesk-var-2.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/host-grotesk-var-1.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #0b0b0c;
  --bg-2: #121214;
  --bg-3: #1a1a1d;
  --white: #f5f4f2;
  --muted: #aca9a3;
  --line: rgba(245, 244, 242, 0.16);
  --line-soft: rgba(245, 244, 242, 0.08);
  --orange: #ff6000;
  --orange-hot: #ff7a26;
  --on-orange: #170b03;
  --ball: #d9f04c;

  /* light zone (footer / closing) */
  --paper: #f5f4f2;
  --ink: #121214;
  --ink-muted: #6e6b66;
  --line-dark: rgba(18, 18, 20, 0.14);

  --font: "Host Grotesk", "Helvetica Neue", Arial, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  --container: 82rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --frame: 12px;               /* floating header side/top margin */
  --header-h: 3.9rem;
  --topstack: calc(var(--frame) + var(--header-h) + 12px);

  --r-bar: 14px;
  --r-media: 4px;
  --r-btn: 10px;
  --bar-gap: 10px; /* inset of the header CTA inside the bar (top/right/bottom) */
  --r-btn-nested: calc(var(--r-bar) - var(--bar-gap)); /* nested corner radius rule */

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ---------- Reset / base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  caret-color: var(--orange);
}

::selection {
  background: var(--orange);
  color: var(--on-orange);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2c2c30;
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-2);
  z-index: 200;
  background: var(--orange);
  color: var(--on-orange);
  padding: 0.6rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus {
  top: var(--space-2);
}

/* ---------- Custom cursor + trail ---------- */

.cursor-trail {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 299;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-trail {
    display: none;
  }
}

/* ---------- Custom cursor ---------- */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
    opacity 0.3s;
  opacity: 0;
}

html.has-cursor .cursor {
  opacity: 1;
}

html.has-cursor,
html.has-cursor a,
html.has-cursor button,
html.has-cursor summary {
  cursor: none;
}

.cursor.is-link {
  width: 44px;
  height: 44px;
}

.cursor.is-down {
  width: 10px;
  height: 10px;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor {
    display: none;
  }
  html.has-cursor,
  html.has-cursor a,
  html.has-cursor button,
  html.has-cursor summary {
    cursor: auto;
  }
}

/* ---------- Type ---------- */

h1,
h2,
h3,
.display {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7.4vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  max-width: 62ch;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
}

.label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.num {
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout helpers ---------- */

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 9vw, 8.5rem);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  transform-origin: left center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    background-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.btn .btn-arrow {
  width: 1em;
  height: 1em;
  flex: none;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--orange);
  color: var(--on-orange);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange-hot);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
  border-radius: inherit;
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(245, 244, 242, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: #2a2a2e;
}

/* ---------- Floating header bar ---------- */

.header {
  position: fixed;
  top: var(--frame);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), 100% - 2 * var(--gutter));
  z-index: 120; /* above mobile menu (110) + scrim (105): burger-X stays visible */
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-left: clamp(1rem, 2.5vw, 1.6rem);
  padding-right: var(--bar-gap);
  background: rgba(11, 11, 12, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-bar);
  transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

/* open menu: only the X stays visible, the bar itself disappears */
body.menu-open .header-inner {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-color: transparent;
}

.header-logo {
  transition: opacity 0.25s var(--ease-out);
}

body.menu-open .header-logo,
body.menu-open .header-nav {
  opacity: 0;
  pointer-events: none;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 18px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a:not(.btn) {
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.25s var(--ease-out);
}

.header-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right center; /* exit: collapses toward the right = vanishes left-to-right */
  transition: transform 0.3s var(--ease-out);
}

.header-nav a:not(.btn):hover::after,
.header-nav a[aria-current="page"]::after {
  transform-origin: left center; /* enter: grows from the left */
}

.header-nav a:not(.btn):hover,
.header-nav a[aria-current="page"] {
  color: var(--white);
}

.header-nav a:not(.btn):hover::after,
.header-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-nav .btn {
  height: calc(var(--header-h) - 2 * var(--bar-gap));
  padding: 0 1.25rem;
  font-size: 0.8rem;
  border-radius: var(--r-btn-nested);
}

/* ---------- Burger ---------- */

.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 120;
}

.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.burger span:nth-child(1) {
  top: 17px;
}
.burger span:nth-child(2) {
  top: 25px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Mobile menu: slides in from the right ---------- */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  z-index: 110;
  background: var(--bg-2);
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 3rem);
  padding-top: calc(var(--topstack) + 0.5rem);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.6s var(--ease-expo), visibility 0s 0.6s;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.6s var(--ease-expo);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-block: auto;
}

.mobile-menu nav a {
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 0.85rem;
  overflow: hidden;
  transition: color 0.25s;
}

/* masked text reveal */
.mobile-menu nav a .mask {
  display: block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-expo);
}

.mobile-menu.open nav a:nth-child(1) .mask { transition-delay: 0.12s; }
.mobile-menu.open nav a:nth-child(2) .mask { transition-delay: 0.18s; }
.mobile-menu.open nav a:nth-child(3) .mask { transition-delay: 0.24s; }
.mobile-menu.open nav a:nth-child(4) .mask { transition-delay: 0.3s; }

.mobile-menu.open nav a .mask {
  transform: translateY(0);
}

.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current="page"] {
  color: var(--orange);
}

.mobile-menu .btn {
  margin-top: 0;
  margin-bottom: max(env(safe-area-inset-bottom), 0.25rem);
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s var(--ease-expo) 0.36s, opacity 0.6s var(--ease-expo) 0.36s;
}

.mobile-menu.open .btn {
  transform: none;
  opacity: 1;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0s 0.4s;
}

.menu-scrim.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s;
}

body.menu-locked {
  overflow: hidden;
}

/* ---------- Intro overlay ---------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
}

.intro-logo {
  width: min(52vw, 380px);
  overflow: hidden;
}

.intro-logo img {
  width: 100%;
  transform: translateY(110%);
}

html.no-intro .intro {
  display: none;
}

/* ---------- Hero (Palomino staircase) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
}

main {
  position: relative;
  z-index: 20;
  background: var(--bg);
  transform-origin: center center;
}

/* Palomino grammar: the hero pins, following sections slide over it */
@media (min-width: 47.5625rem) {
  .hero:not(.page-hero) {
    position: sticky;
    top: 0;
  }
}

main > *:not(.hero) {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

/* hero slideshow: slides stack, JS wipes between them */
.hero-slider img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.hero-slider img:not(:first-child) {
  visibility: hidden;
}

html.js .hero-slider img:not(:first-child) {
  visibility: visible;
  clip-path: inset(0 0 0 100%);
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero-slider img:not(:first-child) {
    visibility: hidden;
    clip-path: none;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(11, 11, 12, 0.94) 0%,
    rgba(11, 11, 12, 0.55) 34%,
    rgba(11, 11, 12, 0.35) 60%,
    rgba(11, 11, 12, 0.55) 100%
  );
}

.hero-inner {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.hero-stair {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: var(--topstack);
  width: 100%;
  font-size: clamp(2.375rem, min(12vw, 26svh), 17.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  will-change: transform;
}

.hero-stair .line {
  display: block;
  overflow: hidden;
  will-change: transform;
}

.hero-stair .line > span {
  display: inline-block;
  will-change: transform;
}

.hero-stair .line:nth-child(1) {
  text-align: left;
}

.hero-stair .line:nth-child(2) {
  text-align: center;
}

.hero-stair .line:nth-child(3) {
  text-align: right;
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-top: var(--space-4);
}

.hero-foot .lead {
  color: rgba(245, 244, 242, 0.88);
  max-width: 40ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* word-reveal masks */

.words .word {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.words .word > span {
  display: inline-block;
  will-change: transform;
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: min(62svh, 42rem);
}

.page-hero .hero-media img {
  object-position: center 40%;
}

.page-hero .hero-content {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 5rem);
  margin-bottom: var(--space-2);
}

.page-hero .lead {
  color: rgba(245, 244, 242, 0.85);
  max-width: 48ch;
}

/* ---------- Facts band ---------- */

.facts {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--line-soft);
}

.fact:first-child {
  border-left: 0;
}

.fact .fact-value {
  display: block;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

.fact .fact-value em {
  font-style: normal;
  color: var(--orange);
}

.fact .fact-name {
  display: block;
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 1rem;
}

.fact .fact-note {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Split section ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: calc(var(--topstack) + 1.5rem);
  align-self: start;
}

.split-copy h2 {
  margin-bottom: var(--space-3);
  max-width: 16ch;
}

.split-copy .lead {
  margin-bottom: var(--space-3);
}

.split-copy ul {
  list-style: none;
  margin-block: var(--space-4);
}

.split-copy ul li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding-block: 1rem;
  border-top: 1px solid var(--line-soft);
  color: var(--white);
  font-weight: 500;
}

.split-copy ul li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.split-copy ul li svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--orange);
  transform: translateY(2px);
}

.split-media {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.split-media figure {
  overflow: hidden;
  border-radius: var(--r-media);
}

.split-media figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media figure:nth-of-type(2) {
  width: 76%;
  align-self: flex-end;
}

.split-media figure:nth-of-type(2) img {
  aspect-ratio: 3 / 4;
}

.split-media img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease-out);
}

.split-media figure:hover img {
  transform: scale(1.03);
}

.split-media figcaption {
  padding-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Steps ---------- */

.steps {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.steps-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.steps-head p {
  color: var(--muted);
  max-width: 42ch;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
}

.step h3 {
  margin-bottom: 0.7rem;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.steps-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.store-badges {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.store-badges img {
  height: 42px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.25s;
}

.store-badges a:hover img {
  opacity: 1;
}

/* ---------- App panel ---------- */

.app-panel {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.app-panel .phone {
  justify-self: center;
  width: min(320px, 70%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@media (max-width: 63.75rem) {
  .app-panel {
    grid-template-columns: 1fr;
  }
}

/* ---------- Booking embed (two-click consent) ---------- */

.booking-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.booking-head p {
  color: var(--muted);
  max-width: 44ch;
}

.booking-shell {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-bar);
  background: var(--bg-2);
  overflow: hidden;
  min-height: 32rem;
  display: grid;
}

.booking-shell iframe {
  width: 100%;
  height: 46rem;
  border: 0;
  display: block;
  background: var(--bg-2);
}

.booking-consent {
  display: grid;
  place-content: center;
  text-align: center;
  gap: var(--space-3);
  padding: clamp(2rem, 6vw, 4rem);
}

.booking-consent h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.booking-consent p {
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 0.95rem;
}

.booking-consent .btn {
  justify-self: center;
}

.booking-note {
  margin-top: var(--space-2);
  font-size: 0.82rem;
  color: var(--muted);
}

.booking-note a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

/* ---------- Marquee gallery ---------- */

.gallery {
  overflow: clip;
  position: relative;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.marquee {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee + .marquee {
  margin-top: clamp(0.8rem, 1.5vw, 1.25rem);
}

.m-half {
  display: flex;
  flex: none;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  padding-right: clamp(0.8rem, 1.5vw, 1.25rem);
}

.marquee .marquee-item {
  flex: none;
  display: block;
  width: clamp(240px, 26vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-media);
}

.marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.marquee .marquee-item:hover img {
  transform: scale(1.05);
}

.logo-marquee {
  display: flex;
  overflow: clip;
  padding-block: clamp(3rem, 7vw, 5.5rem) 0;
  pointer-events: none;
  user-select: none;
}

.logo-track {
  display: flex;
  flex: none;
  align-items: center;
  animation: logo-scroll 36s linear infinite;
}

.logo-track img {
  height: clamp(56px, 9vw, 120px);
  width: auto;
  margin-right: clamp(3rem, 8vw, 8rem);
}

@keyframes logo-scroll {
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(11, 11, 12, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86svh;
  width: auto;
  height: auto;
  border-radius: var(--r-media);
}

.lightbox-close {
  position: absolute;
  top: var(--frame);
  right: var(--frame);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(245, 244, 242, 0.08);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-btn);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox-close:hover {
  background: rgba(245, 244, 242, 0.16);
}

.lightbox-close svg {
  width: 16px;
  height: 16px;
}

/* ---------- Location ---------- */

.location {
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.location-media {
  overflow: hidden;
  border-radius: var(--r-media);
  aspect-ratio: 4 / 3;
}

.location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-shell {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
}

.map-consent {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}

.map-consent p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 40ch;
}

.map-consent a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(0.92) contrast(0.88) hue-rotate(180deg);
}

.info-list {
  list-style: none;
  margin-block: var(--space-4);
}

.info-list li {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: var(--space-2);
  padding-block: 1.1rem;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}

.info-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.info-list .label {
  color: var(--muted);
}

.info-list a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.info-list a:hover {
  color: var(--orange);
}

/* ---------- FAQ accordions ---------- */

.faq-group {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq-group h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: var(--space-3);
  color: var(--orange);
}

.faq-item {
  border-top: 1px solid var(--line-soft);
}

.faq-group .faq-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 1.3rem;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item summary .faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--orange);
}

.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transition: transform 0.3s var(--ease-out);
}

.faq-item summary .faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item summary .faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] summary .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item .faq-body {
  overflow: hidden;
}

.faq-item .faq-body > div {
  padding-bottom: 1.4rem;
  color: var(--muted);
  max-width: 68ch;
}

.faq-item .faq-body a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.faq-item .faq-body a:hover {
  color: var(--orange);
}

.faq-cta {
  text-align: center;
  padding-top: clamp(3rem, 6vw, 5rem);
}

.faq-cta h2 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  margin-bottom: var(--space-3);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-bar);
  background: var(--bg-2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-card + .contact-card {
  margin-top: var(--space-3);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.contact-card .big-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  transition: color 0.2s;
  word-break: break-word;
}

.contact-card .big-link:hover {
  color: var(--orange);
}

.contact-media {
  position: sticky;
  top: calc(var(--topstack) + 1.5rem);
  overflow: hidden;
  border-radius: var(--r-media);
}

.contact-media img {
  width: 100%;
  height: auto;
}

/* ---------- Legal pages ---------- */

.legal {
  padding-top: calc(var(--topstack) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: var(--space-4);
}

.legal h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.legal p,
.legal ul {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: var(--space-2);
}

.legal ul {
  padding-left: 1.2rem;
}

.legal a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--orange);
}

.legal .placeholder {
  color: var(--orange);
  font-weight: 600;
}

/* ---------- Closing CTA (dark, last block of main) ---------- */

.cta-close {
  text-align: center;
  padding-block: clamp(5rem, 11vw, 9rem);
}

.cta-close h2 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  max-width: 17ch;
  margin-inline: auto;
  margin-bottom: var(--space-3);
}

.cta-close p {
  margin-inline: auto;
  margin-bottom: var(--space-4);
  font-weight: 400;
  max-width: 44ch;
  color: var(--muted);
}

/* ---------- Footer (white sheet revealed beneath main, Palomino) ---------- */

.footer {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--paper);
}

@media (min-width: 64rem) {
  /* the reveal ends with the black sheet resting 100px above the footer logo:
     the sheet scrolls exactly the footer's flow height, which is its content
     plus this fixed headroom */
  .footer {
    position: sticky;
    bottom: 0;
    padding-top: 100px;
  }

  .footer > .container {
    width: min(var(--container), 100% - 2 * var(--gutter));
    padding-bottom: var(--space-3);
  }

  .footer .footer-grid {
    margin-bottom: var(--space-5);
  }
}

.footer-mark-logo {
  height: 30px;
  width: auto;
  align-self: flex-start;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.footer h3 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer ul a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 1rem;
  position: relative;
  width: fit-content;
  transition: color 0.25s;
}

.footer ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease-out);
}

.footer ul a:hover {
  color: var(--ink);
}

.footer ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.footer address {
  font-style: normal;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.footer address a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer address a:hover {
  color: var(--ink);
}

.footer-hours {
  color: var(--ink-muted);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  color: var(--ink-muted);
  font-size: 0.82rem;
  padding-bottom: var(--space-2);
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: var(--frame);
  z-index: 150;
  width: min(560px, calc(100vw - 2 * var(--frame)));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  background: rgba(11, 11, 12, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-bar);
  padding: 1rem 1.25rem;
  transform: translate(-50%, 20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out),
    visibility 0s 0.5s;
}

.cookie-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.cookie-banner .cookie-text {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: none;
}

.cookie-banner .cookie-text strong {
  color: var(--white);
  font-weight: 600;
}

.cookie-banner p a {
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex: none;
  justify-content: center;
}

.cookie-actions .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  border-radius: var(--r-btn-nested);
}

/* ---------- Reveal defaults (JS enhances) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

html.js [data-clip] {
  clip-path: inset(12% 0 12% 0);
}

html.js [data-line] {
  transform: scaleX(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  html.js [data-clip] {
    clip-path: none;
  }
  html.js [data-line] {
    transform: none;
  }
  .btn,
  .split-media img {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 63.75rem) {
  .split,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .contact-media {
    position: static;
  }

  .split-media figure:nth-of-type(2) {
    width: 100%;
    align-self: stretch;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .fact:nth-child(-n + 2) {
    border-top: 0;
  }

  .fact:nth-child(even) {
    border-left: 1px solid var(--line-soft);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 47.5rem) {
  .header-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  h1 {
    font-size: clamp(2.1rem, 8.6vw, 2.5rem);
  }

  .hero-stair {
    font-size: clamp(2.375rem, 12vw, 5rem);
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact {
    padding-inline: 0;
    padding-right: 1rem;
  }

  .fact:nth-child(even) {
    padding-left: 1.1rem;
    padding-right: 0;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .split-copy .btn,
  .steps-cta .btn,
  .booking-consent .btn,
  .gallery-head .btn,
  .faq-cta .btn,
  .cta-close .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .marquee figure {
    width: min(68vw, 300px);
  }

  .booking-shell iframe {
    height: 40rem;
  }
}
