/* ============================================================
   Space Ping Pong — design system ("space nightlife" theme)

   Tokens
   --bg / --surface / --surface-2   page + card backgrounds
   --ink / --muted                  text (17.8:1 / 7.5:1 on --bg)
   --accent                         brand red-orange, links + kickers (5.0:1 on --bg)
   --accent-strong                  button fill (white text = 5.1:1)
   --accent-deep                    button hover/active fill
   --cosmic                         logo-derived gradient (cyan→green→purple)
   --line                           hairline borders
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #0b0e14;
  --surface: #151a23;
  --surface-2: #1b2230;
  --ink: #f4f6fa;
  --muted: color-mix(in srgb, var(--ink) 64%, var(--bg));
  --line: color-mix(in srgb, var(--ink) 14%, transparent);
  --accent: #e84a37;
  --accent-strong: #c93a27;
  --accent-deep: #af2e1d;
  --accent-hot: #ff6a4d;
  --cosmic: linear-gradient(90deg, #36c3ff, #3ddc84, #a36bff);
  --white: #ffffff;

  --font-display: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-deep: 0 24px 70px rgba(0, 0, 0, 0.55);
  --header-height: 74px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--accent) 22%, transparent);
}

/* Static star-field speckle behind all content; section backgrounds cover it. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(244, 246, 250, 0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 68% 8%, rgba(244, 246, 250, 0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 42% 64%, rgba(163, 107, 255, 0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 86% 46%, rgba(54, 195, 255, 0.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 26% 88%, rgba(244, 246, 250, 0.4) 50%, transparent 51%);
  background-size: 460px 460px, 620px 620px, 540px 540px, 700px 700px, 380px 380px;
  opacity: 0.4;
}

::selection { background: color-mix(in srgb, var(--accent) 45%, var(--bg)); }

/* Original site's table-tennis cursors, restored (desktop pointers only) */
@media (pointer: fine) {
  body { cursor: url("assets/cursor-paddle.png") 2 2, auto; }
  a,
  button,
  summary,
  select,
  label,
  .button { cursor: url("assets/cursor-pointer.png") 2 2, pointer; }
}

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

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-hot) 72%, var(--ink));
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, env(safe-area-inset-left)) 12px max(20px, env(safe-area-inset-right));
  padding-left: clamp(20px, 4vw, 58px);
  padding-right: clamp(20px, 4vw, 58px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  max-width: min(210px, 44vw);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:not(.button-link) {
  padding-bottom: 3px;
  background-image: var(--cosmic);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: color 160ms ease, background-size 220ms ease;
}

.nav a:not(.button-link):hover {
  color: var(--ink);
  background-size: 100% 2px;
}

.nav .button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--accent-strong);
}

.nav .button-link:hover {
  color: var(--white);
  background: var(--accent-deep);
  transform: translateY(-1px);
}

/* Compact disclosure menu — only shown on small screens */
.nav-menu {
  position: relative;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.nav-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker { display: none; }

.nav-menu[open] summary {
  border-color: color-mix(in srgb, var(--ink) 38%, transparent);
}

.nav-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  display: grid;
  gap: 2px;
  min-width: 200px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
}

.nav-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-menu-panel a:hover {
  background: var(--surface-2);
  color: var(--accent-hot);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 8px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

/* Sits over the still background; scrim (::after) and content stack above it */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 20, 0.88), rgba(11, 14, 20, 0.42) 58%, rgba(11, 14, 20, 0.2)),
    linear-gradient(0deg, rgba(11, 14, 20, 0.92), rgba(11, 14, 20, 0.1) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(96px, 16vw, 168px) 0 clamp(54px, 9vw, 86px);
}

/* Staggered hero entrance, motion-safe */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 700ms cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  }
  .hero-content > *:nth-child(2) { animation-delay: 90ms; }
  .hero-content > *:nth-child(3) { animation-delay: 180ms; }
  .hero-content > *:nth-child(4) { animation-delay: 270ms; }
  .hero-content > *:nth-child(5) { animation-delay: 360ms; }
  @keyframes rise {
    to { opacity: 1; transform: none; }
  }
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 14px;
  border: 1px solid rgba(244, 246, 250, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(11, 14, 20, 0.45);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}

/* Neon paddles divider between hero and content */
.neon-divider {
  display: flex;
  justify-content: center;
  padding: clamp(22px, 4vw, 40px) 20px 0;
  background: var(--bg);
}

.neon-divider img {
  width: min(720px, 88vw);
  height: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .neon-divider img {
    animation: neon-pulse 3.6s ease-in-out infinite;
  }
  @keyframes neon-pulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(232, 74, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 26px rgba(232, 74, 55, 0.6)); }
  }
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  color: var(--accent-hot);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@supports (-webkit-background-clip: text) {
  .eyebrow,
  .section-kicker,
  .label {
    background: var(--cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 { text-wrap: balance; }

h1 {
  max-width: min(940px, 100%);
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.96;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.lead a {
  color: var(--accent-hot);
  text-decoration: none;
}

.lead a:hover { text-decoration: underline; }

.hero-copy {
  color: color-mix(in srgb, var(--ink) 86%, var(--bg));
  max-width: min(680px, 100%);
  font-size: clamp(18px, 2.4vw, 25px);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Buttons: primary (filled), secondary (ghost), quiet (text-weight) */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary { background: var(--accent-strong); color: var(--white); }
.button.primary:hover { background: var(--accent-deep); }

.button.secondary {
  border-color: color-mix(in srgb, var(--ink) 38%, transparent);
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 8%, transparent);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: color-mix(in srgb, var(--ink) 16%, transparent);
}

.button.quiet { color: var(--muted); }
.button.quiet:hover { color: var(--ink); }

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 4vw, 58px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* Scroll-reveal: .js-reveal is only added by JS when motion is allowed */
.js-reveal main .section .section-inner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-reveal main .section .section-inner.is-visible {
  opacity: 1;
  transform: none;
}

.intro-layout,
.feature-layout,
.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.reserve-layout { align-items: start; }

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  background: var(--surface-2);
  font-size: 13px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

/* Single column so an opened item never reflows its grid row */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  margin-top: 34px;
}

.info-card,
details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.info-card { padding: 24px; }
.info-card p { margin: 0; color: var(--muted); }

/* ---- Conversion paths ---- */
.conversion {
  padding-top: clamp(40px, 6vw, 76px);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.path-card {
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.path-card.featured {
  border-color: color-mix(in srgb, var(--accent-hot) 55%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, var(--surface)), var(--surface) 58%);
  box-shadow: var(--shadow-deep);
}

.path-label {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.path-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.path-card.featured .button {
  align-self: stretch;
}

/* ---- Recent visual showcase ---- */
.showcase {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 72%, var(--bg)), var(--bg));
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.showcase-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.showcase-card.large {
  grid-row: span 3;
}

.showcase-card img,
.showcase-card video {
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 620px;
  object-fit: cover;
}

.showcase-card.large img {
  flex: 1;
  min-height: 520px;
}

.showcase-card:not(.large) img,
.showcase-card:not(.large) video {
  aspect-ratio: 4 / 5;
}

.showcase-card figcaption {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.showcase-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 800;
}

.showcase-card span {
  color: var(--muted);
  font-size: 14px;
}

/* ---- Table rates ---- */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.rate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease, transform 160ms ease;
}

.rate-card:hover { transform: translateY(-3px); }

.rate-card.featured {
  border-color: color-mix(in srgb, var(--accent-hot) 55%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, var(--surface)), var(--surface) 60%);
  box-shadow: var(--shadow-deep);
}

.rate-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

.rate-when {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.rate-price {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.rate-price sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent-hot);
}

.rate-price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}

.rate-sub {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.rate-card .button {
  margin-top: auto;
  align-self: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.rate-card .button.primary {
  align-self: stretch;
  padding-left: 18px;
  padding-right: 18px;
}

.rates-table-art {
  display: block;
  width: 200px;
  height: auto;
  margin: 36px auto 0;
  opacity: 0.45;
}

/* ---- Private events band ---- */
.feature-band {
  position: relative;
  background: var(--surface);
  color: var(--ink);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: var(--cosmic) 1;
}

.feature-band .lead { color: var(--muted); }

.events-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.events-rocket {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .events-rocket {
    animation: rocket-float 4s ease-in-out infinite alternate;
  }
  @keyframes rocket-float {
    from { transform: translateY(0) rotate(-2deg); }
    to { transform: translateY(-12px) rotate(3deg); }
  }
}

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.event-types li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 0;
}

.stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: var(--accent-hot);
}

@supports (-webkit-background-clip: text) {
  .stat dd {
    background: var(--cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.stat dt {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.events-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.event-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.event-proof article {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.event-proof h3 {
  font-size: 18px;
}

.event-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---- Venue details ---- */
.feature-photo {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.detail strong {
  display: block;
  margin-bottom: 6px;
}

.detail span,
.detail a {
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
  line-height: 1.7;
}

.detail a:hover { color: var(--accent-hot); }

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  margin-top: auto;
  padding: 16px 20px 18px;
  border-top: 1px solid var(--line);
}

.gallery-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 800;
}

.gallery-card span {
  color: var(--muted);
  font-size: 14px;
}

/* ---- Trusted-by marquee ---- */
.trusted { overflow: hidden; }

.trusted-heading { font-size: clamp(24px, 3.4vw, 38px); }

.client-marquee {
  overflow: hidden;
  margin-top: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 2px 0;
}

@media (prefers-reduced-motion: no-preference) {
  .client-track {
    animation: marquee 55s linear infinite;
  }
  .client-track:hover { animation-play-state: paused; }
  @keyframes marquee {
    to { transform: translateX(calc(-50% - 6px)); }
  }
}

/* Reduced motion: static wrapped wall, duplicate list hidden */
@media (prefers-reduced-motion: reduce) {
  .client-track { width: auto; flex-wrap: wrap; }
  .client-track ul[aria-hidden] { display: none; }
  .client-row { flex-wrap: wrap; }
}

.client-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Logo-wall chips: each name in its brand color on a surface pill */
.client-row li {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--brand, var(--muted));
  font-family: var(--font-display);
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: border-color 160ms ease, transform 160ms ease;
}

.client-row li:hover {
  border-color: color-mix(in srgb, var(--brand, var(--ink)) 55%, transparent);
  transform: translateY(-1px);
}

.client-row b {
  color: var(--c);
  font-weight: inherit;
}

.legal-note {
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--ink) 42%, var(--bg));
  font-size: 12px;
}

/* ---- Menus ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 16px;
  margin-top: 34px;
}

/* Top-of-menu preview; full menu opens on click */
.menu-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: var(--white);
}

.menu-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.menu-card:hover {
  border-color: color-mix(in srgb, var(--accent-hot) 60%, transparent);
  transform: translateY(-2px);
}

.menu-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.menu-cta {
  margin-top: auto;
  color: var(--accent-hot);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Reservations + booking panel ---- */
.reserve {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
}

.policy-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cosmic);
}

.policy-list strong { color: var(--ink); }

.policy-list a {
  color: var(--accent-hot);
  text-decoration: none;
}

.policy-list a:hover { text-decoration: underline; }

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-options a {
  display: block;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-options a:hover {
  border-color: color-mix(in srgb, var(--accent-hot) 60%, transparent);
  transform: translateY(-1px);
}

.contact-options strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  color: var(--ink);
}

.contact-options span {
  color: var(--muted);
  font-size: 14px;
}

.booking-panel {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
}

.booking-panel h3 { margin-bottom: 18px; }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-panel label {
  display: grid;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; /* prevents iOS zoom-on-focus */
}

.stepper {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
}

.stepper button {
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.stepper button:first-child { border-radius: calc(var(--radius) - 2px) 0 0 calc(var(--radius) - 2px); }
.stepper button:last-child { border-radius: 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0; }
.stepper button:hover { background: color-mix(in srgb, var(--ink) 14%, var(--surface-2)); }

.stepper input {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking-hint {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--accent-hot);
  font-size: 14px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.booking-actions .button { flex: 1 1 auto; }

.booking-fine {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-fine a {
  color: var(--accent-hot);
  text-decoration: none;
}

/* ---- FAQ ---- */
details { padding: 20px; }

summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

details p a { color: var(--accent-hot); text-decoration: none; }
details p a:hover { text-decoration: underline; }

/* ---- Mobile CTA bar ---- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 40;
  display: none;
  width: 100vw;
  max-width: 100vw;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
}

.mobile-cta a:first-child { flex: 1.6; background: var(--accent-strong); color: var(--white); }
.mobile-cta a:last-child { border: 1px solid var(--line); background: var(--surface); }

/* ---- Footer ---- */
footer {
  padding: 34px clamp(20px, 4vw, 58px) calc(34px + env(safe-area-inset-bottom));
  border-top: 1px solid transparent;
  border-image: var(--cosmic) 1;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--accent-hot); }

.socials {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.socials a:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 38%, transparent);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { gap: 8px; font-size: 13px; }

  /* Top-level links collapse into the disclosure menu */
  .nav > a:not(.button-link) { display: none; }
  .nav-menu { display: inline-flex; }

  .hero { min-height: 690px; }

  .intro-layout,
  .feature-layout,
  .reserve-layout,
  .showcase-layout,
  .info-grid,
  .path-grid,
  .event-proof,
  .details,
  .contact-options,
  .gallery,
  .menu-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.large { grid-row: auto; }
  .showcase-card.large img { min-height: 320px; aspect-ratio: 4 / 5; }

  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }

  .events-rocket { width: 56px; height: 56px; }

  .mobile-cta { display: flex; }

  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

@media (max-width: 540px) {
  .brand img { max-width: min(150px, 42vw); }
  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }
  h1 {
    max-width: min(320px, calc(100vw - 48px));
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.06;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  h2 { font-size: clamp(27px, 8vw, 34px); }
  .hero-copy {
    max-width: min(320px, calc(100vw - 48px));
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .rate-card .button { width: auto; }
  .section { padding-left: 24px; padding-right: 24px; }
  .info-card, details { padding: 20px; }
  .menu-card img { height: 170px; }
  .booking-panel { padding: 20px; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

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

  .hero::before { transform: none; }
  .hero-video { display: none; }
}
