@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --ink: #151515;
  --navy: #0d1822;
  --navy-2: #142433;
  --paper: #fffdfa;
  --soft: #f5f1ea;
  --soft-2: #ece4d8;
  --muted: #66737f;
  --line: #dfe7eb;
  --orange: #f47621;
  --green: #159765;
  --blue: #1668c7;
  --violet: #a746c7;
  --shadow: 0 22px 70px rgba(13, 22, 31, .13);
  --shadow-sm: 0 12px 34px rgba(13, 22, 31, .08);
  --radius: 6px;
  --max: 1200px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-ui: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-header: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-copy: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  animation: pageLoad .55s ease-out both;
}
#page,
.site,
.home-page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 36px, var(--max)); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,231,235,.82);
  box-shadow: 0 10px 34px rgba(13,22,31,.08);
  backdrop-filter: blur(18px) saturate(150%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: background, box-shadow;
  font-family: var(--font-header);
}
.site-header.scrolled,
.site-header.is-sticky {
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(223,231,235,.95);
  box-shadow: 0 14px 42px rgba(13,22,31,.14);
  position: fixed;
  top: 0;
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header.scrolled .nav-wrap,
.site-header.is-sticky .nav-wrap {
  height: 76px;
}
.top-announcement {
  color: rgba(255,255,255,.78);
  background: #101821;
  border-bottom: 0;
  font-family: var(--font-header);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.top-announcement-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.top-announcement p { margin: 0; color: rgba(255,255,255,.74); }
.top-announcement-actions { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.64); }
.top-announcement-actions a { color: #f4b37d; font-weight: 600; }
.site-header.scrolled .top-announcement,
.site-header.is-sticky .top-announcement {
  display: none;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; color: #fff; font-family: var(--font-header); font-weight: 700; }
.brand img {
  width: auto;
  height: 68px !important; 
  max-width: 172px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}
.brand span { display: none; }
.nav-toggle { width: 40px; height: 40px; border: 1px solid rgba(13,24,34,.14); border-radius: 999px; background: #fff; color: var(--navy); display: grid; place-items: center; }
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after { content: ""; display: block; width: 20px; height: 2px; background: currentColor; }
.nav-toggle span:before { transform: translateY(-7px); }
.nav-toggle span:after { transform: translateY(5px); }
.nav {
  position: absolute;
  inset: 96px 18px auto;
  display: grid;
  padding: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(223,231,235,.92);
  border-radius: 12px;
  box-shadow: 0 22px 56px rgba(13,22,31,.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity .24s ease, transform .24s ease;
}
.nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav a,
.nav-link {
  position: relative;
  padding: 10px 10px;
  border-radius: 0;
  color: #26323d;
  font-family: var(--font-header);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.nav-link {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.has-dropdown > .nav-link:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.has-dropdown:hover > .nav-link:after,
.has-dropdown:focus-within > .nav-link:after {
  transform: rotate(225deg) translateY(-1px);
}
.nav a:after,
.nav-link:before { display: none; }
.nav a:hover,
.nav a.active,
.nav-link:hover,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link {
  color: var(--orange);
  background: transparent;
}
.site-header.scrolled .nav a,
.site-header.is-sticky .nav a,
.site-header.scrolled .nav-link,
.site-header.is-sticky .nav-link { color: #26323d; }
.site-header.scrolled .nav a:hover,
.site-header.scrolled .nav a.active,
.site-header.is-sticky .nav a:hover,
.site-header.is-sticky .nav a.active,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .has-dropdown:hover > .nav-link,
.site-header.scrolled .has-dropdown:focus-within > .nav-link,
.site-header.is-sticky .nav-link:hover,
.site-header.is-sticky .has-dropdown:hover > .nav-link,
.site-header.is-sticky .has-dropdown:focus-within > .nav-link { color: var(--orange); background: transparent; }
.nav-item {
  position: relative;
}
.nav-item.has-dropdown:before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 22px;
  display: none;
}
.nav-dropdown {
  position: static;
  display: none;
  min-width: 210px;
  padding: 8px;
  margin: 4px 0 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(13,22,31,.12);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #26323d;
  letter-spacing: .01em;
  text-transform: none;
  font-size: .88rem;
}
.nav-dropdown a:hover {
  color: var(--orange);
  background: rgba(230,35,52,.08);
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-dropdown.open > .nav-dropdown {
  display: block;
}
.site-header.scrolled .nav-toggle,
.site-header.is-sticky .nav-toggle { color: var(--navy); border-color: var(--line); background: #fff; }
.header-cta { display: none; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.header-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13,24,34,.14);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(13,22,31,.08);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.header-icon-link:hover,
.header-icon-link:focus {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.header-icon {
  width: 21px;
  height: 21px;
  display: block;
  background: currentColor;
}
.header-cart-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2ZM7.2 14.8h7.5c.75 0 1.41-.41 1.75-1.03L20.7 6H6.2L5.6 3H2v2h2l3.1 15h12v-2H8.7l-.4-2h8.2c.75 0 1.41-.41 1.75-1.03L21 8h-2.2l-2.5 4.8H8.2L7.2 14.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2ZM7.2 14.8h7.5c.75 0 1.41-.41 1.75-1.03L20.7 6H6.2L5.6 3H2v2h2l3.1 15h12v-2H8.7l-.4-2h8.2c.75 0 1.41-.41 1.75-1.03L21 8h-2.2l-2.5 4.8H8.2L7.2 14.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.header-user-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-4.42 0-8 2.24-8 5v3h16v-3c0-2.76-3.58-5-8-5Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2c-4.42 0-8 2.24-8 5v3h16v-3c0-2.76-3.58-5-8-5Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}
.header-icon-link:hover .header-cart-count,
.header-icon-link:focus .header-cart-count {
  background: var(--navy);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn.primary { background: var(--orange); color: #fff; box-shadow: 0 15px 36px rgba(244,118,33,.28); }
.btn.dark { background: var(--navy); color: #fff; }
.btn.light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0) scale(.99); }
.site-header .header-cta {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  display: none;
  font-family: var(--font-header);
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,14,20,.94), rgba(8,14,20,.76) 55%, rgba(8,14,20,.32)),
    url("https://images.unsplash.com/photo-1575361204480-aadea25e6e68?auto=format&fit=crop&w=1900&q=84") center/cover;
  position: relative;
  overflow: hidden;
}
.hero:after { content: ""; position: absolute; inset: auto 0 0; height: 130px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.24)); }
.hero-inner { position: relative; z-index: 1; padding: 72px 0 118px; max-width: 1200px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-family: var(--font-ui); font-size: .92rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 13px; }
.eyebrow:before { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--green)); border-radius: 99px; }
h1, h2 { font-family: var(--font-display); font-weight: 700; text-transform: none; }
h1, h2, h3 { margin: 0 0 15px; line-height: 1.1; letter-spacing: 0; }
h1 { font-size: clamp(2.65rem, 6.5vw, 4.15rem); max-width: 980px; }
h2 { font-size: clamp(1.8rem, 4.1vw, 2.75rem); }
h3 { font-family: var(--font-ui); font-size: 1.35rem; font-weight: 700; line-height: 1.08; }
p {
  color: var(--muted);
  margin: 0 0 16px;
  font-family: var(--font-copy);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.badge,
.booking-note,
.feature-list li,
.filter-btn,
.faq-item button,
.gallery-item span,
.event-list span,
.shop-chip-grid span,
.contact-list span,
.contact-mini-list span,
.footer-contact-item,
.academy-program-panel small,
.academy-program-panel article > strong,
.availability-card em,
.contact-info-card small,
.shop-product-card small,
.news-card small,
.club-link small,
.club-link-cta,
.form-success,
.search-message {
  font-weight: 700;
}
.hero p, .page-hero p, .dark p { color: rgba(255,255,255,.76); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 34px; max-width: 760px; }
.hero-stat { padding: 15px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-stat { animation: floatCard 7s ease-in-out infinite; }
.hero-stat:nth-child(2) { animation-delay: .8s; }
.hero-stat:nth-child(3) { animation-delay: 1.6s; }
.hero-stat:nth-child(4) { animation-delay: 2.4s; }
.hero-stat strong { display: block; font-size: 1.05rem; }
.stat-number { color: #fff; font-size: 1.55rem; line-height: 1; }
.hero-stat span { color: rgba(255,255,255,.68); font-size: .86rem; }
.home-hero .eyebrow {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(7,24,39,.28);
  color: #fff;
  backdrop-filter: blur(12px);
}
.home-hero .eyebrow:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.home-hero h1 {
  max-width: 720px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.05rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  text-shadow: 0 18px 45px rgba(0,0,0,.34);
}
.home-hero .hero-inner > p {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}
.home-hero .btn {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 20px;
  text-transform: none;
}
.home-hero .btn.ghost {
  color: var(--navy);
  background: rgba(255,255,255,.72);
  border-color: rgba(13,24,34,.12);
  backdrop-filter: blur(12px);
}
.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-feature-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.floating-cards { max-width: 860px; }

.hero-slider {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: #f3f0ea;
  color: var(--navy);
  isolation: isolate;
  border-bottom: 1px solid rgba(19,29,47,.08);
}
.hero-slider:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(4,18,32,.28));
  pointer-events: none;
}
.hero-slider .hero-inner {
  width: min(100% - 36px, var(--max));
  padding-top: 160px;
  padding-bottom: 145px;
  margin-inline: auto;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .85s ease, visibility .85s ease, transform 1.1s ease;
  transform: scale(1.015);
  background:
    linear-gradient(90deg, rgba(7,24,39,.22) 0%, rgba(7,24,39,.08) 42%, transparent 76%),
    var(--bg) center/cover;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-slide .hero-inner { position: relative; z-index: 2; }
.hero-slide.active .eyebrow,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-actions,
.hero-slide.active .hero-stats {
  animation: heroStagger .72s cubic-bezier(.2,.75,.22,1) both;
}
.hero-slide.active h1 { animation-delay: .08s; }
.hero-slide.active p { animation-delay: .16s; }
.hero-slide.active .hero-actions { animation-delay: .24s; }
.hero-slide.active .hero-stats { animation-delay: .32s; }
.slider-controls {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 54px;
  display: flex;
  justify-content: flex-start;
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
  padding: 0;
  pointer-events: none;
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  pointer-events: auto;
}
.slider-dots button {
  position: relative;
  width: 54px;
  height: 4px;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.46);
  color: transparent;
  cursor: pointer;
  box-shadow: none;
  backdrop-filter: none;
  transition: background .24s ease, width .24s ease, transform .24s ease;
}
.slider-dots button:before {
  content: none;
}
.slider-dots button:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--orange);
  transition: width .28s ease;
}
.slider-dots button:hover {
  background: rgba(255,255,255,.72);
  transform: none;
}
.slider-dots button.active {
  width: 82px;
  background: rgba(255,255,255,.46);
  box-shadow: none;
}
.slider-dots button.active:after {
  width: 100%;
}

.search-panel {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}
.search-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: bookingLift .7s cubic-bezier(.2,.75,.22,1) both;
}
.search-card .search-field, .search-card .btn {
  animation: formStep .55s cubic-bezier(.2,.75,.22,1) both;
}
.search-card .search-field:nth-child(2) { animation-delay: .06s; }
.search-card .search-field:nth-child(3) { animation-delay: .12s; }
.search-card .search-field:nth-child(4) { animation-delay: .18s; }
.search-card .btn { animation-delay: .24s; }
.form .field, .form .btn, .form-success {
  animation: formStep .55s cubic-bezier(.2,.75,.22,1) both;
}
.search-field label, .field label { display: block; color: #26323d; font-family: var(--font-ui); font-size: .98rem; font-weight: 600; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .02em; }
.search-field input, .search-field select, .field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7e0e5;
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.search-field input:focus, .search-field select:focus, .field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(244,118,33,.78);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,118,33,.12);
}
.search-message, .form-success { display: none; padding: 12px 14px; border-radius: 10px; background: rgba(21,151,101,.12); color: #0f6a45; font-weight: 900; border: 1px solid rgba(21,151,101,.2); }
.search-card.is-success .search-message, .form.is-success .form-success { display: block; }
.booking-copy h2 { font-size: clamp(1.55rem, 4vw, 2.35rem); }
.booking-copy p, .booking-note { margin: 0; }
.booking-note { color: var(--green); font-weight: 850; font-size: .9rem; }
.quick-booking {
  margin-top: 0;
}
.booking-shell {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(223,231,235,.92);
  box-shadow: 0 28px 90px rgba(13,22,31,.18);
  position: relative;
  overflow: hidden;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.booking-sidebar {
  padding: 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(244,118,33,.2), transparent 34%),
    linear-gradient(135deg, var(--navy), #101f2c);
  color: #fff;
}
.booking-sidebar h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}
.booking-sidebar p {
  color: rgba(255,255,255,.74);
}
.booking-assurance {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}
.booking-assurance span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  font-size: .84rem;
  font-weight: 900;
}
.booking-console.search-card {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 24px;
  animation: none;
}
.booking-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.booking-console-head strong {
  color: var(--navy);
  font-size: 1.1rem;
}
.booking-console-head span {
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  text-align: right;
}
.booking-fields {
  display: grid;
  gap: 14px;
}
.booking-submit-row {
  display: grid;
  gap: 12px;
  align-items: center;
}

.section { padding: 84px 0; }
.section.soft { background: var(--soft); border-block: 1px solid #e2d8ca; }
.section.dark { background: radial-gradient(circle at 14% 10%, rgba(244,118,33,.2), transparent 30%), linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.04rem; }

.grid { display: grid; gap: 20px; }
.venue-grid, .card-grid, .program-grid, .event-grid, .product-grid, .gallery-grid, .testimonial-grid, .pricing-grid, .contact-grid, .coach-grid { display: grid; gap: 20px; }
.venue-card, .image-card, .event-card, .product-card, .testimonial, .price-card, .contact-card, .coach-card, .form, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.venue-card, .image-card, .event-card, .product-card, .contact-card, .coach-card, .testimonial, .price-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  will-change: transform;
}
.venue-card:hover, .image-card:hover, .event-card:hover, .product-card:hover, .contact-card:hover, .coach-card:hover, .testimonial:hover, .price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,118,33,.24);
  box-shadow: var(--shadow);
}
.card-img { height: 230px; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.56)), var(--img) center/cover; background-size: auto, cover; position: relative; transition: background-size .35s ease; }
.venue-card:hover .card-img, .image-card:hover .card-img, .product-card:hover .card-img, .coach-card:hover .card-img {
  background-size: auto, 108%;
}
.card-img .badge { position: absolute; left: 16px; bottom: 16px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 2px; background: rgba(255,255,255,.92); color: var(--navy); font-family: var(--font-ui); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.badge.orange { background: #fff0e6; color: #b84e0b; }
.badge.green { background: #e9f7f1; color: #0d6f49; }
.badge.blue { background: #e8f1fc; color: #13569d; }
.card-body { padding: 20px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; color: var(--muted); font-size: .88rem; }
.meta span { padding: 6px 9px; border-radius: 99px; background: #f1f5f7; }

.split { display: grid; gap: 34px; align-items: center; }
.media {
  min-height: 430px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.46)), var(--img) center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.media-note { position: absolute; left: 18px; bottom: 18px; max-width: 280px; padding: 14px; border-radius: 12px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }
.media-note strong { display: block; margin-bottom: 4px; }
.media-note span { color: var(--muted); font-size: .9rem; }
.feature-list { display: grid; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.feature-list li { padding: 12px 14px 12px 40px; border: 1px solid rgba(21,151,101,.16); border-radius: 10px; background: rgba(21,151,101,.08); position: relative; font-weight: 780; }
.feature-list li:before { content: ""; position: absolute; left: 15px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.dark .feature-list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.icon-feature-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0 24px;
}
.icon-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.icon-feature:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), var(--green));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .22s ease;
}
.icon-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(244,118,33,.28);
  box-shadow: var(--shadow);
}
.icon-feature:hover:before { transform: scaleY(1); }
.icon-feature-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff4ec;
  color: var(--orange);
  border: 1px solid rgba(244,118,33,.18);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(244,118,33,.12);
}
.icon-feature h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}
.icon-feature p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
}
.choice-grid {
  display: grid;
  gap: 16px;
}
.choice-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.choice-card:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--green));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .24s ease;
}
.choice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,118,33,.26);
  box-shadow: var(--shadow);
}
.choice-card:hover:before { transform: scaleY(1); }
.choice-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}
.choice-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff4ec;
  border: 1px solid rgba(244,118,33,.16);
  position: relative;
  box-shadow: 0 12px 28px rgba(13,22,31,.08);
}
.choice-icon:before,
.choice-icon:after {
  content: "";
  position: absolute;
  display: block;
}
.icon-ground:before {
  width: 30px;
  height: 20px;
  border: 2px solid var(--orange);
}
.icon-ground:after {
  width: 12px;
  height: 7px;
  border: 2px solid var(--green);
  border-top: 0;
  bottom: 18px;
}
.icon-booking:before {
  width: 28px;
  height: 30px;
  border: 2px solid var(--orange);
  border-radius: 2px;
}
.icon-booking:after {
  width: 16px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 7px 0 var(--green);
}
.icon-academy:before {
  width: 30px;
  height: 18px;
  border: 2px solid var(--orange);
  transform: skewX(-16deg);
}
.icon-academy:after {
  width: 22px;
  height: 2px;
  background: var(--green);
  top: 35px;
}
.icon-events:before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.icon-events:after {
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.icon-premium:before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--orange);
  transform: rotate(45deg);
}
.icon-premium:after {
  width: 10px;
  height: 10px;
  background: var(--green);
  transform: rotate(45deg);
}
.icon-respect:before {
  width: 28px;
  height: 22px;
  border: 2px solid var(--orange);
  border-radius: 14px 14px 4px 4px;
}
.icon-respect:after {
  width: 18px;
  height: 2px;
  background: var(--green);
  top: 34px;
}

.trust-band { display: grid; gap: 18px; padding: 24px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.trust-item strong { display: block; font-size: 1.35rem; color: var(--navy); }
.trust-item span { color: var(--muted); }
.about-home {
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
  position: relative;
  overflow: hidden;
}
.about-home:before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(22,104,199,.11), transparent 65%);
  pointer-events: none;
}
.about-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.about-story .lead {
  color: #384653;
  font-size: 1.1rem;
  font-weight: 650;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.about-visual {
  min-height: 470px;
  position: relative;
}
.about-image {
  min-height: 470px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18)),
    var(--img) center/cover;
  box-shadow: var(--shadow);
}
.about-scorecard {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.about-scorecard strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
  font-size: 1.08rem;
}
.about-scorecard span {
  color: var(--muted);
  font-size: .92rem;
}
.about-feature-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.about-feature-panel div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fbfcfd;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.about-feature-panel div:hover {
  transform: translateY(-4px);
  border-color: rgba(244,118,33,.28);
  box-shadow: var(--shadow-sm);
}
.about-feature-panel strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 3px;
}
.about-feature-panel div > span:not(.about-icon) {
  grid-column: 2;
  color: var(--muted);
  font-size: .84rem;
}
.about-icon {
  --icon-main: var(--orange);
  --icon-sub: var(--green);
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: block;
  background: #fff4ec;
  border: 1px solid rgba(244,118,33,.18);
  position: relative;
  box-shadow: 0 10px 24px rgba(244,118,33,.1);
}
.facility-icon { --icon-main: var(--orange); --icon-sub: var(--green); background: #fff4ec; }
.environment-icon { --icon-main: var(--blue); --icon-sub: var(--orange); background: #eef6ff; }
.coach-icon { --icon-main: var(--green); --icon-sub: var(--blue); background: #eefaf5; }
.booking-icon { --icon-main: var(--orange); --icon-sub: var(--blue); background: #fff4ec; }
.safe-icon { --icon-main: var(--green); --icon-sub: var(--orange); background: #eefaf5; }
.event-icon { --icon-main: var(--blue); --icon-sub: var(--green); background: #eef6ff; }
.about-icon:before,
.about-icon:after {
  content: "";
  position: absolute;
  display: block;
}
.facility-icon:before {
  width: 28px;
  height: 18px;
  left: 10px;
  top: 15px;
  border: 2px solid var(--icon-main);
}
.facility-icon:after {
  width: 12px;
  height: 6px;
  left: 18px;
  top: 22px;
  border: 2px solid var(--icon-sub);
  border-top: 0;
}
.environment-icon:before {
  width: 28px;
  height: 22px;
  left: 10px;
  top: 14px;
  border: 2px solid var(--icon-main);
}
.environment-icon:after {
  width: 20px;
  height: 2px;
  left: 15px;
  top: 21px;
  background: var(--icon-sub);
  box-shadow: 0 7px 0 var(--icon-sub);
}
.coach-icon:before {
  width: 17px;
  height: 17px;
  left: 16px;
  top: 9px;
  border: 2px solid var(--icon-main);
  border-radius: 50%;
}
.coach-icon:after {
  width: 26px;
  height: 14px;
  left: 11px;
  top: 29px;
  border: 2px solid var(--icon-sub);
  border-radius: 16px 16px 0 0;
}
.booking-icon:before {
  width: 26px;
  height: 28px;
  left: 11px;
  top: 11px;
  border: 2px solid var(--icon-main);
}
.booking-icon:after {
  width: 15px;
  height: 2px;
  left: 18px;
  top: 22px;
  background: var(--icon-sub);
  box-shadow: 0 7px 0 var(--icon-sub);
}
.safe-icon:before {
  width: 24px;
  height: 28px;
  left: 12px;
  top: 10px;
  border: 2px solid var(--icon-main);
  border-radius: 14px 14px 4px 4px;
}
.safe-icon:after {
  width: 13px;
  height: 7px;
  left: 19px;
  top: 22px;
  border-left: 2px solid var(--icon-sub);
  border-bottom: 2px solid var(--icon-sub);
  transform: rotate(-45deg);
}
.event-icon:before {
  width: 27px;
  height: 27px;
  left: 10px;
  top: 11px;
  border: 2px solid var(--icon-main);
  border-radius: 50%;
}
.event-icon:after {
  width: 13px;
  height: 13px;
  left: 19px;
  top: 20px;
  border: 2px solid var(--icon-sub);
  border-radius: 50%;
}
.facilities-showcase {
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(244,118,33,.22), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(21,151,101,.16), transparent 30%),
    linear-gradient(90deg, rgba(8,14,20,.94), rgba(8,14,20,.82)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
  border-block: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.facilities-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 76%);
  pointer-events: none;
}
.facilities-showcase .container {
  position: relative;
  z-index: 1;
}
.facilities-showcase .section-head p {
  color: rgba(255,255,255,.72);
}
.facility-grid {
  display: grid;
  gap: 18px;
  width: min(100%, 1140px);
  margin-inline: auto;
}
.facility-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: block;
  padding: 0;
  color: #fff;
  background: #071017;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  overflow: hidden;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.facility-image {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover;
  transform: scale(1.02);
  filter: saturate(.95) contrast(1.02);
  transition: transform .75s cubic-bezier(.2,.75,.18,1), filter .55s ease;
  will-change: transform;
}
.facility-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.12) 34%, rgba(0,0,0,.9)),
    linear-gradient(135deg, rgba(244,118,33,.26), transparent 42%);
  opacity: .92;
  transition: opacity .25s ease;
}
.facility-card > *:not(.facility-image) {
  position: relative;
  z-index: 2;
}
.facility-card .facility-image {
  position: absolute;
  z-index: 0;
}
.facility-overlay {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}
.facility-overlay span {
  color: rgba(255,255,255,.74);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.facility-overlay h3 {
  color: #fff;
  font-size: clamp(1.65rem, 4vw);
  margin: 0;
}
.facility-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 7px;
  border-bottom: 2px solid rgba(255,255,255,.7);
  background: transparent;
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .22s ease, color .22s ease, transform .22s ease;
}
.facility-card strong:after {
  content: "";
  width: 20px;
  height: 10px;
  background: linear-gradient(90deg, currentColor 0 70%, transparent 70%), linear-gradient(135deg, transparent 50%, currentColor 50%);
  background-size: 100% 2px, 9px 9px;
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.facility-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,118,33,.45);
  box-shadow: var(--shadow);
}
.facility-card:hover:before { opacity: .78; }
.facility-card:hover .facility-image {
  transform: scale(1.13) translate3d(-1.4%, -1.2%, 0);
  filter: saturate(1.08) contrast(1.08);
}
.facility-card:hover strong {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateX(6px);
}
.availability-grid, .stats-grid, .ground-grid, .academy-mini-grid {
  display: grid;
  gap: 16px;
}
.ground-showcase {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(244,118,33,.22), transparent 30%),
    linear-gradient(90deg, rgba(8,14,20,.94), rgba(8,14,20,.78)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
  position: relative;
  overflow: hidden;
}
.ground-showcase-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}
.ground-showcase-head p { color: rgba(255,255,255,.72); max-width: 620px; }
.ground-showcase-layout {
  display: grid;
  gap: 20px;
}
.ground-visual {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.36)),
    var(--img) center/cover;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 86px rgba(0,0,0,.28);
  overflow: hidden;
  position: relative;
}
.ground-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(244,118,33,.2), transparent 36%);
}
.ground-visual div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.ground-visual span,
.ground-type {
  display: inline-flex;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ground-visual strong {
  display: block;
  color: #fff;
  margin-top: 10px;
  font-size: clamp(1.8rem, 4vw, 1rem);
  line-height: 1.08;
}
.ground-card-stack {
  display: grid;
  gap: 20px;
}
.ground-card {
  color: var(--ink);
  padding: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 28px 76px rgba(0,0,0,.22);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.ground-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,118,33,.34);
  box-shadow: 0 34px 86px rgba(0,0,0,.28);
}
.ground-type.orange { color: var(--orange); }
.ground-card h3 {
  color: var(--navy);
  margin: 12px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.ground-card p {
  margin-bottom: 18px;
}
.ground-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ground-meta span {
  padding: 7px 10px;
  background: #f1f5f7;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}
.ground-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ground-price strong { color: var(--orange); }
.ground-price a {
  color: var(--navy);
  font-weight: 950;
  border-bottom: 2px solid var(--orange);
}
.academy-showcase {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
  overflow: hidden;
}
.academy-layout {
  display: grid;
  gap: 28px;
  align-items: stretch;
}
.academy-copy {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: center;
}
.academy-copy p { color: var(--muted); max-width: 620px; }
.academy-stats-row {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
}
.academy-stats-row div {
  padding: 14px;
  border: 1px solid var(--line);
  background: #fbfcfd;
}
.academy-stats-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1;
  margin-bottom: 5px;
}
.academy-stats-row span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.academy-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.academy-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.22)), var(--img) center/cover;
  transition: transform .75s cubic-bezier(.2,.75,.18,1);
}
.academy-visual:hover .academy-image { transform: scale(1.08); }
.academy-badge-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.academy-badge-card strong { display: block; color: var(--navy); margin-bottom: 5px; }
.academy-badge-card span { color: var(--muted); font-size: .9rem; }
.academy-program-panel {
  display: grid;
  gap: 0;
  background: #dfe7eb;
  border: 1px solid #dfe7eb;
}
.academy-program-panel article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 0;
  background: #fff;
  box-shadow: none;
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.academy-program-panel article:hover {
  transform: translateY(-2px);
  background: #fbfcfd;
}
.academy-program-panel h3 { color: var(--navy); font-size: 1.25rem; margin: 4px 0 6px; }
.academy-program-panel p { color: var(--muted); }
.academy-program-panel small {
  color: var(--orange);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.academy-program-panel article > strong {
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
}
.program-icon {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 0;
  border: 1px solid rgba(244,118,33,.18);
  background: #fff4ec;
  position: relative;
}
.program-icon:before, .program-icon:after { content: ""; position: absolute; display: block; }
.football-icon:before { width: 26px; height: 26px; border: 2px solid var(--orange); border-radius: 50%; left: 13px; top: 13px; }
.football-icon:after { width: 14px; height: 2px; background: var(--green); left: 20px; top: 26px; transform: rotate(45deg); }
.cricket-icon:before { width: 28px; height: 8px; background: var(--orange); left: 13px; top: 23px; transform: rotate(-35deg); }
.cricket-icon:after { width: 10px; height: 10px; border: 2px solid var(--green); border-radius: 50%; right: 12px; bottom: 12px; }
.availability-section {
      background: #fff;
}
.availability-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.availability-copy p { max-width: 560px; }
.availability-board {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.availability-board-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--navy);
  color: #fff;
}
.availability-board-head span { color: rgba(255,255,255,.64); font-size: .86rem; font-weight: 850; }
.availability-list { display: grid; }
.availability-card {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  transition: background .2s ease, transform .2s ease;
}
.availability-card:last-child { border-bottom: 0; }
.availability-card:hover { background: #fbfcfd; transform: translateX(4px); }
.availability-card strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 3px; }
.availability-card small { color: var(--muted); }
.availability-card em {
  font-style: normal;
  color: var(--green);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(21,151,101,.12);
}
.status-dot.evening { background: var(--orange); box-shadow: 0 0 0 5px rgba(244,118,33,.14); }
.status-dot.weekend { background: var(--blue); box-shadow: 0 0 0 5px rgba(22,104,199,.13); }
.status-dot.event { background: var(--violet); box-shadow: 0 0 0 5px rgba(167,70,199,.13); }
.academy-mini-grid article, .availability-card, .stat-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.availability-card strong, .stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.availability-card span, .stat-card span { color: var(--muted); }
.event-list, .shop-chip-grid, .contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.event-list span, .shop-chip-grid span, .contact-list span {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
}
.shop-chip-grid {
  justify-content: center;
  max-width: 840px;
  margin-inline: auto;
}
.center-actions { justify-content: center; }
.stats-section .stat-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  text-align: center;
}
.stats-section .stat-card strong {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.3rem);
}
.stats-section .stat-card span { color: rgba(255,255,255,.72); }
.cta-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,14,20,.92), rgba(8,14,20,.72)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 20%, rgba(244,118,33,.28), transparent 34%);
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.76);
}
.contact-home {
  background: #fff;
}
.contact-copy p { max-width: 600px; }
.contact-card-grid {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}
.contact-info-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,118,33,.28);
  box-shadow: var(--shadow);
}
.contact-info-card strong {
  display: block;
  color: var(--navy);
  font-size: .98rem;
  word-break: break-word;
}
.contact-info-card small {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.contact-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-mini-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(16,31,43,.06);
}
.contact-icon {
  width: 52px;
  height: 52px;
  display: block;
  background: #fff4ec;
  border: 1px solid rgba(244,118,33,.18);
  position: relative;
  box-shadow: 0 10px 24px rgba(244,118,33,.12);
}
.contact-icon:before,
.contact-icon:after {
  content: "";
  position: absolute;
  display: block;
}
.location-icon:before {
  width: 20px;
  height: 20px;
  left: 15px;
  top: 10px;
  border: 2px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.location-icon:after {
  width: 6px;
  height: 6px;
  left: 23px;
  top: 18px;
  background: var(--green);
  border-radius: 50%;
}
.phone-icon:before {
  width: 25px;
  height: 25px;
  left: 13px;
  top: 13px;
  border: 2px solid var(--orange);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}
.phone-icon:after {
  width: 9px;
  height: 2px;
  left: 28px;
  top: 15px;
  background: var(--green);
  box-shadow: -15px 22px 0 var(--green);
}
.email-icon:before {
  width: 28px;
  height: 20px;
  left: 12px;
  top: 16px;
  border: 2px solid var(--orange);
}
.email-icon:after {
  width: 18px;
  height: 18px;
  left: 17px;
  top: 12px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.hours-icon:before {
  width: 28px;
  height: 28px;
  left: 12px;
  top: 12px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.hours-icon:after {
  width: 11px;
  height: 9px;
  left: 25px;
  top: 18px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}
.partner-logo-section {
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}
.partner-logo-section .section-head {
  margin-bottom: 28px;
}
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.partner-logo-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(19,29,47,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,35,52,.2);
  box-shadow: 0 20px 50px rgba(15,23,42,.11);
}
.partner-logo-card img {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.events-showcase {
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(244,118,33,.22), transparent 32%),
    linear-gradient(90deg, rgba(8,14,20,.94), rgba(8,14,20,.8)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
  position: relative;
  overflow: hidden;
}
.events-head {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: 34px;
}
.events-head p {
  color: rgba(255,255,255,.72);
  max-width: 520px;
}
.events-layout {
  display: grid;
  gap: 18px;
}
.event-feature {
  min-height: 520px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #071017;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}
.event-feature-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.34)), var(--img) center/cover;
  transform: scale(1.02);
  transition: transform .75s cubic-bezier(.2,.75,.18,1);
}
.event-feature:hover .event-feature-image { transform: scale(1.1); }
.event-feature-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 30px;
}
.event-feature-content span,
.event-mini span {
  color: var(--orange);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-feature h3 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 10px 0 12px;
}
.event-feature p { color: rgba(255,255,255,.74); }
.event-mini-grid {
  display: grid;
  gap: 18px;
}
.event-mini {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 54px rgba(0,0,0,.18);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.event-mini:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.12);
  border-color: rgba(244,118,33,.35);
}
.event-mini h3 {
  color: #fff;
  margin: 10px 0 8px;
  font-size: 1.25rem;
}
.event-mini small {
  color: rgba(255,255,255,.65);
  font-weight: 850;
}
.shop-showcase {
  background:#fff;
}
.shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}
.shop-head p { max-width: 620px; }
.shop-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.shop-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.shop-controls button:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #fff;
}
.product-slider-viewport {
  overflow: hidden;
  padding: 4px 4px 24px;
}
.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  transition: transform .42s cubic-bezier(.2,.75,.18,1);
  will-change: transform;
}
.shop-product-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.shop-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,118,33,.28);
  box-shadow: var(--shadow);
}
.shop-product-image {
  display: block;
  height: 230px;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18)), var(--img) center/cover;
  transition: transform .6s cubic-bezier(.2,.75,.18,1);
}
.shop-product-card:hover .shop-product-image { transform: scale(1.06); }
.shop-product-body {
  padding: 20px;
}
.shop-product-body span {
  color: var(--orange);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.shop-product-body h3 {
  color: var(--navy);
  margin: 9px 0 9px;
}
.shop-product-body h3 a {
  color: inherit;
  transition: color .2s ease;
}
.shop-product-body h3 a:hover {
  color: var(--orange);
}
.shop-product-body p {
  font-size: .92rem;
}
.shop-product-body > a {
  display: inline-flex;
  margin-top: 5px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--orange);
}

.news-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
  overflow: hidden;
}
.news-head {
  display: grid;
  gap: 22px;
  align-items: end;
}
.news-head p { max-width: 720px; }
.news-grid {
  display: grid;
  gap: 22px;
}
.news-feature,
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.news-feature:hover,
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,118,33,.28);
  box-shadow: var(--shadow);
}
.news-image,
.news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--img) center/cover;
}
.news-image { min-height: 330px; }
.news-thumb {
  min-height: 150px;
  height: 100%;
}
.news-image:before,
.news-thumb:before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform .65s cubic-bezier(.2,.75,.18,1);
}
.news-image:after,
.news-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,14,20,.24));
}
.news-feature:hover .news-image:before,
.news-card:hover .news-thumb:before {
  transform: scale(1.08);
}
.news-body { padding: 28px; }
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.news-meta span { color: var(--orange); }
.news-feature h3,
.news-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}
.news-card h3 {
  font-size: 1.1rem;
  line-height: 1.16;
}
.news-feature h3 a:hover,
.news-card h3 a:hover { color: var(--orange); }
.news-list {
  display: grid;
  gap: 16px;
}
.news-card {
  display: grid;
  overflow: hidden;
}
.news-card > div { padding: 20px; }
.news-card p {
  margin-bottom: 0;
  font-size: .94rem;
}

.club-intro {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid #e1d8cb;
}
.club-kicker {
  color: var(--orange);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.club-intro h2 { max-width: 720px; }
.club-intro p { max-width: 590px; font-size: 1.08rem; }
.club-intro .hero-actions { margin-top: 22px; }
.club-notice {
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.club-notice strong { display: block; margin-bottom: 8px; color: var(--navy); }
.club-notice span { color: var(--muted); }
.club-intro-media {
  min-height: 380px;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.46)), var(--img) center/cover;
  box-shadow: var(--shadow);
  position: relative;
}
.club-intro-media:after {
  content: "Unite Sports";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.club-activities {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(244,118,33,.24), transparent 30%),
    linear-gradient(90deg, rgba(8,14,20,.92), rgba(8,14,20,.78)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
  position: relative;
  overflow: hidden;
}
.club-activities .section-head {
  max-width: 860px;
}
.club-activities .section-head p {
  color: rgba(255,255,255,.72);
}
.club-link-grid {
  display: grid;
  gap: 18px;
}
.club-link {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  background: #09131c;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.club-link-image {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover;
  transform: scale(1.02);
  transform-origin: center;
  filter: saturate(.94) contrast(1.02);
  transition: transform .75s cubic-bezier(.2,.75,.18,1), filter .55s ease;
  will-change: transform;
}
.club-link:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244,118,33,.28), transparent 44%),
    linear-gradient(180deg, transparent 42%, rgba(13,24,34,.9));
  opacity: .7;
  transition: opacity .28s ease;
}
.club-link:after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.55), transparent);
  opacity: .62;
}
.club-link-top,
.club-link-content,
.club-link-cta {
  position: relative;
  z-index: 1;
}
.club-link-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.club-link-top span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .8rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.club-link-top small {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 950;
  text-align: right;
}
.club-link-content {
  align-self: end;
}
.club-link h3 { margin: 0 0 12px; color: #fff; font-size: clamp(1.8rem, 4vw, 2.55rem); }
.club-link p { max-width: 320px; color: rgba(255,255,255,.74); margin: 0; }
.club-link-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.club-link-meta strong {
  padding: 7px 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.84);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.club-link-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: .92;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.club-link-cta:after {
  content: "";
  width: 18px;
  height: 10px;
  background: linear-gradient(90deg, currentColor 0 70%, transparent 70%), linear-gradient(135deg, transparent 50%, currentColor 50%);
  background-size: 100% 2px, 9px 9px;
  background-position: left center, right center;
  background-repeat: no-repeat;
}
.club-link:hover {
  transform: translateY(-8px);
  border-color: rgba(244,118,33,.42);
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}
.club-link:hover:before { opacity: .95; }
.club-link:hover .club-link-image {
  transform: scale(1.12) translate3d(-1.4%, -1.2%, 0);
  filter: saturate(1.08) contrast(1.08);
}
.club-link:hover .club-link-cta {
  transform: translateY(0);
  background: var(--orange);
  color: #fff;
}

.hours-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid #e2d8ca;
  box-shadow: var(--shadow-sm);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee7dd;
}
.hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-row strong { color: var(--navy); }
.hours-row span { color: var(--muted); }

.partner-strip {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.partner-logo {
  min-height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.76);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form { display: grid; gap: 16px; padding: 24px; }
.form .form-row { display: grid; gap: 16px; }
.sport-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.field textarea { min-height: 128px; resize: vertical; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-btn { border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: 10px 14px; font-weight: 900; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; }

.faq { display: grid; gap: 12px; }
.faq-item button { width: 100%; padding: 18px; border: 0; background: #fff; color: var(--ink); text-align: left; font-weight: 950; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; }
.faq-item button:after { content: "+"; color: var(--orange); }
.faq-item.open button:after { content: "-"; }
.faq-item p { display: none; padding: 0 18px 18px; margin: 0; }
.faq-item.open p { display: block; }

.gallery-grid.masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-item { min-height: 230px; border-radius: 16px; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(0,0,0,.72)), var(--img) center/cover; position: relative; box-shadow: var(--shadow-sm); }
.gallery-item.tall { min-height: 340px; }
.gallery-item span { position: absolute; left: 16px; bottom: 16px; color: #fff; font-weight: 950; }

.page-hero {
  padding: 118px 0 92px;
  color: #fff;
  background: linear-gradient(90deg, rgba(13,20,28,.9), rgba(13,20,28,.58)), var(--img, url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84")) center/cover;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: -34% -10% auto auto;
  width: 480px;
  height: 480px;
  z-index: -1;
  background: radial-gradient(circle, rgba(244,118,33,.28), transparent 62%);
  filter: blur(8px);
  animation: heroGlow 12s ease-in-out infinite alternate;
}
.page-hero .container { max-width: var(--max); }
.page-hero h1 { max-width: 820px; }

.site-footer { background: #0d141b; color: #fff; padding: 66px 0 24px; border-top: 4px solid var(--orange); }
.footer-grid { display: grid; gap: 28px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer a:hover { color: #fff; }
.footer-brand {
  width: fit-content;
  max-width: 230px;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.footer-brand img {
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  filter: none;
}
.footer-brand span {
  display: none;
}
.footer-links { display: grid; gap: 9px; }
.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.76);
  font-weight: 760;
  line-height: 1.35;
}
.footer-contact-item:hover { color: #fff; }
.footer-icon,
.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.footer-icon:before,
.footer-icon:after,
.social-icon:before,
.social-icon:after {
  content: "";
  position: absolute;
  display: block;
}
.footer-location-icon:before {
  width: 12px;
  height: 12px;
  top: 7px;
  left: 10px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.footer-location-icon:after {
  width: 4px;
  height: 4px;
  top: 11px;
  left: 14px;
  background: rgba(255,255,255,.88);
  border-radius: 50%;
}
.footer-phone-icon:before {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,.88);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 11px;
  transform: rotate(-26deg);
}
.footer-email-icon:before {
  width: 17px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.88);
}
.footer-email-icon:after {
  width: 11px;
  height: 11px;
  border-left: 2px solid rgba(255,255,255,.88);
  border-bottom: 2px solid rgba(255,255,255,.88);
  transform: rotate(-45deg);
  top: 9px;
}
.footer-time-icon:before {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
}
.footer-time-icon:after {
  width: 7px;
  height: 5px;
  border-left: 2px solid rgba(255,255,255,.88);
  border-bottom: 2px solid rgba(255,255,255,.88);
  top: 10px;
  left: 16px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}
.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(244,118,33,.46);
  background: rgba(244,118,33,.16);
}
.social-facebook:before {
  content: "f";
  position: static;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 950;
  color: #fff;
}
.social-instagram:before {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 5px;
}
.social-instagram:after {
  width: 5px;
  height: 5px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.social-tiktok:before {
  width: 9px;
  height: 17px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0 0 0 8px;
  transform: translateX(2px);
}
.social-tiktok:after {
  width: 9px;
  height: 3px;
  background: #fff;
  top: 9px;
  right: 8px;
}
.social-youtube:before {
  width: 19px;
  height: 14px;
  background: #fff;
  border-radius: 4px;
}
.social-youtube:after {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #0d141b;
  left: 15px;
}

.choice-icon,
.about-icon,
.program-icon,
.contact-icon {
  background: #fff4ec;
  border-color: rgba(244,118,33,.16);
}

.footer-icon,
.social-icon {
  background: rgba(255,255,255,.07);
}

.choice-icon,
.about-icon,
.program-icon,
.contact-icon,
.footer-icon,
.social-icon {
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.choice-icon:before,
.about-icon:before,
.program-icon:before,
.contact-icon:before,
.footer-icon:before,
.social-icon:before {
  position: static;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  font-family: "Font Awesome 6 Free";
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
}

.about-icon:before,
.program-icon:before,
.contact-icon:before {
  color: var(--icon-main, var(--orange));
}

.footer-icon:before,
.social-icon:before {
  color: #fff;
  font-size: .98rem;
}

.choice-icon:after,
.about-icon:after,
.program-icon:after,
.contact-icon:after,
.footer-icon:after,
.social-icon:after {
  content: none;
  display: none;
}

.icon-ground:before,
.facility-icon:before,
.football-icon:before { content: "\f1e3"; }
.icon-booking:before,
.booking-icon:before { content: "\f274"; }
.icon-academy:before { content: "\f19d"; }
.icon-events:before,
.event-icon:before { content: "\f091"; }
.icon-premium:before { content: "\f005"; }
.icon-respect:before { content: "\f2b5"; }
.environment-icon:before { content: "\f015"; }
.coach-icon:before { content: "\f51c"; }
.safe-icon:before { content: "\f3ed"; }
.cricket-icon:before { content: "\f433"; }
.location-icon:before,
.footer-location-icon:before { content: "\f3c5"; }
.phone-icon:before,
.footer-phone-icon:before { content: "\f095"; }
.email-icon:before,
.footer-email-icon:before { content: "\f0e0"; }
.hours-icon:before,
.footer-time-icon:before { content: "\f017"; }

.social-icon:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
.social-facebook:before { content: "\f39e"; }
.social-instagram:before { content: "\f16d"; }
.social-tiktok:before { content: "\e07b"; }
.social-youtube:before { content: "\f167"; }

.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input { min-width: 0; flex: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; padding: 11px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); }

.reveal { opacity: 0; transform: translateY(22px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }

.index-logo-theme {
  --orange: #e62334;
  --green: #ffbf3f;
  --blue: #1b345b;
  --violet: #7c3aed;
  --navy: #131d2f;
  --navy-2: #142033;
  --soft: #f4f6fa;
  --soft-2: #e9edf5;
  --line: rgba(19,29,47,.1);
  --shadow: 0 24px 72px rgba(15,23,42,.14);
  --shadow-sm: 0 12px 34px rgba(15,23,42,.09);
}

.index-logo-theme .site-header {
  border-bottom-color: rgba(19,29,47,.1);
  box-shadow: 0 12px 38px rgba(15,23,42,.1);
}

.index-logo-theme .top-announcement {
  background: linear-gradient(90deg, #08101e, #1b345b);
}

.index-logo-theme .top-announcement-actions a,
.index-logo-theme .nav a:hover,
.index-logo-theme .nav a.active,
.index-logo-theme .site-header.scrolled .nav a:hover,
.index-logo-theme .site-header.scrolled .nav a.active,
.index-logo-theme .site-header.is-sticky .nav a:hover,
.index-logo-theme .site-header.is-sticky .nav a.active {
  color: #e62334;
}

.index-logo-theme .btn.primary {
  background: #e62334;
  box-shadow: 0 16px 36px rgba(230,35,52,.28);
}

.index-logo-theme .btn.dark {
  background: #131d2f;
}

.index-logo-theme .home-hero .eyebrow:before,
.index-logo-theme .slider-dots button.active:after,
.index-logo-theme .status-dot,
.index-logo-theme .feature-list li:before {
  background: #e62334;
}

.index-logo-theme .eyebrow {
  color: #e62334;
}

.index-logo-theme .eyebrow:before,
.index-logo-theme .choice-card:before,
.index-logo-theme .icon-feature:before {
  background: linear-gradient(90deg, #e62334, #ffbf3f);
}

.index-logo-theme .hero-slider {
  background: #f4f6fa;
}

.index-logo-theme .hero-slide {
  background:
    linear-gradient(180deg, rgba(8,16,30,.08), rgba(8,16,30,.06)),
    linear-gradient(90deg, rgba(8,16,30,.48) 0%, rgba(19,29,47,.24) 48%, rgba(19,29,47,.03) 78%),
    var(--bg) center/cover;
}

.index-logo-theme .hero-slide.active .hero-inner {
  opacity: 1;
  transform: none;
}


.index-logo-theme .hero-slide:after {
  background: linear-gradient(180deg, transparent, rgba(8,16,30,.12));
}

.index-logo-theme .home-hero h1 {
  color: #fff;
  text-shadow: 0 16px 42px rgba(8,16,30,.46);
}

.index-logo-theme .home-hero .hero-inner > p {
  color: rgba(255,255,255,.88);
  text-shadow: 0 10px 28px rgba(8,16,30,.36);
}

.index-logo-theme .home-hero .btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(8,16,30,.34);
}

.index-logo-theme .slider-dots button {
  background: rgba(255,255,255,.34);
}

.index-logo-theme .slider-dots button:hover,
.index-logo-theme .slider-dots button.active {
  background: rgba(230,35,52,.22);
}

.index-logo-theme .search-field input:focus,
.index-logo-theme .search-field select:focus,
.index-logo-theme .field input:focus,
.index-logo-theme .field select:focus,
.index-logo-theme .field textarea:focus {
  border-color: rgba(230,35,52,.58);
  box-shadow: 0 0 0 4px rgba(230,35,52,.1);
}

.index-logo-theme .search-message,
.index-logo-theme .form-success {
  background: rgba(255,191,63,.16);
  color: #7a4c00;
  border-color: rgba(255,191,63,.32);
}

.index-logo-theme .booking-note,
.index-logo-theme .availability-card em,
.index-logo-theme .ground-price strong,
.index-logo-theme .ground-type.orange,
.index-logo-theme .news-meta span,
.index-logo-theme .news-card h3 a:hover,
.index-logo-theme .text-link,
.index-logo-theme .faq-item button:after {
  color: #e62334;
}

.index-logo-theme .choice-icon,
.index-logo-theme .about-icon,
.index-logo-theme .program-icon,
.index-logo-theme .contact-icon {
  background: #fff2f3;
  border-color: rgba(230,35,52,.16);
  box-shadow: 0 10px 24px rgba(230,35,52,.1);
}

.index-logo-theme .choice-icon:before,
.index-logo-theme .about-icon:before,
.index-logo-theme .program-icon:before,
.index-logo-theme .contact-icon:before {
  color: #e62334;
}

.index-logo-theme .facility-icon,
.index-logo-theme .booking-icon {
  --icon-main: #e62334;
  --icon-sub: #ffbf3f;
}

.index-logo-theme .coach-icon,
.index-logo-theme .safe-icon {
  --icon-main: #ffbf3f;
  --icon-sub: #e62334;
}

.index-logo-theme .event-icon,
.index-logo-theme .environment-icon {
  --icon-main: #1b345b;
  --icon-sub: #e62334;
}

.index-logo-theme .facilities-showcase,
.index-logo-theme .events-showcase,
.index-logo-theme .cta-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(230,35,52,.16), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(255,191,63,.11), transparent 28%),
    linear-gradient(90deg, rgba(4,10,20,.9), rgba(8,16,30,.78)),
    var(--img, url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84")) center/cover;
}

.index-logo-theme .club-showcase,
.index-logo-theme .stats-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(230,35,52,.1), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(255,191,63,.08), transparent 28%),
    linear-gradient(90deg, rgba(8,16,30,.62), rgba(27,52,91,.36)),
    var(--img, url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84")) center/cover;
}

.index-logo-theme .facilities-showcase .section-head p,
.index-logo-theme .events-showcase .events-head p,
.index-logo-theme .cta-section p {
  color: rgba(255,255,255,.82);
}

.index-logo-theme .ground-showcase,
.index-logo-theme .academy-showcase,
.index-logo-theme .shop-showcase,
.index-logo-theme .news-section,
.index-logo-theme .contact-home,
.index-logo-theme .availability-section,
.index-logo-theme .about-home {
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}

.index-logo-theme .event-mini:hover,
.index-logo-theme .contact-info-card:hover,
.index-logo-theme .about-feature-panel div:hover,
.index-logo-theme .choice-card:hover,
.index-logo-theme .icon-feature:hover {
  border-color: rgba(230,35,52,.24);
}

.index-logo-theme .status-dot.evening {
  background: #ffbf3f;
  box-shadow: 0 0 0 5px rgba(255,191,63,.14);
}

.index-logo-theme .status-dot.weekend {
  background: #1b345b;
  box-shadow: 0 0 0 5px rgba(27,52,91,.12);
}

.index-logo-theme .status-dot.event {
  background: #7c3aed;
  box-shadow: 0 0 0 5px rgba(124,58,237,.13);
}

.index-logo-theme .site-footer {
  background: #08101e;
  border-top-color: #e62334;
}

.index-logo-theme .social-icon:hover {
  border-color: rgba(230,35,52,.46);
  background: rgba(230,35,52,.16);
}

.index-logo-theme .booking-sidebar {
  background:
    radial-gradient(circle at 92% 12%, rgba(230,35,52,.18), transparent 34%),
    linear-gradient(135deg, #08101e, #142033);
}

.index-logo-theme .venue-card:hover,
.index-logo-theme .image-card:hover,
.index-logo-theme .event-card:hover,
.index-logo-theme .product-card:hover,
.index-logo-theme .contact-card:hover,
.index-logo-theme .coach-card:hover,
.index-logo-theme .testimonial:hover,
.index-logo-theme .price-card:hover,
.index-logo-theme .facility-card:hover,
.index-logo-theme .ground-card:hover,
.index-logo-theme .shop-product-card:hover,
.index-logo-theme .news-card:hover {
  border-color: rgba(230,35,52,.24);
}

.index-logo-theme .badge.orange {
  background: #fff2f3;
  color: #e62334;
}

.index-logo-theme .badge.green {
  background: #fff8e5;
  color: #9b6500;
}

.index-logo-theme .feature-list li {
  border-color: rgba(230,35,52,.16);
  background: rgba(230,35,52,.07);
}

.index-logo-theme .icon-feature-mark {
  background: #fff2f3;
  color: #e62334;
  border-color: rgba(230,35,52,.18);
  box-shadow: 0 10px 24px rgba(230,35,52,.1);
}

.index-logo-theme .facility-card:before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(8,16,30,.05) 34%, rgba(8,16,30,.52)),
    linear-gradient(135deg, rgba(230,35,52,.12), transparent 42%);
}

.index-logo-theme .facility-card:hover strong {
  color: #ffbf3f;
  border-color: #ffbf3f;
}

.index-logo-theme .ground-showcase {
  background:
    radial-gradient(circle at 78% 18%, rgba(230,35,52,.1), transparent 30%),
    linear-gradient(90deg, rgba(8,16,30,.62), rgba(27,52,91,.36)),
    url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1800&q=84") center/cover;
}

.index-logo-theme .ground-visual:before {
  background: radial-gradient(circle at 18% 18%, rgba(230,35,52,.18), transparent 36%);
}

.index-logo-theme .program-icon {
  background: #fff2f3;
  border-color: rgba(230,35,52,.18);
}

.index-logo-theme .cta-section:before {
  background: radial-gradient(circle at 24% 20%, rgba(230,35,52,.1), transparent 34%);
}

.index-logo-theme .event-feature-content span,
.index-logo-theme .event-mini span,
.index-logo-theme .shop-product-body span,
.index-logo-theme .availability-board-head span {
  color: #ffbf3f;
}

.index-logo-theme .event-mini:hover {
  border-color: rgba(255,191,63,.35);
}

.index-logo-theme .shop-controls button:hover {
  border-color: rgba(230,35,52,.35);
  background: rgba(230,35,52,.1);
}

@keyframes pageLoad {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroStagger {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-42px, 34px, 0) scale(1.12); }
}
@keyframes heroSheen {
  0%, 58% { transform: translateX(-22%); opacity: 0; }
  72% { opacity: .62; }
  100% { transform: translateX(22%); opacity: 0; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes bookingLift {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes formStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 700px) {
  .search-card { grid-template-columns: 1fr 1fr 1fr 1fr auto; align-items: end; }
  .quick-booking .search-card { grid-template-columns: none; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-fields { grid-template-columns: repeat(2, 1fr); }
  .booking-submit-row { grid-template-columns: auto 1fr; }
  .booking-copy, .search-message, .booking-note { grid-column: 1 / -1; }
  .hero-stats, .trust-band { grid-template-columns: repeat(4, 1fr); }
  .icon-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid, .card-grid, .program-grid, .event-grid, .product-grid, .testimonial-grid, .pricing-grid, .contact-grid, .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid, .choice-grid, .availability-grid, .stats-grid, .ground-grid, .academy-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-program-panel { grid-template-columns: repeat(2, 1fr); }
  .academy-stats-row { grid-template-columns: repeat(3, 1fr); }
  .news-head { grid-template-columns: 1fr auto; }
  .news-card { grid-template-columns: 190px 1fr; }
  .availability-layout { grid-template-columns: .85fr 1.15fr; }
  .events-head { grid-template-columns: 1fr .8fr; }
  .contact-card-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ground-showcase-head { max-width: 760px; }
  .form .form-row { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr 1fr; }
  .about-feature-panel { grid-template-columns: repeat(2, 1fr); grid-column: 1 / -1; }
  .gallery-grid.masonry { grid-template-columns: repeat(4, 1fr); }
  .gallery-item.tall { grid-row: span 2; }
  .club-link-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-strip { grid-template-columns: 1.2fr repeat(4, 1fr); }
}
@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .nav { position: static; display: flex; align-items: center; gap: 10px; flex: 1 1 auto; justify-content: center; margin-left: 34px; padding: 0; border: 0; border-radius: 0; box-shadow: none; background: transparent; opacity: 1; pointer-events: auto; transform: none; }
  .nav a,
  .nav-link { font-size: .95rem; padding: 10px 11px; }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    display: block;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-dropdown-wide { min-width: 260px; }
  .nav-item.has-dropdown:before { display: block; }
  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown,
  .has-dropdown.open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .site-header .header-cta { display: none; }
  .split { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: .9fr 1.1fr; }
  .booking-console.search-card {
    grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
    align-items: end;
    gap: 16px;
    padding: 22px 24px;
  }
  .booking-console-head {
    grid-column: 1 / -1;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 2px;
  }
  .booking-fields,
  .booking-submit-row {
    display: contents;
  }
  .booking-submit-row .btn {
    min-width: 182px;
    white-space: nowrap;
  }
  .booking-submit-row .booking-note {
    display: none;
  }
  .booking-console .search-message {
    grid-column: 1 / -1;
  }
  .academy-layout { grid-template-columns: 1.05fr .95fr; }
  .academy-program-panel { grid-column: 1 / -1; }
  .news-grid { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
  .events-layout { grid-template-columns: 1.35fr .8fr; }
  .ground-showcase-layout { grid-template-columns: 1.2fr .8fr; }
  .venue-grid, .card-grid, .program-grid, .event-grid { grid-template-columns: repeat(4, 1fr); }
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid, .availability-grid { grid-template-columns: repeat(4, 1fr); }
  .partner-logo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .product-grid, .coach-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid, .testimonial-grid, .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr .9fr 1.2fr; }
  .club-intro { grid-template-columns: .9fr 1.1fr; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .top-announcement { display: none; }
  .site-header { padding-top: 0; }
  .nav-wrap { height: 70px; padding-inline: 0; border-radius: 0; }
  .site-header.scrolled .nav-wrap,
  .site-header.is-sticky .nav-wrap { height: 66px; border-radius: 0; }
  .nav { inset: 78px 14px auto; background: rgba(255,255,255,.98); }
  .site-header.scrolled .nav,
  .site-header.is-sticky .nav { inset-top: 72px; background: #fff; }
  .nav-link { width: 100%; text-align: left; }
  .nav-dropdown {
    display: none;
    gap: 2px;
    box-shadow: none;
    background: #f5fbfe;
  }
  .has-dropdown.open > .nav-dropdown,
  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown { display: grid; }
  .brand img { height: 56px; max-width: 154px; padding: 0; }
  .hero { min-height: auto; }
  .hero-slider { min-height: 730px; }
  .hero-inner { padding: 58px 0 102px; }
  .hero-slider .hero-inner { padding-top: 120px; padding-bottom: 150px; }
  .home-hero h1 { font-size: clamp(2.05rem, 10vw, 2.9rem); line-height: 1.08; }
  .home-hero .hero-inner > p { font-size: 1rem; line-height: 1.65; }
  .hero-actions .btn { width: 100%; }
  .shop-head { display: grid; }
  .product-slider { grid-auto-columns: 82%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-stat { padding: 11px; }
  .hero-stat span { display: none; }
  .search-panel { margin-top: -24px; }
  .quick-booking { margin-top: 0; }
  .section { padding: 62px 0; }
  .club-activities { padding: 72px 0; }
  .club-link { min-height: 300px; padding: 22px; }
  .club-link:after { left: 22px; right: 22px; bottom: 72px; }
  .club-link-top span { width: 38px; height: 38px; }
  .club-link-cta { transform: none; }
  .media { min-height: 310px; }
  .card-img { height: 210px; }
  .newsletter { display: grid; }
  .slider-controls { bottom: 44px; width: min(100% - 28px, var(--max)); }
  .slider-controls { justify-content: flex-start; }
  .slider-dots { gap: 9px; width: auto; }
  .slider-dots button { width: 42px; height: 4px; min-height: 0; padding: 0; }
  .slider-dots button.active { width: 66px; }
  .club-intro-media { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-slider:before, .hero-slide:after, .page-hero:after { display: none; }
}
