:root {
  --charcoal: #26292e;
  --ink: #1c1e22;
  --steel: #6e747c;
  --red: #d22b2b;
  --red-deep: #b72222;
  --green: #178b4e;
  --bg: #f7f7f8;
  --bg-alt: #eaebed;
  --line: #d9dce0;
  --white: #fff;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--charcoal);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Syne", sans-serif; letter-spacing: 0; line-height: 1.05; }
button { font: inherit; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(38, 41, 46, .98);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  min-height: 49px;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d7dade;
  font-weight: 700;
  font-size: .9rem;
}
.desktop-nav a:hover { color: #fff; }
.nav-book {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--red);
  color: #fff !important;
  padding: 8px 14px;
}
.nav-book:hover { background: var(--red-deep); }
.menu-btn {
  display: none;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  font-weight: 800;
}
.mobile-nav { display: none; }

.btn {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-alt); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,30,34,.68), rgba(28,30,34,.42) 42%, rgba(28,30,34,.94));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 86px;
  padding-bottom: 66px;
}
.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
  font-size: .72rem;
  margin-bottom: 10px;
}
.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}
.lead {
  max-width: 58ch;
  margin-top: 18px;
  color: #e4e6e9;
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-stats span {
  min-height: 54px;
  display: grid;
  gap: 2px;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,.08);
  padding: 8px 14px;
  color: #d7dade;
}
.hero-stats b { color: #fff; }

.section { padding: 82px 0; }
.band { background: var(--bg-alt); }
.dark { background: var(--charcoal); color: #fff; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
}
.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 13ch;
}
.section-copy, .section-head p {
  color: var(--steel);
  margin-top: 14px;
  max-width: 64ch;
}
.dark p { color: #c4c8cd; }

.sport-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sport-card {
  min-height: 150px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 20px;
}
.sport-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.sport-card p { color: var(--steel); }

.rates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.rate-table {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.rate-row {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.rate-row:last-child { border-bottom: 0; }
.rate-head {
  min-height: 44px;
  background: var(--charcoal);
  color: #fff;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.rate-row b { font-family: "Syne"; text-align: right; }
.booking-flow {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 22px;
}
.booking-flow h3 { margin-bottom: 12px; }
.booking-flow ol {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  color: var(--steel);
  margin-bottom: 18px;
}
.fine-print {
  color: var(--steel);
  font-size: .9rem;
  margin-top: 16px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.photo {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-alt);
}
.photo-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 494px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 14px 12px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(28,30,34,.88));
}
.court-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.court-layout h3 {
  max-width: 16ch;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.court-layout p {
  color: var(--steel);
  margin-top: 12px;
  max-width: 60ch;
}
.court-layout img {
  width: min(100%, 360px);
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.events {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: center;
}
.events h2 { max-width: 14ch; }
.events img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
}
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}
.location h2 { max-width: 14ch; }
.parking-list {
  display: grid;
  gap: 10px;
  color: var(--steel);
  margin: 18px 0 22px 18px;
  max-width: 62ch;
}
.parking-list li::marker { color: var(--red); }
.location-map {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-alt);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) 360px;
  gap: 28px;
  align-items: start;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-list a:hover { color: var(--red); }
.contact-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 22px;
}
.contact-panel p {
  color: var(--steel);
  margin: 10px 0 18px;
}

.footer {
  background: var(--charcoal);
  color: #a8aeb5;
  padding: 42px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-brand {
  margin-bottom: 10px;
}
.footer p { max-width: 34ch; }
.footer-links {
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 800;
}
.footer-links a:hover { color: var(--red); }

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .menu-btn { display: inline-flex; align-items: center; }
  .mobile-nav.open {
    display: grid;
    background: #34383e;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav a {
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #d7dade;
    font-weight: 800;
  }
  .split,
  .rates-layout,
  .events,
  .location,
  .contact,
  .court-layout {
    grid-template-columns: 1fr;
  }
  .venue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-large { grid-column: span 2; min-height: 360px; }
}

@media (max-width: 640px) {
  .shell { padding: 0 14px; }
  .section { padding: 58px 0; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 42px; }
  .hero-stats { display: grid; }
  .sport-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .photo-large {
    grid-column: auto;
    min-height: 280px;
  }
  .rate-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }
  .rate-row b { text-align: left; }
  .rate-head { display: none; }
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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