:root {
  --ink: #08100d;
  --ink-2: #101916;
  --ink-3: #18231e;
  --chalk: #f4f2ea;
  --muted: #b9c2bb;
  --line: rgba(244, 242, 234, 0.14);
  --field: #21c05e;
  --whatsapp: #25d366;
  --field-2: #0f8f45;
  --orange: #f06f38;
  --wood: #c68644;
  --blue: #42a5d5;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 54px);
  background: linear-gradient(to bottom, rgba(8, 16, 13, 0.82), rgba(8, 16, 13, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(8, 16, 13, 0.94);
}

.site-header.is-scrolled .brand-logo {
  width: 42px;
  height: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-text {
  color: var(--chalk);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: width 220ms ease, height 220ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(244, 242, 234, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--chalk);
}

.nav-cta,
.btn-primary,
.floating-cta {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
}

.whatsapp-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
  animation: whatsapp-button-pulse 1.75s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.whatsapp-icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.whatsapp-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--chalk);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 40px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 24%, rgba(33, 192, 94, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(8, 16, 13, 0.96), rgba(8, 16, 13, 0.72) 42%, rgba(8, 16, 13, 0.24)),
    linear-gradient(to top, var(--ink), transparent 34%);
}

.hero-content {
  max-width: 850px;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(58px, 10vw, 132px);
}

h2 {
  font-size: clamp(38px, 5.8vw, 78px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy,
.section-copy p,
.court-card p,
.menu-card p,
.location-card span,
.site-footer p {
  color: var(--muted);
}

.location-social {
  width: max-content;
  margin-top: 4px;
  color: var(--field);
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--chalk);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  max-width: 880px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-strip span {
  padding: 17px 16px;
  background: rgba(8, 16, 13, 0.72);
  color: rgba(244, 242, 234, 0.88);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 9vw, 120px) 0;
}

.split-grid,
.pricing-layout,
.menu-layout,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.section-copy p {
  margin: 24px 0 0;
  font-size: 18px;
}

.pricing-section .section-copy .whatsapp-link {
  margin-top: 16px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 242, 234, 0.88);
  font-weight: 700;
  opacity: 1;
  transform: none;
  transition: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--field);
  box-shadow: 0 0 18px rgba(33, 192, 94, 0.7);
}

.stacked-photos {
  position: relative;
  min-height: 560px;
}

.photo-main,
.photo-float,
.menu-photo,
.location-card,
.court-card,
.price-board,
.menu-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-main {
  width: 86%;
  height: 510px;
  object-fit: cover;
  opacity: 1;
  transform: none;
  transition: none;
}

.photo-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 330px;
  object-fit: cover;
  opacity: 1;
  transform: none;
  transition: none;
}

.stacked-photos::after {
  content: "";
  position: absolute;
  inset: 10% -4% 4% 24%;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(33, 192, 94, 0.18), transparent 68%);
  filter: blur(18px);
  opacity: 1;
  pointer-events: none;
  transition: none;
  z-index: -1;
}

.courts-section,
.gallery-section {
  background: var(--ink-2);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 820px;
}

.court-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.court-card {
  position: relative;
  overflow: hidden;
  background: #111d18;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.court-card::after,
.gallery-item::after,
.menu-card::after,
.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.12) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 580ms ease;
}

.court-card:hover {
  border-color: rgba(33, 192, 94, 0.38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(33, 192, 94, 0.12);
  transform: translateY(-6px);
}

.court-card:hover::after,
.gallery-item:hover::after,
.menu-card:hover::after,
.location-card:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.court-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.court-card:hover img {
  transform: scale(1.045);
}

.court-card div {
  padding: 24px;
}

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

.court-card p {
  margin: 14px 0 0;
}

.court-card:nth-child(2) {
  transition-delay: 90ms;
}

.court-card:nth-child(3) {
  transition-delay: 180ms;
}

.pricing-section {
  background:
    linear-gradient(135deg, rgba(198, 134, 68, 0.1), transparent 42%),
    var(--ink);
}

.price-board {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(rgba(244, 242, 234, 0.035), rgba(244, 242, 234, 0.01)),
    #111411;
}

.price-group + .price-group {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.price-group h3 {
  margin-bottom: 16px;
  color: var(--orange);
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(244, 242, 234, 0.18);
  font-weight: 900;
  transition: border-color 180ms ease, transform 180ms ease;
}

.price-row:hover {
  border-color: rgba(33, 192, 94, 0.36);
  transform: translateX(4px);
}

.price-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--field);
  font-size: 22px;
}

.combo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(33, 192, 94, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33, 192, 94, 0.16), rgba(198, 134, 68, 0.08)),
    rgba(6, 14, 11, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(244, 242, 234, 0.04);
}

.combo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--field), var(--orange));
}

.combo-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.combo-card summary::-webkit-details-marker {
  display: none;
}

.combo-label {
  display: block;
  margin: 0 0 8px;
  color: var(--field);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.combo-card summary strong {
  color: var(--chalk);
  font-size: 22px;
  text-transform: uppercase;
}

.combo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid rgba(244, 242, 234, 0.18);
  border-radius: 999px;
  color: var(--chalk);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  animation: comboPulse 1.9s ease-in-out infinite;
  transition: border-color 180ms ease, background 180ms ease;
}

.combo-card summary:hover .combo-toggle {
  border-color: rgba(33, 192, 94, 0.62);
  background: rgba(33, 192, 94, 0.12);
}

.combo-arrow {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--chalk);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.combo-card[open] .combo-arrow {
  transform: rotate(90deg);
}

@keyframes comboPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 242, 234, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(244, 242, 234, 0.1);
  }
}

.combo-content {
  padding: 0 24px 24px;
}

.combo-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.combo-values,
.combo-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px dashed rgba(244, 242, 234, 0.18);
}

.combo-values strong {
  color: var(--field);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.combo-values span,
.combo-extra span {
  color: var(--muted);
  font-weight: 800;
}

.combo-extra strong {
  color: var(--chalk);
  font-size: 18px;
}

.combo-content > small {
  display: block;
  margin-top: 12px;
  color: rgba(244, 242, 234, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-section {
  background: linear-gradient(120deg, #101916, #211811);
}

.menu-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(17, 25, 22, 0.82);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.menu-columns div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 242, 234, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--chalk);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  animation: comboPulse 1.9s ease-in-out infinite;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 160ms ease;
}

.text-link:hover {
  border-color: rgba(33, 192, 94, 0.62);
  background: rgba(33, 192, 94, 0.12);
  transform: translateY(-2px);
}

.menu-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--chalk);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  background: var(--field);
  color: #031109;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-3);
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 400ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item:nth-child(3n + 2) {
  transition-delay: 70ms;
}

.gallery-item:nth-child(3n) {
  transition-delay: 140ms;
}

.location-card {
  position: relative;
  overflow: hidden;
  background: #111d18;
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.location-card:hover {
  border-color: rgba(33, 192, 94, 0.34);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.location-map {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.location-card-content {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.location-card strong {
  font-size: 22px;
}

.location-card .location-social {
  justify-self: center;
  margin-top: 10px;
}

.location-map-action {
  justify-self: center;
  margin-top: 14px;
  min-height: 44px;
  padding-inline: 22px;
  border-color: rgba(33, 192, 94, 0.78);
  background:
    linear-gradient(135deg, rgba(33, 192, 94, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 0 1px rgba(33, 192, 94, 0.18), 0 14px 34px rgba(33, 192, 94, 0.16);
}

.location-map-action:hover {
  border-color: rgba(244, 242, 234, 0.82);
  background:
    linear-gradient(135deg, rgba(33, 192, 94, 0.24), rgba(255, 255, 255, 0.1));
  box-shadow: 0 0 0 1px rgba(244, 242, 234, 0.16), 0 16px 38px rgba(33, 192, 94, 0.2);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #060b09;
}

.footer-grid {
  display: grid;
  align-items: center;
  position: relative;
  min-height: 42px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  text-align: center;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  opacity: 0.72;
}

.developer-credit span {
  font-size: 14px;
  font-weight: 600;
}

.developer-credit:hover {
  opacity: 1;
  color: var(--chalk);
}

.developer-credit img {
  width: min(150px, 38vw);
  max-height: 18px;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.copyright {
  margin: 0;
  color: rgba(244, 242, 234, 0.66);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  max-width: min(420px, 36vw);
  transform: translate(-50%, -50%);
}

.floating-cta {
  position: fixed;
  right: 36px;
  bottom: 92px;
  z-index: 60;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
}

.floating-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.62;
  animation: whatsapp-ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-cta .whatsapp-icon-wrap {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.floating-cta .whatsapp-icon {
  width: 28px;
  height: 28px;
}

.scroll-top-btn {
  position: fixed;
  left: 32px;
  bottom: 36px;
  z-index: 59;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 242, 234, 0.22);
  border-radius: 50%;
  color: var(--chalk);
  background: rgba(7, 18, 13, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease, background 180ms ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  border-color: rgba(244, 242, 234, 0.42);
  background: rgba(244, 242, 234, 0.1);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes whatsapp-ping {
  75%,
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes whatsapp-button-pulse {
  0% {
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24), 0 0 0 0 rgba(37, 211, 102, 0.42);
  }

  70%,
  100% {
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24), 0 0 0 13px rgba(37, 211, 102, 0);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 70px 22px 22px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  position: relative;
  margin: 0;
}

.lightbox img {
  max-height: 86svh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 16, 13, 0.72);
  color: var(--chalk);
  font-size: 13px;
  font-weight: 900;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--chalk);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  display: none;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(244, 242, 234, 0.1);
  color: var(--chalk);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-nav:hover {
  background: rgba(244, 242, 234, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav span {
  margin-top: -4px;
  font-size: 46px;
  line-height: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox.is-carousel .lightbox-nav {
  display: grid;
}

.lightbox:not(.is-carousel) .lightbox-counter {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(33, 192, 94, 0.1), rgba(66, 165, 213, 0.08)),
      rgba(8, 16, 13, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-scrolled .main-nav {
    background: rgba(8, 16, 13, 0.98);
  }

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

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .hero-strip,
  .court-grid,
  .split-grid,
  .pricing-layout,
  .menu-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .stacked-photos {
    min-height: auto;
  }

  .photo-main,
  .photo-float {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-float {
    margin-top: 14px;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 220px 0 42px;
  }

  .hero-media img {
    object-position: 56% top;
    transform: scale(1.06);
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(8, 16, 13, 0.12), rgba(8, 16, 13, 0.3) 34%, rgba(8, 16, 13, 0.94) 66%, var(--ink)),
      radial-gradient(circle at 72% 18%, rgba(33, 192, 94, 0.14), transparent 40%);
  }

  .hero-strip {
    display: none;
  }

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

  .combo-values,
  .combo-extra {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .combo-card summary {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 20px 18px;
  }

  .combo-label {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .combo-card summary strong {
    font-size: 17px;
  }

  .combo-toggle {
    gap: 6px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .combo-arrow {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }

  h1 {
    max-width: 92%;
    font-size: clamp(36px, 11.8vw, 46px);
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-copy {
    max-width: 94%;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .floating-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .lightbox {
    padding-inline: 14px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav span {
    font-size: 36px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .section-heading {
    display: block;
  }

  .court-card img,
  .menu-photo,
  .location-map {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 40px;
    height: 40px;
  }

  .footer-topline {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .footer-grid {
    gap: 16px;
  }

  .copyright {
    position: static;
    width: auto;
    max-width: none;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-media img,
  .photo-main,
  .photo-float {
    opacity: 1 !important;
    transform: none !important;
  }
}
