:root {
  --ink: #08110f;
  --paper: #f7faf7;
  --muted: #5b6863;
  --line: rgba(8, 17, 15, 0.14);
  --night: #07110f;
  --teal: #0f9f8c;
  --lime: #c8f24a;
  --amber: #f2ad3b;
  --coral: #ec5c43;
  --blue: #2473d8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 18, 16, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 9, 8, 0.82), rgba(3, 9, 8, 0));
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.feature-list li,
.stats-band,
.sport-card,
.booking-highlight,
.address-card,
.booking-panel {
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

.nav-links {
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-book,
.primary-action,
.secondary-action,
.booking-panel a,
.address-card a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 850;
}

.nav-book,
.primary-action {
  color: #07110f;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(200, 242, 74, 0.32);
}

.nav-book {
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(18px, 5vw, 72px) 58px;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 8, 0.86) 0%, rgba(3, 9, 8, 0.58) 44%, rgba(3, 9, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 9, 8, 0.78) 0%, rgba(3, 9, 8, 0) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 11vw, 136px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.secondary-action {
  padding: 0 24px;
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 30px rgba(200, 242, 74, 0.32);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(200, 242, 74, 0.48);
  }
}

.booking-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 46px;
  z-index: 3;
  width: min(360px, calc(100vw - 36px));
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-panel strong {
  font-size: 30px;
}

.booking-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.booking-panel a {
  color: #07110f;
  background: var(--amber);
}

.stats-band {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 36px));
  margin: -32px auto 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats-band div {
  flex: 1;
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 6px;
  font-size: 24px;
}

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

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.sports-section {
  padding-top: 28px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.sport-card {
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sport-card.featured {
  grid-column: span 2;
}

.sport-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.sport-card div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.sport-card span {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sport-card p {
  color: var(--muted);
  line-height: 1.55;
}

.sport-card strong {
  margin-top: auto;
  color: var(--coral);
  font-size: 22px;
}

.no-photo {
  color: var(--white);
  background: linear-gradient(135deg, var(--night), #12332c 58%, #253817);
}

.no-photo p,
.no-photo span {
  color: rgba(255, 255, 255, 0.74);
}

.no-photo strong {
  color: var(--lime);
}

.sport-icon {
  display: grid;
  min-height: 162px;
  place-items: center;
  color: var(--lime);
  font-size: 54px;
  font-weight: 950;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  width: 100%;
  padding: 82px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--night);
}

.feature-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.gallery-section {
  padding-bottom: 72px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 16px;
  margin-top: 34px;
}

.gallery-layout button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.gallery-main img,
.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-layout button:hover img {
  transform: scale(1.035);
}

.gallery-main {
  min-height: 560px;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-stack button {
  min-height: 176px;
}

.booking-highlight {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #eff8e4 100%);
  box-shadow: var(--shadow);
}

.booking-highlight p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.6;
}

.primary-action.large {
  min-width: 190px;
  min-height: 58px;
  font-size: 18px;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  margin-top: 34px;
}

.address-card {
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(5, 18, 16, 0.12);
}

.address-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.address-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.address-card p {
  color: var(--muted);
  line-height: 1.6;
}

.address-card a {
  color: var(--white);
  background: var(--blue);
}

.location-grid iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--night);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  padding: 0 20px;
  color: #07110f;
  background: var(--lime);
}

.image-dialog {
  width: min(980px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #020504;
  box-shadow: var(--shadow);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.image-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(3, 9, 8, 0.86);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding-top: 110px;
  }

  .booking-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 22px;
  }

  .stats-band,
  .intro-section,
  .feature-band,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-band div:nth-child(2) {
    border-right: 0;
  }

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

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

  .gallery-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-main,
  .gallery-stack button {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    max-width: 96px;
    line-height: 1;
  }

  .nav-book {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding: 96px 18px 32px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .stats-band,
  .sports-grid,
  .gallery-stack {
    grid-template-columns: 1fr;
  }

  .stats-band div,
  .stats-band div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .sport-card.featured {
    grid-column: span 1;
  }

  .booking-highlight,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
