@import url('/fonts/fonts.css');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:            #0b1a0e;
  --bg-surface:    #0f2214;
  --bg-card:       #162b1c;
  --bg-card-2:     #1c3524;
  --green:         #2d6a3f;
  --green-light:   #3d8a52;
  --gold:          #c9a84c;
  --gold-light:    #dbbf6f;
  --gold-dim:      rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.25);
  --text:          #ede9e3;
  --text-muted:    #8fa897;
  --text-dim:      #4e6357;
  --border:        #1e3828;
  --border-mid:    #2a4835;
  --font-display:  'Bebas Neue', sans-serif;
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --nav-h:         64px;
  --section-py:    80px;
  --radius:        8px;
  --radius-lg:     16px;
  --container:     1200px;
  --ease:          0.18s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: calc(var(--section-py) * 0.6) 0; }
.page-top { padding-top: var(--nav-h); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: #0b1a0e;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.btn-ghost {
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-mid);
  background: var(--bg-card-2);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1fb957;
  transform: translateY(-1px);
}
.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--bg-card-2);
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
}
.tag-gold {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold-border);
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #c62828;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}
.badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: live-pulse 1.2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.35); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(11, 26, 14, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo small {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links > a,
.nav-dropdown > button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links > a:hover,
.nav-dropdown > button:hover,
.nav-links > a.active {
  color: var(--text);
  background: var(--border);
}
.nav-links > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-dropdown-menu a:hover { color: var(--text); background: var(--bg-card-2); }

/* Book Now (nav) */
.nav-book { flex-shrink: 0; }
.nav-book-wrap { position: relative; flex-shrink: 0; }
.nav-book-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 10;
}
.nav-book-wrap:hover .nav-book-menu,
.nav-book-wrap.open .nav-book-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-book-menu a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-book-menu a:hover { color: var(--gold); background: var(--gold-dim); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-book-wrap { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-mid);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.5rem 1.5rem;
    gap: 0.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links > a,
  .nav-dropdown > button { width: 100%; padding: 0.75rem; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: var(--bg-card);
    margin: 0.25rem 0 0.25rem 0.75rem;
    border-radius: 6px;
  }
  .nav-mobile-book {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: linear-gradient(90deg, var(--bg-surface), var(--bg-card), var(--bg-surface));
  border-bottom: 1px solid var(--gold-border);
  padding: 0.55rem 0;
  margin-top: var(--nav-h);
}
.announce-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.announce-bar-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.announce-bar-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.announce-bar-dismiss:hover { color: var(--text-muted); }

/* ============================================================
   HERO (home page)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 26, 14, 0.93) 0%,
    rgba(11, 26, 14, 0.78) 45%,
    rgba(11, 26, 14, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 640px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================================================
   GROUND CARDS (home overview)
   ============================================================ */
.grounds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ground-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.ground-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.ground-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-card-2);
  display: block;
}
.ground-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ground-card-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.ground-card-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.ground-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.ground-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.ground-card-ctas {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .grounds-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES GRID (why nexus)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--ease);
}
.feature-card:hover { border-color: var(--border-mid); }
.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   GROUND HERO (individual ground pages)
   ============================================================ */
.ground-hero {
  position: relative;
  height: 72vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}
.ground-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ground-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 26, 14, 0.97) 0%,
    rgba(11, 26, 14, 0.55) 55%,
    rgba(11, 26, 14, 0.2) 100%
  );
}
.ground-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  width: 100%;
}
.ground-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ground-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.ground-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.ground-hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================================================
   FACILITIES (ground pages)
   ============================================================ */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.875rem;
}
.facility-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.facility-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.facility-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table thead th {
  background: var(--bg-card-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.5rem;
  text-align: left;
}
.pricing-table tbody td {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.price-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gallery-filter {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.825rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border-mid);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  background: none;
}
.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.875rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--bg-card);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,26,14,0.85), transparent);
  padding: 1rem 0.875rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: min(90vw, 960px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  border: none;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--text);
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.booking-form { max-width: 100%; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-input::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5) sepia(0.3); }

/* Format tabs */
.format-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.format-tab {
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-mid);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  background: none;
}
.format-tab:hover { border-color: var(--green-light); color: var(--text); }
.format-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* Slot options */
.slot-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.slot-option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.slot-option:has(input:checked),
.slot-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.slot-option input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.slot-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
}
.slot-duration {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Booking sidebar card */
.booking-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.booking-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.booking-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.booking-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.booking-info-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.booking-info-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.1rem;
}
.booking-info-val { color: var(--text-muted); font-size: 0.875rem; }
.booking-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

@media (max-width: 820px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-info-card { position: static; }
}

/* ============================================================
   GROUND STRIP (booking pages top bar)
   ============================================================ */
.ground-strip {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  margin-top: var(--nav-h);
}
.ground-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ground-strip-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--bg-card);
  flex-shrink: 0;
}
.ground-strip-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.1;
}
.ground-strip-loc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ============================================================
   LIVE PAGE
   ============================================================ */
.live-player-wrap {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.live-player-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.live-match-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.live-match-teams {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--text);
  flex: 1;
}
.live-match-meta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.live-offline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  text-align: center;
}
.live-offline-icon {
  width: 56px;
  height: 56px;
  color: var(--text-dim);
  margin: 0 auto 1.5rem;
}
.live-offline-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.live-offline-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.past-streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.past-stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease);
}
.past-stream-card:hover { border-color: var(--border-mid); }
.past-stream-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-card-2);
}
.past-stream-body { padding: 1rem; }
.past-stream-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.past-stream-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-card-map {
  width: 100%;
  height: 240px;
  background: var(--bg-card-2);
  border: none;
  display: block;
}
.contact-card-body { padding: 1.5rem; }
.contact-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.contact-card-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.contact-card-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.contact-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY TEASER (home page)
   ============================================================ */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-teaser-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-teaser-item:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FIND US (home page mini maps)
   ============================================================ */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.find-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.find-us-map {
  width: 100%;
  height: 200px;
  background: var(--bg-card-2);
  border: none;
  display: block;
}
.find-us-body { padding: 1.25rem 1.5rem; }
.find-us-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.find-us-addr {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .find-us-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION DIVIDER (gold line accent)
   ============================================================ */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BG VARIANTS
   ============================================================ */
.bg-surface { background: var(--bg-surface); }
.bg-card { background: var(--bg-card); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-dim    { color: var(--text-dim); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 820px) {
  :root { --section-py: 56px; }
  .hero-content { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  :root { --section-py: 44px; }
}
