:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-alt: #0b0b0d;
  --surface: #111114;
  --surface-bright: #18181c;
  --red: #e10600;
  --red-active: #ff1e16;
  --red-dark: #7a0805;
  --text: #f5f5f5;
  --muted: #b6b6bc;
  --border: rgba(255, 255, 255, .12);
  --border-strong: rgba(255, 255, 255, .24);
  --line: var(--border);
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: "Arial Black", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --motion-fast: 280ms;
  --motion-medium: 520ms;
  --motion-slow: 820ms;
}

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

html {
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(225, 6, 0, .09), transparent 24rem),
    var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--body);
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5.2vw, 5.4rem);
  text-transform: uppercase;
}

p {
  max-width: 68ch;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--red-active);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transition: transform .25s var(--ease);
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .025) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, .02) 0 1px, transparent 1.5px);
  background-size: 17px 19px, 23px 29px;
}

.site-progress {
  display: none;
}

@supports (animation-timeline: scroll()) {
  .site-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 70;
    display: block;
    height: 2px;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--red-active);
    animation: prime-page-progress linear both;
    animation-timeline: scroll(root block);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(18px) saturate(120%);
  transition:
    background .35s var(--ease),
    min-height .35s var(--ease);
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(5, 5, 5, .94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .9;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand span {
  display: grid;
}

.brand small {
  color: var(--red-active);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
  padding: 0 30px;
}

.main-nav a,
.site-footer a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .3s var(--ease);
}

.main-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red-active);
  transition: transform .45s var(--ease);
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.main-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  border: 1px solid var(--border);
}

.language-switch button {
  min-width: 36px;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}

.button,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease);
}

.button {
  padding: 0 22px;
}

.button b,
.text-action b {
  font-size: 1.2em;
  font-weight: 400;
  transition: transform .35s var(--ease);
}

.button:hover b,
.text-action:hover b {
  transform: translate(4px, -4px);
}

.button:active,
.text-action:active {
  transform: translateY(1px) scale(.99);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-active);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

.hero-media,
.hero-scrim,
.prime-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: hero-settle 1.6s var(--ease) both;
}

.prime-webgl {
  z-index: 1;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-slow) var(--ease-out);
}

.prime-webgl[data-state="ready"] {
  opacity: .94;
}

.prime-webgl[data-state="fallback"],
.prime-webgl[data-state="static"] {
  display: none;
}

.media-disclosure {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 18px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, .86);
  color: var(--muted);
  font: 700 10px/1.3 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero .media-disclosure {
  top: 92px;
  bottom: auto;
}

.city-hero .media-disclosure {
  top: 18px;
  bottom: auto;
}

.hero-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .84) 35%, rgba(5, 5, 5, .25) 68%, rgba(5, 5, 5, .38) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .88), transparent 45%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  width: min(100%, var(--container));
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(120px, 18vh, 190px) var(--gutter) clamp(38px, 7vh, 76px);
}

.hero-copy {
  align-self: center;
  max-width: 890px;
}

.kicker {
  margin-bottom: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  line-height: .94;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: var(--text);
}

.hero-lead {
  max-width: 42ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-action {
  margin-top: 34px;
}

.hero-status {
  display: grid;
  align-self: end;
  justify-items: end;
  font-family: var(--display);
  line-height: .9;
}

.hero-status span {
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.hero-status strong {
  color: var(--red-active);
  font-family: var(--mono);
  font-size: clamp(.7rem, 1.4vw, 1rem);
  letter-spacing: .3em;
}

.section {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(92px, 12vw, 180px) var(--gutter);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr;
  gap: clamp(36px, 8vw, 128px);
  align-items: start;
}

.section-grid > *,
.map-heading > *,
.gallery-copy > *,
.gallery-stage > *,
.setup > *,
.commercial > *,
.editorial-content > * {
  min-width: 0;
}

.section-marker {
  width: 100%;
  padding-top: 16px;
  border-top: 4px solid var(--red);
  color: var(--red-active);
  font-family: var(--mono);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -.08em;
}

.intro-copy h2 {
  max-width: 12ch;
}

.intro-copy p,
.section-heading p,
.clubs-head p,
.setup-copy > p,
.commercial p,
.closing p {
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.section-heading {
  display: grid;
  gap: 26px;
  max-width: 920px;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.section-heading p {
  margin-top: 0;
}

.zones {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  background: var(--bg-alt);
}

.zone-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 490px;
  border: 1px solid var(--border);
}

.zone-card {
  position: relative;
  display: flex;
  container-type: inline-size;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 48px);
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(225, 6, 0, var(--zone-red, .06)), transparent 42%),
    var(--surface);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    flex .7s var(--ease),
    background .45s var(--ease),
    transform var(--motion-medium) var(--ease-out);
}

.motion-enhanced .zone-card[data-tilt="true"] {
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateZ(0);
  transform-style: preserve-3d;
}

.motion-enhanced .zone-card[data-tilt="true"].is-tilting {
  z-index: 2;
  will-change: transform;
  transition-duration: 90ms;
}

.motion-enhanced .zone-card[data-tilt="true"].is-tilting > * {
  transform: translateZ(22px);
}

.motion-enhanced .zone-card[data-tilt="true"] > * {
  transition: transform var(--motion-medium) var(--ease-out);
}

.zone-card:last-child {
  border-right: 0;
}

.zone-card:hover,
.zone-card.is-active {
  --zone-red: .2;
  background:
    linear-gradient(160deg, rgba(225, 6, 0, .2), transparent 48%),
    var(--surface-bright);
}

.zone-card::after {
  position: absolute;
  right: -40%;
  bottom: -42%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 6, 0, .28);
  content: "";
  transform: rotate(45deg);
  transition: transform .8s var(--ease);
}

.zone-card:hover::after,
.zone-card.is-active::after {
  transform: translate(-18%, -18%) rotate(45deg);
}

.zone-card small {
  color: var(--red-active);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.zone-card h3 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-block: .06em;
  font-size: clamp(2.35rem, 3.75vw, 4.25rem);
  font-size: clamp(2rem, 11cqi, 4.25rem);
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}

.zone-card:nth-child(3) h3 {
  font-size: clamp(1.95rem, 2.85vw, 3.35rem);
  font-size: clamp(1.9rem, 8.5cqi, 3.35rem);
}

.zone-card p {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.clubs-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(54px, 8vw, 110px);
}

.club-list {
  border-top: 1px solid var(--border-strong);
}

.club-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(260px, .55fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 132px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition:
    padding .45s var(--ease),
    background .45s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-enhanced .club-row[data-motion="club"] {
    opacity: 0;
    transform: translate3d(-28px, 0, 0);
    transition:
      opacity 680ms var(--ease-out) calc(var(--motion-order, 0) * 42ms),
      transform 760ms var(--ease-out) calc(var(--motion-order, 0) * 42ms),
      padding .45s var(--ease),
      background .45s var(--ease);
  }

  .motion-enhanced .club-row[data-motion="club"].is-motion-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.club-row:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--surface);
}

.club-row > span {
  color: var(--red-active);
  font: 700 12px var(--mono);
  letter-spacing: .12em;
}

.club-row h3 {
  font-size: clamp(1.5rem, 3vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.club-row p {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.club-row p strong {
  color: var(--text);
  font: 800 13px/1.3 var(--mono);
  text-transform: uppercase;
}

.club-row a {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 22px;
  transition:
    transform .35s var(--ease),
    background .35s var(--ease);
}

.club-row:hover a {
  transform: rotate(-45deg);
  background: var(--red);
}

.clubs-map-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin-top: 22px;
  padding: 12px 0;
  border-bottom: 2px solid var(--red);
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.clubs-map-link b {
  color: var(--red-active);
  font-size: 1.2rem;
  transition: transform .35s var(--ease);
}

.clubs-map-link:hover b {
  transform: translateY(5px);
}

.club-row.is-nearest {
  padding-right: 20px;
  padding-left: 20px;
  background:
    linear-gradient(90deg, rgba(225, 6, 0, .2), transparent 58%),
    var(--surface);
}

.club-map-section {
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  background:
    linear-gradient(135deg, rgba(225, 6, 0, .09), transparent 32rem),
    var(--bg-alt);
}

.map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.map-heading h2 {
  max-width: 12ch;
}

.map-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.club-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr);
  min-height: 720px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.club-map-frame,
.club-map {
  position: relative;
  min-width: 0;
  min-height: 720px;
}

.club-map-frame {
  overflow: hidden;
  border-right: 1px solid var(--border-strong);
  background: #090909;
}

.club-map {
  z-index: 0;
  height: 100%;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(225, 6, 0, .14), transparent 20rem),
    #090909;
}

.club-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 40px;
  color: var(--muted);
  text-align: center;
}

.club-map-fallback span {
  color: var(--red-active);
  font: 800 clamp(2.4rem, 7vw, 6.5rem)/.9 var(--display);
  letter-spacing: -.04em;
}

.club-map-fallback p {
  max-width: 36ch;
}

.nearest-panel {
  max-height: 720px;
  padding: clamp(26px, 3vw, 46px);
  overflow-y: auto;
  scrollbar-color: var(--red) var(--surface);
}

.nearest-state {
  min-height: 168px;
}

.nearest-eyebrow {
  margin-bottom: 20px;
  color: var(--red-active);
  font: 800 11px/1.2 var(--mono);
  letter-spacing: .12em;
}

.nearest-state h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: .92;
  text-transform: uppercase;
}

.nearest-state > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nearest-button {
  width: 100%;
  margin-top: 28px;
}

.nearest-button:disabled {
  cursor: wait;
  opacity: .68;
}

.nearest-results {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  list-style: none;
  background: var(--border);
}

.nearest-results[hidden] {
  display: none;
}

.nearest-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 18px;
  background: var(--bg-alt);
}

.nearest-result:first-child {
  background:
    linear-gradient(110deg, rgba(225, 6, 0, .22), transparent 70%),
    var(--bg-alt);
}

.nearest-result strong {
  font-size: 14px;
  line-height: 1.25;
}

.nearest-result span {
  color: var(--red-active);
  font: 800 12px/1.3 var(--mono);
}

.nearest-result a {
  grid-column: 1 / -1;
  width: max-content;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.nearest-distance-note {
  margin-top: 18px;
  color: #d1d1d6;
  font-size: 12px;
}

.map-club-index {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.map-club-index h3 {
  margin-bottom: 18px;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-club-index ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-club-index li {
  border-top: 1px solid var(--border);
}

.map-club-index a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  color: var(--muted);
  font-size: 12px;
}

.map-club-index a:hover,
.map-club-index a:focus-visible {
  color: var(--text);
}

.map-club-index a > span:first-child {
  color: var(--red-active);
  font: 800 10px var(--mono);
}

.map-club-index a > b {
  color: var(--text);
  font-size: 14px;
}

.club-map .leaflet-tile-pane {
  filter: grayscale(1) invert(.9) hue-rotate(180deg) brightness(.62) contrast(1.25);
}

.club-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .34);
}

.club-map .leaflet-control-zoom a {
  border-color: rgba(255, 255, 255, .16);
  background: #0b0b0d;
  color: #fff;
}

.club-map .leaflet-control-zoom a:hover,
.club-map .leaflet-control-zoom a:focus {
  background: var(--red);
  color: #fff;
}

.club-map .leaflet-control-attribution {
  background: rgba(5, 5, 5, .88);
  color: #d8d8dc;
  font-size: 10px;
}

.club-map .leaflet-control-attribution a {
  color: #fff;
  text-decoration: underline;
}

.prime-map-icon {
  background: transparent;
  border: 0;
}

.prime-map-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: rotate(45deg);
  border: 2px solid #fff;
  border-radius: 3px 3px 3px 13px;
  background: var(--red);
  box-shadow: 8px 10px 24px rgba(0, 0, 0, .42);
  color: #fff;
  font: 900 11px/1 var(--mono);
  transition:
    transform .35s var(--ease),
    background .35s var(--ease);
}

.prime-map-marker span {
  transform: rotate(-45deg);
}

.prime-map-marker.is-nearest {
  transform: rotate(45deg) scale(1.28);
  background: #fff;
  color: var(--red);
  box-shadow: 8px 14px 34px rgba(225, 6, 0, .45);
}

.club-map .leaflet-popup-content-wrapper,
.club-map .leaflet-popup-tip {
  border-radius: 2px;
  background: #0b0b0d;
  color: var(--text);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .52);
}

.club-map .leaflet-popup-content {
  min-width: min(240px, 62vw);
  margin: 20px;
}

.map-popup {
  display: grid;
  gap: 9px;
}

.map-popup strong {
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.map-popup p {
  color: #d1d1d6;
  font-size: 12px;
  line-height: 1.45;
}

.map-popup span {
  color: var(--red-active);
  font: 800 11px/1.3 var(--mono);
}

.map-popup a {
  width: max-content;
  margin-top: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.club-map .leaflet-popup-close-button {
  color: #fff;
}

.setup {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) 1fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 920px;
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  background:
    linear-gradient(115deg, rgba(225, 6, 0, .08), transparent 34%),
    var(--surface);
}

.setup-visual {
  display: grid;
  min-width: 0;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
}

.performance-ring {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.performance-ring::before,
.performance-ring::after,
.performance-ring i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(225, 6, 0, .36);
  border-radius: 50%;
  content: "";
}

.performance-ring::after {
  inset: 24%;
}

.performance-ring i:nth-of-type(1) {
  inset: 36% 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.performance-ring i:nth-of-type(2) {
  inset: 0 36%;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
}

.performance-ring i:nth-of-type(3) {
  inset: 44%;
  border: 0;
  background: var(--red);
  box-shadow: 0 18px 60px rgba(225, 6, 0, .28);
}

.performance-ring span {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  letter-spacing: -.08em;
}

.setup-copy h2 {
  max-width: 100%;
  font-size: clamp(2.25rem, 2.95vw, 4.2rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

.setup-list {
  margin-top: 54px;
}

.setup-list div {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.setup-list dt {
  font-weight: 800;
  text-transform: uppercase;
}

.setup-list dd {
  color: var(--muted);
}

.commercial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--border);
}

.commercial article {
  min-height: 620px;
  padding: clamp(70px, 9vw, 140px) clamp(32px, 5vw, 80px);
  background: var(--bg);
}

.commercial article:first-child {
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.commercial article:last-child {
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.commercial h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: .98;
}

.commercial p {
  max-width: 58ch;
  line-height: 1.65;
}

.promotions {
  background:
    linear-gradient(150deg, rgba(225, 6, 0, .18), transparent 56%),
    var(--bg-alt) !important;
}

.text-action {
  min-height: auto;
  margin-top: 46px;
  padding: 14px 0;
  border-bottom: 2px solid var(--red);
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 130px;
}

.faq-list {
  border-top: 1px solid var(--border-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary h3 {
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
  line-height: 1.25;
}

.faq-list summary span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--red-active);
  transition: transform .35s var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 60ch;
  padding: 0 64px 30px 0;
  color: var(--muted);
}

.closing {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 78dvh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.closing-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .92), rgba(5, 5, 5, .46)),
    url("assets/brand/prime-hero.jpg") center / cover;
  transform: scale(1.05);
}

.closing::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, transparent, rgba(5, 5, 5, .8));
  content: "";
}

.closing-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-copy h2 {
  max-width: 12ch;
}

.closing-copy p {
  max-width: 38ch;
}

.closing-copy .button {
  margin-top: 38px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: end;
  padding: clamp(60px, 8vw, 110px) var(--gutter) 36px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-brand {
  grid-row: span 2;
}

.footer-brand img {
  width: 72px;
  height: 72px;
}

.site-footer p {
  color: var(--muted);
}

.site-footer > div {
  display: flex;
  gap: 28px;
}

.site-footer > small {
  grid-column: 2 / -1;
  color: #7d7d84;
  font: 11px var(--mono);
  letter-spacing: .08em;
}

.booking-dialog {
  width: min(92vw, 720px);
  max-height: min(90dvh, 760px);
  padding: 0;
  overflow: visible;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
}

.booking-dialog::backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
}

.booking-dialog[open] {
  animation: dialog-in .55s var(--ease) both;
}

.booking-panel {
  padding: clamp(28px, 6vw, 64px);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.booking-head p {
  color: var(--red-active);
  font: 700 11px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.booking-panel h2 {
  max-width: none;
  margin-bottom: 48px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: grid;
  animation: step-in .45s var(--ease) both;
}

.booking-step label {
  margin-bottom: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-step select {
  width: 100%;
  min-height: 58px;
  margin-bottom: 26px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text);
}

.booking-step select:focus-visible {
  border-color: var(--red-active);
}

.field-error {
  min-height: 24px;
  margin-bottom: 18px;
  color: #ff8b87;
  font-weight: 700;
}

.booking-next {
  justify-self: end;
}

.booking-summary {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.booking-summary strong {
  font-size: 1.3rem;
}

.booking-summary span,
.booking-note {
  color: var(--muted);
}

.booking-note {
  margin-top: 26px;
}

.booking-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 36px;
}

.inner-page {
  min-height: 100dvh;
}

.inner-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.inner-header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.inner-header nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.city-hero {
  position: relative;
  min-height: 76dvh;
  overflow: hidden;
}

.city-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .25)),
    linear-gradient(0deg, rgba(5, 5, 5, .72), transparent 55%);
  content: "";
}

.city-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(100%, var(--container));
  min-height: 76dvh;
  margin: 0 auto;
  padding: clamp(100px, 18vh, 180px) var(--gutter) clamp(50px, 8vw, 100px);
}

.city-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: .94;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.city-hero-copy > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.city-content {
  padding-top: 80px;
}

.data-notice {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 30px;
  margin-bottom: clamp(80px, 10vw, 140px);
  padding: 24px 0;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--border);
}

.data-notice strong {
  text-transform: uppercase;
}

.data-notice p {
  color: var(--muted);
}

.tariff-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 44px;
}

.tariff-heading h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: .98;
  text-transform: uppercase;
}

.tariff-heading p {
  color: var(--muted);
}

.tariff-sheet {
  width: min(100%, 1080px);
  margin: 0 auto clamp(90px, 12vw, 160px);
  border: 1px solid var(--border-strong);
  background: #0f0f0f;
}

.tariff-sheet img {
  width: 100%;
  height: auto;
}

.tariff-sheet figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font: 700 11px/1.5 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.tariff-sheet figcaption a {
  color: var(--text);
}

.tariff-sheet figcaption a:hover {
  color: var(--red-active);
}

.tariff-sheet figcaption div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.city-zone-heading {
  display: grid;
  gap: 24px;
  margin-bottom: 52px;
}

.city-zone-heading p {
  color: var(--muted);
}

.city-zone-list {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  border: 1px solid var(--border);
}

.city-zone-list article {
  min-height: 390px;
  padding: clamp(26px, 4vw, 52px);
  border-right: 1px solid var(--border);
  background:
    linear-gradient(155deg, rgba(225, 6, 0, .12), transparent 48%),
    var(--surface);
}

.city-zone-list article:last-child {
  border-right: 0;
}

.city-zone-list small {
  color: var(--red-active);
  font-family: var(--mono);
  letter-spacing: .1em;
}

.city-zone-list h3 {
  margin-top: 110px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.city-zone-list p {
  margin-top: 22px;
  color: var(--muted);
}

.city-zone-list span {
  display: block;
  margin-top: 26px;
  color: #ff8b87;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.inner-footer {
  margin-top: 0;
}

.editorial-hero {
  display: grid;
  min-height: 68dvh;
  align-items: end;
  padding: clamp(120px, 18vh, 190px) var(--gutter) clamp(60px, 9vw, 120px);
  background:
    linear-gradient(120deg, rgba(225, 6, 0, .16), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(225, 6, 0, .1), transparent 28rem),
    var(--bg-alt);
}

.editorial-hero > div {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.editorial-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 8vw, 6rem);
  line-height: .94;
  text-transform: uppercase;
}

.editorial-hero > div > p:last-child {
  max-width: 48ch;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.editorial-content {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: clamp(48px, 10vw, 150px);
  align-items: start;
}

.event-status {
  display: grid;
  gap: 18px;
  padding-top: 18px;
  border-top: 4px solid var(--red);
}

.event-status span {
  color: var(--red-active);
  font: 700 11px var(--mono);
  letter-spacing: .1em;
}

.event-status strong {
  font-size: 1.4rem;
  text-transform: uppercase;
}

.editorial-content > div:last-child > p {
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.15rem;
}

.editorial-content .button {
  margin-top: 42px;
}

.rules-content > h2 {
  margin-bottom: 56px;
}

.rules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--border);
  counter-reset: rules;
}

.rules-list li {
  position: relative;
  min-height: 220px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface);
  color: var(--muted);
  counter-increment: rules;
}

.rules-list li::before {
  display: block;
  margin-bottom: 54px;
  color: var(--red-active);
  content: counter(rules, decimal-leading-zero);
  font: 700 12px var(--mono);
}

.not-found {
  display: grid;
  min-height: 100dvh;
  place-content: center;
  justify-items: start;
  padding: var(--gutter);
  background:
    radial-gradient(circle at 70% 30%, rgba(225, 6, 0, .18), transparent 32rem),
    var(--bg);
}

.not-found img {
  width: 96px;
  height: 96px;
  margin-bottom: 44px;
  border: 1px solid var(--border);
}

.not-found p {
  color: var(--red-active);
  font: 700 12px var(--mono);
  letter-spacing: .12em;
}

.not-found h1 {
  max-width: 9ch;
  margin-top: 18px;
  font-size: clamp(3.6rem, 8vw, 6rem);
  line-height: .94;
  text-transform: uppercase;
}

.not-found .button {
  margin-top: 42px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .56fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 110px);
}

.gallery-copy h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .94;
  text-transform: uppercase;
}

.gallery-copy > p:last-child {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.gallery-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.gallery-feature {
  min-width: 0;
  margin: 0;
}

.gallery-feature-video {
  width: min(100%, 560px);
}

.gallery-feature-photo {
  width: min(100%, 595px);
  justify-self: end;
  margin-bottom: clamp(18px, 6vw, 86px);
}

.gallery-media-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #030303;
  box-shadow: 18px 26px 70px rgba(0, 0, 0, .38);
}

.gallery-media-shell video,
.gallery-media-shell img {
  display: block;
  width: 100%;
  height: auto;
  background: #030303;
  object-fit: cover;
}

.gallery-media-shell video {
  aspect-ratio: 9 / 16;
}

.gallery-media-code {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 9px;
  background: rgba(5, 5, 5, .88);
  color: #f5f5f5;
  font: 800 10px/1.2 var(--mono);
  letter-spacing: .08em;
}

.gallery-feature figcaption {
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.gallery-feature figcaption > div {
  display: grid;
  gap: 8px;
}

.gallery-feature figcaption strong {
  font: 900 clamp(1.15rem, 2vw, 1.65rem)/1 var(--display);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.gallery-feature figcaption span {
  color: #d1d1d6;
  font-size: 12px;
  line-height: 1.55;
}

.gallery-feature figcaption a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: max-content;
  max-width: 100%;
  padding: 11px 0;
  border-bottom: 2px solid var(--red);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-feature figcaption a span {
  color: inherit;
}

.gallery-feature figcaption a b {
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform .35s var(--ease);
}

.gallery-feature figcaption a:hover b {
  transform: translate(4px, -4px);
}

@media (prefers-reduced-motion: no-preference) {
  .js .gallery-feature .gallery-media-shell::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: var(--red);
    content: "";
    pointer-events: none;
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 1.05s var(--ease-out) .12s;
  }

  .js .gallery-feature.is-visible .gallery-media-shell::after {
    transform: scaleY(0);
    transform-origin: top;
  }
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes prime-page-progress {
  to {
    transform: scaleX(1);
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.985);
  }
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    min-height: 44px;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform .35s var(--ease);
  }

  .menu-toggle i::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 0 var(--gutter);
    transform: translateY(-130%);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 5, .98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform .55s var(--ease),
      opacity .35s var(--ease);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .header-actions {
    justify-self: end;
    margin-left: 18px;
  }

  .nav-book {
    display: none;
  }

  .zone-stage {
    grid-template-columns: 1fr 1fr;
  }

  .zone-card:last-child {
    grid-column: 1 / -1;
    min-height: 320px;
    border-top: 1px solid var(--border);
  }

  .zone-card h3,
  .zone-card:nth-child(3) h3 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-size: clamp(2.1rem, 9cqi, 4rem);
  }

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

  .commercial article {
    min-height: auto;
    padding-block: clamp(76px, 10vw, 112px);
    padding-inline: var(--gutter);
  }

  .commercial h2 {
    max-width: 15ch;
    font-size: clamp(2.6rem, 6.5vw, 4.75rem);
  }

  .city-zone-list {
    grid-template-columns: 1fr 1fr;
  }

  .city-zone-list article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
  }

  .club-map-layout {
    grid-template-columns: 1fr;
  }

  .club-map-frame {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--border-strong);
  }

  .club-map {
    min-height: 620px;
  }

  .nearest-panel {
    max-height: none;
  }

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

  .faq-title {
    position: static;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: clamp(1.65rem, 8.2vw, 3.2rem);
    overflow-wrap: normal;
    hyphens: none;
  }

  .noise {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    top: 68px;
  }

  .header-actions {
    margin-left: 8px;
  }

  .language-switch button {
    min-width: 34px;
    min-height: 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 110px;
    padding-bottom: 28px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .prime-webgl {
    display: none;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .76) 62%, rgba(5, 5, 5, .22)),
      linear-gradient(90deg, rgba(5, 5, 5, .7), transparent);
  }

  .hero-copy {
    align-self: end;
  }

  .kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10.7vw, 3.6rem);
    line-height: .96;
    overflow-wrap: normal;
    hyphens: none;
  }

  .hero-lead {
    max-width: 31ch;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-action {
    width: 100%;
    margin-top: 24px;
  }

  .hero-status {
    display: none;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-marker {
    width: 84px;
    font-size: 2.5rem;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .zone-stage {
    grid-template-columns: 1fr;
  }

  .zone-card,
  .zone-card:last-child {
    grid-column: auto;
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .zone-card h3 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    font-size: clamp(2rem, 10.5cqi, 3.4rem);
  }

  .zone-card:nth-child(3) h3 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    font-size: clamp(1.65rem, 8.5cqi, 2.8rem);
  }

  .club-row {
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    min-height: 112px;
  }

  .club-row p {
    grid-column: 2 / 4;
    display: grid;
    margin-top: -4px;
  }

  .club-row h3 {
    font-size: clamp(1.55rem, 6.8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .club-row p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .club-row a {
    width: 46px;
    height: 46px;
  }

  .map-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .map-heading p {
    max-width: 44ch;
  }

  .club-map-section {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .club-map-layout,
  .club-map-frame,
  .club-map {
    min-height: 460px;
  }

  .nearest-panel {
    padding: 28px 20px 34px;
  }

  .nearest-state {
    min-height: 0;
  }

  .nearest-button {
    margin-top: 24px;
  }

  .map-club-index a {
    min-height: 64px;
  }

  .setup {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
  }

  .setup-visual {
    min-height: 400px;
  }

  .performance-ring {
    width: min(92vw, 420px);
  }

  .setup-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .commercial article {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .commercial h2 {
    max-width: 12ch;
    font-size: clamp(1.65rem, 8.2vw, 3.1rem);
  }

  .tariff-heading h2 {
    font-size: clamp(1.65rem, 8.2vw, 3.2rem);
    line-height: 1;
    overflow-wrap: normal;
    hyphens: none;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .closing {
    min-height: 680px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-row: auto;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }

  .site-footer > small {
    grid-column: auto;
  }

  .booking-dialog {
    width: 100%;
    max-width: none;
    max-height: 92dvh;
    margin: auto 0 0;
  }

  .booking-panel {
    max-height: 92dvh;
    overflow-y: auto;
  }

  .booking-buttons {
    display: grid;
  }

  .booking-buttons .button {
    width: 100%;
  }

  .inner-header {
    grid-template-columns: auto 1fr;
  }

  .inner-header nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--border);
  }

  .inner-header .language-switch {
    justify-self: end;
  }

  .city-hero,
  .city-hero-copy {
    min-height: 68dvh;
  }

  .city-hero h1,
  .editorial-hero h1,
  .not-found h1 {
    font-size: clamp(2.1rem, 10.7vw, 3.6rem);
    line-height: .96;
  }

  .editorial-hero h1,
  .not-found h1 {
    overflow-wrap: normal;
    hyphens: none;
  }

  .city-hero h1 {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .data-notice {
    grid-template-columns: 1fr;
  }

  .city-zone-list {
    grid-template-columns: 1fr;
  }

  .gallery-copy,
  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    align-items: start;
  }

  .gallery-feature-video,
  .gallery-feature-photo {
    width: 100%;
  }

  .gallery-feature-photo {
    justify-self: stretch;
    margin-bottom: 0;
  }

  .gallery-feature figcaption a {
    width: 100%;
  }

  .city-zone-list article {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .city-zone-list h3 {
    margin-top: 70px;
  }

  .editorial-hero {
    min-height: 62dvh;
  }

  .editorial-content,
  .rules-list {
    grid-template-columns: 1fr;
  }
}

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

  .hero-media {
    transform: none;
  }

  .prime-webgl,
  .site-progress {
    display: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .82)),
      linear-gradient(0deg, rgba(5, 5, 5, .92), transparent 45%);
  }
}

@media (forced-colors: active) {
  .button-primary {
    border: 2px solid ButtonText;
  }
}
