:root {
  color-scheme: dark;
  --bg: #0a0b14;
  --bg-2: #0e1022;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --ink: #f5f6fb;
  --muted: rgba(245, 246, 251, 0.64);
  --faint: rgba(245, 246, 251, 0.58);
  --accent: #ff2e4d;
  --accent-2: #ff5c73;
  --accent-deep: #c0182f;
  --spark: #6ea8ff;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --glow: 0 12px 36px rgba(255, 46, 77, 0.42);
  --header-height: 74px;
  --radius: 14px;
  --radius-sm: 10px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

/* Brand pool cursors (original site): 8-ball at rest, cue on interactive
   elements. Fine-pointer devices only so touch/trackpad UX is untouched. */
@media (hover: hover) and (pointer: fine) {
  body { cursor: url("assets/cursor-8ball.png") 4 4, auto; }
  a, button, summary, label, .gallery-item, .icon-link,
  details, input, [role="button"] {
    cursor: url("assets/cursor-cue.png") 2 2, pointer;
  }
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 720px at 80% -8%, rgba(255, 46, 77, 0.16), transparent 60%),
    radial-gradient(1000px 820px at 6% 10%, rgba(110, 168, 255, 0.12), transparent 56%),
    radial-gradient(900px 900px at 50% 118%, rgba(255, 46, 77, 0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--accent) 26%, transparent);
}

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

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

a { color: inherit; }

p, .lead, .hero-copy { text-wrap: pretty; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.gallery-item:focus-visible,
.icon-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 80%, var(--white));
  outline-offset: 4px;
  border-radius: 4px;
}

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

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

/* ---------- Header ---------- */
.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 clamp(20px, 4vw, 58px);
  background: rgba(10, 11, 20, 0.72); /* fallback */
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: min-height 200ms ease, padding 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.site-header.scrolled {
  min-height: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  background: rgba(8, 9, 16, 0.82);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
}

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

.brand img {
  width: auto;
  max-width: min(230px, 52vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 160ms ease;
}

.brand:hover img { opacity: 0.82; }

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu { position: relative; }
.nav-menu summary { list-style: none; }
.nav-menu summary::-webkit-details-marker { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}

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

.nav-links a:hover { color: var(--ink); }

.nav-burger {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.nav-burger-icon {
  position: relative;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-burger-icon::before,
.nav-burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-burger-icon::before { top: -5px; }
.nav-burger-icon::after { top: 5px; }

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.icon-link:hover {
  color: var(--accent-2);
  background: var(--surface);
  transform: translateY(-1px);
}

.nav .button-link {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 55%, var(--accent-deep));
  box-shadow: 0 10px 26px rgba(255, 46, 77, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav .button-link > span,
.nav .button-link > .cta-arrow { position: relative; z-index: 1; }

.nav .button-link .cta-arrow { transition: transform 200ms ease; }

.nav .button-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.42) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.nav .button-link:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 46, 77, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav .button-link:hover .cta-arrow { transform: translateX(3px); }
.nav .button-link:hover::after { transform: translateX(130%); }

@media (prefers-reduced-motion: no-preference) {
  /* drop-shadow (not box-shadow) so the pulse halo is independent of the
     hover shadow and isn't clipped by overflow:hidden */
  .nav .button-link { animation: cta-glow 2.8s ease-in-out infinite; }
  .nav .button-link:hover { animation-play-state: paused; }
  @keyframes cta-glow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 46, 77, 0)); }
    50% { filter: drop-shadow(0 5px 16px rgba(255, 46, 77, 0.6)); }
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 8px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #05060d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
  filter: saturate(1.05) contrast(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(255, 46, 77, 0.28), transparent 55%),
    linear-gradient(90deg, rgba(5, 6, 13, 0.94), rgba(5, 6, 13, 0.46) 56%, rgba(5, 6, 13, 0.2)),
    linear-gradient(0deg, rgba(5, 6, 13, 0.95), rgba(5, 6, 13, 0.10) 66%);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 28%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 72% 18%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 42% 58%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 86% 48%, rgba(110, 168, 255, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 62% 76%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 30% 82%, rgba(255, 46, 77, 0.55), transparent),
    radial-gradient(1px 1px at 8% 64%, rgba(255, 255, 255, 0.45), transparent);
  opacity: 0.55;
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.35; }
  to { opacity: 0.72; }
}

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

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  animation: bob 1.8s ease-in-out infinite;
}
.hero-scroll::before {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  margin-top: -4px;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-2);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
  border-color: color-mix(in srgb, var(--accent) 60%, var(--white));
  background: color-mix(in srgb, var(--accent) 26%, transparent);
}

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

h1, h2 {
  font-family: var(--display);
  font-feature-settings: "ss01", "ss02";
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h2 { text-wrap: balance; }

h1 {
  max-width: min(960px, 100%);
  margin-bottom: 22px;
  font-size: clamp(48px, 8.4vw, 108px);
  line-height: 0.94;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

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

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.14;
}

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

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  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: 32px;
}

/* ---------- Hero entrance ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions {
    animation: rise-in 720ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
  }
  .hero h1 { animation-delay: 120ms; }
  .hero-copy { animation-delay: 240ms; }
  .hero-actions { animation-delay: 380ms; }
  @keyframes rise-in {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- Stats band ---------- */
.stats {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px) clamp(20px, 4vw, 58px);
}

.stat {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
}

.stat strong {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--ink) 30%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Marquee ---------- */
.marquee-section { padding-bottom: clamp(46px, 6vw, 84px); }

.marquee {
  margin-top: var(--space-5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee::-webkit-scrollbar { display: none; }

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px;
}

.marquee-on { overflow: hidden; }
.marquee-on .marquee-track { animation: marquee-scroll 55s linear infinite; }
.marquee-on:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

.marquee-card {
  margin: 0;
  width: clamp(180px, 22vw, 240px);
  flex-shrink: 0;
}

.marquee-card.menu-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(180px, 22vw, 240px);
  padding: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(234, 43, 67, 0.2)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 300ms ease, border-color 300ms ease, background-color 300ms ease;
}

.marquee-card.menu-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 44%, var(--line));
  background: rgba(0, 0, 0, 0.24);
}

.marquee-card.menu-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background-color: var(--surface-2);
}

.menu-card-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.24);
}

.marquee-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 300ms ease, border-color 300ms ease;
}

.marquee-card:hover img {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.marquee-card figcaption {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.marquee-card.menu-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: var(--text);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.1;
  text-align: left;
}

/* ---------- Client wall ---------- */
.clients {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-5);
}

.client-chip {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.client-chip:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.client-chip img {
  width: 100%;
  max-height: 30px;
  object-fit: contain;
  /* Normalize mixed-brand logos to uniform white so every one reads on dark */
  filter: brightness(0) invert(1);
  opacity: 0.66;
  transition: opacity 200ms ease;
}

.client-chip:hover img { opacity: 1; }

/* ---------- Buttons ---------- */
.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--white);
  box-shadow: var(--glow);
}
.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.38) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 46, 77, 0.6);
}
.button.primary:hover::after { transform: translateX(130%); }
.button.primary:active { background: var(--accent-deep); }

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

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

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

.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;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-4);
}

.highlight-row span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

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

.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card,
.detail-panel,
.faq-grid details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.info-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--spark));
  opacity: 0;
  transition: opacity 200ms ease;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 46, 77, 0.18);
}
.info-card:hover::before { opacity: 1; }
.info-card p { margin: 0; color: var(--muted); }

/* ---------- Feature band ---------- */
.feature-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 46, 77, 0.16));
  pointer-events: none;
}

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

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

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

.detail strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-weight: 600;
}

.detail span,
.detail a {
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.detail a { color: var(--accent-2); }
.detail a:hover { color: var(--accent); }

/* ---------- Menu downloads ---------- */
.menu-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  margin-top: var(--space-5);
}

.menu-download {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.menu-download span {
  min-width: 0;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
}

.menu-download small {
  flex: 0 0 auto;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-download:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--surface-2);
}

/* ---------- Gallery ---------- */
/* Column widths follow the posters' intrinsic ratios so both render
   uncropped at equal height; the lightbox shows the full image larger. */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1.276fr;
  gap: 16px;
  margin-top: var(--space-5);
  align-items: start;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.gallery-item--lead { aspect-ratio: 981 / 1920; }
.gallery-item:not(.gallery-item--lead) { aspect-ratio: 1252 / 1920; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 6, 13, 0.55));
  opacity: 0;
  transition: opacity 250ms ease;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.gallery-item:hover::after { opacity: 1; }

.gallery-zoom {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(5, 6, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 250ms ease, transform 250ms ease;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Lightbox (CSS :target) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.lightbox:target {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 11, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(1000px, 100%);
  max-height: 100%;
  transform: scale(0.97);
  transition: transform 220ms ease;
}
.lightbox:target .lightbox-inner { transform: scale(1); }
.lightbox-inner img {
  width: auto;
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  box-shadow: var(--glow);
}
.lightbox-close:hover { background: var(--accent-deep); }

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(255, 46, 77, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reserve > .section-inner { position: relative; z-index: 1; }

.reserve-mark {
  position: absolute;
  z-index: 0;
  right: clamp(-90px, -6vw, -40px);
  top: 50%;
  width: clamp(280px, 38vw, 520px);
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  animation: mark-spin 60s linear infinite;
}

@keyframes mark-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.detail-panel {
  padding: 28px;
}

.detail-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-panel dt {
  color: var(--faint);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.detail-panel a { text-decoration: none; }
.detail-panel a:hover { color: var(--accent-2); }

/* ---------- FAQ ---------- */
.faq-grid details {
  padding: 22px;
  transition: border-color 200ms ease;
}
.faq-grid details[open] {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

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

.faq-grid summary { list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary {
  position: relative;
  padding-right: 28px;
}
.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--accent-2);
  font-size: 22px;
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-grid details[open] summary::after { transform: rotate(45deg); }

details p {
  margin: 14px 0 0;
  color: var(--muted);
}
.faq-grid details a { color: var(--accent-2); text-decoration: none; }
.faq-grid details a:hover { color: var(--accent); }

/* ---------- Mobile CTA ---------- */
.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: rgba(10, 11, 20, 0.8); /* fallback */
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.mobile-cta a:first-child {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--white);
  box-shadow: var(--glow);
}
.mobile-cta a:last-child { border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); }

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding-bottom: var(--space-5);
}

.footer-brand { display: grid; gap: 8px; align-content: start; }
.footer-mark { width: 108px; height: auto; margin-bottom: 6px; }
.footer-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.footer-tag { color: var(--muted); }

.footer-col { display: grid; gap: 8px; align-content: start; }
.footer-head {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2px;
}

.footer-brand .icon-link {
  width: auto;
  height: auto;
  gap: 8px;
  padding: 8px 14px;
  margin-top: 4px;
  justify-self: start;
  font-weight: 700;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  color: var(--faint);
}

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

/* ---------- Desktop nav (force-show grouped links) ---------- */
@media (min-width: 901px) {
  .nav-burger { display: none; }
  .nav-menu > .nav-links { display: flex !important; }
  .nav-menu {
    padding-right: clamp(16px, 2.2vw, 28px);
    border-right: 1px solid var(--line);
  }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 900px) {
  .site-header { gap: 12px; }
  .brand { flex-shrink: 1; }
  .brand img { max-width: min(170px, 38vw); }
  .nav { flex-shrink: 0; gap: 10px; }
  .nav .icon-link { display: none; }
  .nav .button-link { min-height: 42px; padding: 10px 15px; }

  .nav-burger { display: inline-flex; }

  .nav-menu > .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 4px;
    min-width: 200px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 11, 20, 0.92); /* fallback */
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .nav-menu > .nav-links a {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
  }
  .nav-menu > .nav-links a:hover { background: var(--surface); }

  .hero { min-height: 700px; }

  .intro-layout,
  .feature-layout,
  .reserve-layout,
  .info-grid,
  .faq-grid,
  .details,
  .menu-downloads,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 22px; }
  .client-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .mobile-cta { display: flex; }

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

@media (max-width: 540px) {
  /* Brand shrinks fluidly under flex pressure; nav stays intact */
  .brand img { width: 100%; max-width: 148px; }
  .nav-burger { padding: 10px 11px; }
  .nav-burger-label { display: none; }
  .nav .button-link { padding: 10px 13px; font-size: 13px; }
  .cta-arrow { display: none; }
  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }
  h1 {
    max-width: min(360px, calc(100vw - 48px));
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.02;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  h2 { font-size: clamp(27px, 8vw, 34px); }
  .hero-copy {
    max-width: min(340px, calc(100vw - 48px));
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .section { padding-left: 24px; padding-right: 24px; }
  .info-card, .detail-panel, .faq-grid details { padding: 22px; }
  .footer-base { flex-direction: column; }
  .lightbox-close { top: 6px; right: 6px; }
  .client-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marquee-card { width: 168px; }
}

/* ---------- Motion: scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section-inner > h2,
    .info-card,
    .feature-photo,
    .gallery-item,
    .detail-panel,
    .faq-grid details,
    .stat,
    .client-chip {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 38%;
    }
    @keyframes reveal-up {
      from { opacity: 0; transform: translateY(26px); }
      to { opacity: 1; transform: none; }
    }

    /* Subtle parallax drift on the feature photo while it crosses the viewport */
    .feature-photo img {
      animation: photo-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes photo-drift {
      from { transform: translateY(-3.5%) scale(1.1); }
      to { transform: translateY(3.5%) scale(1.1); }
    }
  }
}

/* JS-driven IntersectionObserver fallback (Safari/Firefox) */
html.no-vt .reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
html.no-vt .reveal-init.in {
  opacity: 1;
  transform: none;
}
html.no-vt .info-grid .info-card.reveal-init:nth-child(2) { transition-delay: 90ms; }
html.no-vt .info-grid .info-card.reveal-init:nth-child(3) { transition-delay: 180ms; }
html.no-vt .gallery .gallery-item.reveal-init:nth-child(2) { transition-delay: 110ms; }

@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; }
  .hero-stars { animation: none; opacity: 0.5; }
  .hero-scroll { animation: none; }
  .reserve-mark { animation: none; }
}
