:root {
  --navy: #172b4d;
  --navy-deep: #0f1d33;
  --ice: #dcecf4;
  --sky: #b8d7e6;
  --sand: #efe7da;
  --bg: #f8f6f1;
  --white: #ffffff;
  --coral: #e97962;
  --coral-soft: #f2a18f;
  --text: #18202a;
  --muted: #65707c;
  --border: #d9e0e5;
  --shadow: 0 18px 44px rgba(15, 29, 51, 0.09);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --container: 1240px;
  --space-xs: clamp(0.5rem, 0.8vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.2vw, 1.1rem);
  --space-md: clamp(1.2rem, 2vw, 1.8rem);
  --space-lg: clamp(2rem, 4vw, 3.5rem);
  --space-xl: clamp(3.5rem, 7vw, 6.5rem);
  --space-2xl: clamp(5rem, 10vw, 9rem);
}
[hidden] {
  display: none !important;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 0.7em;
  color: var(--navy-deep);
}
h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
p {
  margin: 0 0 1.2em;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section {
  padding: var(--space-xl) 0;
}
.section-blue {
  background: var(--ice);
}
.eyebrow {
  font:
    700 0.76rem/1.2 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin: 0 0 1rem;
}
.eyebrow.light {
  color: var(--coral-soft);
}
.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  max-width: 640px;
  color: var(--muted);
}
.microcopy {
  font-size: 0.88rem;
  color: var(--muted);
}
.microcopy.light {
  color: #bac7d4;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}
.text-link {
  font-weight: 700;
  color: var(--navy);
}
.text-link i {
  margin-left: 0.35rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 246, 241, 0.82);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
}
.site-header.scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: 0 8px 26px rgba(15, 29, 51, 0.06);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.25s ease;
}
.site-header.scrolled .header-inner {
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font:
    700 0.95rem "Plus Jakarta Sans",
    sans-serif;
  color: var(--navy-deep);
  white-space: nowrap;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
}
.brand-light {
  color: #fff;
}
.brand-light .brand-mark {
  background: var(--coral);
}
.desktop-nav {
  margin: auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.desktop-nav a,
.header-actions .text-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}
.desktop-nav a.active {
  color: var(--coral);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.age-chip {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-weight: 800;
  color: var(--navy);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.35rem;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 51, 0.42);
  z-index: 1190;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(88vw, 390px);
  height: 100dvh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.28s ease;
  padding: calc(20px + env(safe-area-inset-top)) 22px
    calc(20px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-close,
.dialog-close {
  border: 0;
  background: var(--ice);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}
.drawer-nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font:
    700 1.1rem "Plus Jakarta Sans",
    sans-serif;
}
.drawer-cta {
  margin-top: auto;
}
.drawer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}
.hero {
  position: relative;
  min-height: calc(100dvh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.1rem;
}
.hero-media {
  position: relative;
}
.hero-media > img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-shape {
  position: absolute;
  right: -7vw;
  top: 9%;
  width: 46vw;
  height: 72%;
  background: var(--sky);
  border-radius: 38% 0 0 38%;
  opacity: 0.52;
}
.hero-stats {
  position: absolute;
  left: -8%;
  bottom: 6%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 350px;
}
.hero-stats div {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
}
.hero-stats div + div {
  border-left: 1px solid var(--border);
}
.hero-stats strong {
  font: 800 1.4rem "Plus Jakarta Sans";
  color: var(--navy);
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--muted);
}
.split-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.media-card img {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
}
.content-block p {
  max-width: 700px;
  color: var(--muted);
}
.feature-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.feature-list div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}
.feature-list i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head > p {
  max-width: 520px;
  color: var(--muted);
}
.map-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 1.25rem;
  align-items: stretch;
}
.venue-map {
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(23, 43, 77, 0.15);
  background: #cddde6;
}
.venue-list {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.3rem;
  display: grid;
  gap: 1rem;
}
.venue-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(23, 43, 77, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.venue-card h3 {
  padding-right: 3rem;
}
.city-index {
  position: absolute;
  right: 1.1rem;
  top: 1rem;
  font: 800 1.4rem "Plus Jakarta Sans";
  color: var(--sky);
}
.venue-card p {
  font-size: 0.92rem;
  color: var(--muted);
}
.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.hours span {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: var(--muted);
}
.hours strong {
  color: var(--text);
  font-size: 0.78rem;
}
.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.venues {
  background: #fff;
}
.venue-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin: 0 0 var(--space-xl);
}
.venue-feature.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
.venue-image img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
}
.venue-copy span,
.overlap-card span {
  color: var(--coral);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.venue-copy p,
.overlap-card p {
  color: var(--muted);
}
.venue-panorama {
  position: relative;
  margin-top: 1rem;
}
.venue-panorama .venue-image img {
  aspect-ratio: 16/9;
}
.overlap-card {
  position: absolute;
  right: 5%;
  bottom: -11%;
  width: min(480px, 46%);
  background: var(--sand);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.gaming-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.gaming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.gaming-grid div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(23, 43, 77, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}
.gaming-grid i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}
.wide-media img {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.promo-feature {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
}
.promo-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.promo-feature:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(15, 29, 51, 0.85));
}
.promo-feature > div {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 1.7rem;
  color: #fff;
}
.promo-feature h3 {
  color: #fff;
  font-size: 2.3rem;
}
.promo-feature span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.promo-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-card p {
  color: var(--muted);
}
.tag {
  align-self: flex-start;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.image-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.image-card img {
  height: 100%;
  min-height: 280px;
}
.image-card div {
  position: absolute;
  inset: auto 1rem 1rem;
  background: rgba(255, 255, 255, 0.93);
  padding: 1rem;
  border-radius: var(--radius-sm);
}
.image-card div p {
  font-size: 0.88rem;
  margin: 0;
}
.club {
  background: var(--navy-deep);
  color: #fff;
}
.club h2,
.club h3 {
  color: #fff;
}
.club-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.club-copy > p {
  color: #c7d2dc;
}
.club-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 0.9rem;
}
.club-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.8rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.club-steps li > span {
  font: 800 1.2rem "Plus Jakarta Sans";
  color: var(--coral-soft);
}
.club-steps strong {
  font-family: "Plus Jakarta Sans";
}
.club-steps p {
  margin: 0.25rem 0 0;
  color: #c7d2dc;
  font-size: 0.9rem;
}
.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.benefit-pills span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  color: #dce5ec;
}
.club-image img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.experience-image img {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
}
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.amenities div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--border);
  padding: 0.85rem 0;
  font-weight: 700;
}
.amenities i {
  color: var(--coral);
  width: 24px;
}
.responsible {
  background: var(--sand);
}
.responsible-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.check-list {
  padding-left: 1.2rem;
}
.check-list li {
  margin: 0.35rem 0;
}
.responsible-media {
  position: relative;
}
.responsible-media img {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
}
.age-large {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: 800 0.95rem "Plus Jakarta Sans";
  letter-spacing: 0.08em;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item h3 {
  margin: 0;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.2rem 0;
  font-weight: 700;
  color: var(--navy);
  min-height: 58px;
}
.faq-panel {
  padding: 0 2.4rem 1.2rem 0;
  color: var(--muted);
}
.contact {
  background: var(--navy-deep);
  color: #fff;
}
.contact h2 {
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-copy a {
  font-weight: 700;
}
.contact-form {
  background: #fff;
  color: var(--text);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fff;
  color: var(--text);
  font-size: 16px;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.checkbox-label {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}
.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
}
.form-status {
  font-size: 0.86rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}
.site-footer {
  background: var(--navy-deep);
  color: #c7d2dc;
  padding: 3rem 0 1.2rem;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 2rem;
  padding: 3rem 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0.4rem 0;
}
.footer-grid a,
.link-button {
  color: #c7d2dc;
  font-size: 0.9rem;
}
.link-button {
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.7fr;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}
.age-overlay,
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 29, 51, 0.52);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 12px;
}
.age-modal,
.cookie-settings {
  width: min(calc(100% - 24px), 520px);
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2.3rem);
  box-shadow: var(--shadow);
}
.age-modal {
  text-align: center;
}
.age-badge {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font: 800 2rem "Plus Jakarta Sans";
}
.age-actions,
.dialog-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.age-actions .btn {
  flex: 1;
}
.cookie-banner {
  position: fixed;
  z-index: 1800;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-height: 70vh;
  overflow-y: auto;
}
.cookie-copy {
  max-width: 760px;
}
.cookie-copy p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0.25rem 0;
}
.cookie-copy a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
}
.cookie-actions .btn {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.setting-row div {
  display: flex;
  flex-direction: column;
}
.setting-row span {
  font-size: 0.8rem;
  color: var(--muted);
}
.setting-row input {
  width: 22px;
  height: 22px;
}
.always-on {
  font-weight: 700;
  color: var(--navy) !important;
}
.legal-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  background: linear-gradient(135deg, var(--ice), var(--bg));
}
.legal-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.legal-hero p {
  max-width: 760px;
  color: var(--muted);
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.legal-toc nav {
  display: grid;
  margin-top: 0.65rem;
}
.legal-toc a {
  padding: 0.55rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.legal-article {
  max-width: 820px;
}
.legal-section {
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}
.support-block {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.support-block h2 {
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions > .text-link,
  .header-actions > .btn-small {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .header-inner {
    height: 72px;
  }
  .site-header.scrolled .header-inner {
    height: 64px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .map-layout {
    grid-template-columns: 1fr;
  }
  .venue-list {
    max-height: none;
    grid-template-columns: repeat(2, 1fr);
  }
  .venue-map {
    height: 440px;
  }
  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promo-feature {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 420px;
  }
  .club-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
  }
  .legal-toc nav {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    padding-bottom: 0.4rem;
  }
  .legal-toc a {
    white-space: nowrap;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
  }
}
@media (max-width: 820px) {
  .section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
  .hero-grid,
  .split-editorial,
  .venue-feature,
  .venue-feature.reverse,
  .gaming-layout,
  .club-grid,
  .experience-grid,
  .responsible-grid,
  .faq-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    order: 1;
  }
  .hero-media {
    order: 2;
    max-width: 640px;
  }
  .hero-shape {
    right: -30%;
    width: 95vw;
    height: 40%;
    top: auto;
    bottom: 5%;
  }
  .hero-stats {
    position: static;
    min-width: 0;
    margin-top: 0.8rem;
  }
  .section-head {
    align-items: start;
  }
  .venue-list {
    grid-template-columns: 1fr;
  }
  .venue-feature.reverse .venue-copy {
    order: 2;
  }
  .venue-feature.reverse .venue-image {
    order: 1;
  }
  .venue-panorama .overlap-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-feature {
    min-height: 380px;
  }
  .amenities {
    grid-template-columns: repeat(4, 1fr);
  }
  .amenities div {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.78rem;
  }
  .experience-image {
    order: 1;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(100% - 24px, var(--container));
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero-media > img,
  .media-card img,
  .venue-image img,
  .wide-media img,
  .club-image img,
  .experience-image img,
  .responsible-media img {
    aspect-ratio: 4/3;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats div {
    padding: 0.75rem;
  }
  .hero-stats strong {
    font-size: 1.1rem;
  }
  .hero-stats span {
    font-size: 0.68rem;
  }
  .section-head {
    display: block;
  }
  .map-layout {
    display: block;
  }
  .venue-map {
    height: 340px;
    margin-bottom: 1rem;
  }
  .hours {
    grid-template-columns: 1fr;
  }
  .card-actions {
    flex-direction: column;
  }
  .promo-feature {
    min-height: 340px;
  }
  .promo-feature > div {
    left: 1.2rem;
    right: 1.2rem;
  }
  .gaming-grid {
    grid-template-columns: 1fr;
  }
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-hero {
    padding-top: 4rem;
  }
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .dialog-actions {
    flex-direction: column;
  }
  .dialog-actions .btn {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }
  .age-actions {
    flex-direction: column;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-card {
    min-height: 230px;
  }
  .mobile-drawer {
    width: 88vw;
  }
  .age-modal,
  .cookie-settings {
    width: calc(100% - 24px);
  }
}
@media (max-width: 360px) {
  .amenities {
    grid-template-columns: 1fr;
  }
  .hero-stats span {
    font-size: 0.62rem;
  }
  .header-inner {
    gap: 0.5rem;
  }
  .brand span:last-child {
    font-size: 0.83rem;
  }
}
@media (min-width: 1440px) {
  :root {
    --container: 1320px;
  }
}
@media (min-width: 1600px) {
  :root {
    --container: 1380px;
  }
}
@media (min-width: 1920px) {
  :root {
    --container: 1460px;
  }
  .hero-grid {
    gap: 7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

#locations {
  scroll-margin-top: 86px;
}
.map-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
}
.venue-map {
  height: auto;
  min-height: 610px;
  align-self: stretch;
  background: #dcecf4;
}
.venue-list {
  max-height: none;
  overflow: visible;
  padding-right: 0;
  align-content: stretch;
}
.venue-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
}
.venue-card .eyebrow {
  margin-bottom: 0.55rem;
}
.venue-card h3 {
  margin-bottom: 0.5rem;
}
.venue-card p {
  margin-bottom: 0.55rem;
}
.venue-card p i {
  width: 18px;
  color: var(--coral);
}
.venue-card .card-actions {
  margin-top: auto;
}
.maplibregl-map {
  font-family: Inter, system-ui, sans-serif;
}
.maplibregl-ctrl-group {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 29, 51, 0.15);
}
.maplibregl-popup-content {
  border-radius: 14px;
  padding: 13px 15px;
  box-shadow: 0 12px 34px rgba(15, 29, 51, 0.18);
  color: var(--text);
}
.maplibregl-popup-content strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--navy-deep);
}
.luma-map-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 8px;
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 29, 51, 0.25);
  transform: rotate(-45deg);
  cursor: pointer;
}
.luma-map-pin:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  left: 10px;
  top: 10px;
}
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(15, 29, 51, 0.58);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 12px;
}
.success-modal {
  position: relative;
  width: min(calc(100% - 24px), 520px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--navy);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.success-modal h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
}
.success-modal p:not(.eyebrow) {
  color: var(--muted);
}
.success-modal .btn {
  min-width: 150px;
}
.contact-copy i {
  width: 22px;
  color: var(--coral-soft);
}
.contact-form a {
  text-decoration: underline;
}
.venue-panorama {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
@media (max-width: 1100px) {
  .map-layout {
    grid-template-columns: 1fr;
  }
  .venue-map {
    height: 460px;
    min-height: 460px;
  }
  .venue-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .venue-card {
    min-height: 100%;
  }
  .hours {
    grid-template-columns: 1fr;
  }
  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .venue-list {
    grid-template-columns: 1fr;
  }
  .venue-card {
    min-height: 0;
  }
  .hours {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-actions {
    flex-direction: row;
    align-items: center;
  }
  .venue-panorama {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 1rem;
  }
  .hero-grid {
    gap: 1.8rem;
  }
  .hero-actions {
    gap: 0.65rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 0;
  }
  .hero-stats div {
    min-width: 0;
  }
  .map-layout {
    display: grid;
  }
  .venue-map {
    height: 360px;
    min-height: 360px;
    margin-bottom: 0;
  }
  .hours {
    grid-template-columns: 1fr;
  }
  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form {
    padding: 1.1rem;
  }
  .contact-form .btn {
    width: 100%;
  }
  .success-modal {
    padding: 1.4rem 1rem;
  }
  .footer-cta .btn {
    width: 100%;
  }
  .venue-card {
    padding: 1.15rem;
  }
  .city-index {
    font-size: 1.15rem;
  }
}
@media (max-width: 390px) {
  .venue-map {
    height: 320px;
    min-height: 320px;
  }
  .hero-stats strong {
    font-size: 1rem;
  }
  .hero-stats span {
    font-size: 0.62rem;
  }
  .success-modal {
    width: calc(100% - 16px);
  }
}

.venue-card[data-place-index] {
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.venue-card[data-place-index]:hover {
  border-color: rgba(233, 121, 98, 0.58);
  box-shadow: 0 12px 28px rgba(15, 29, 51, 0.09);
}
.venue-card[data-place-index].is-map-active {
  border-color: var(--coral);
  box-shadow: 0 14px 34px rgba(15, 29, 51, 0.14);
  transform: translateY(-2px);
}
.venue-card[data-place-index]:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
