/* =========================================================================
   Advantage Padel - prototype
   Dark + light themes. One accent (lime) locked page-wide.
   Type: Space Grotesk (display) + Manrope (body).
   Imagery: real Advantage Padel photography (assets/).
   ========================================================================= */

:root {
  /* --- Dark theme (default) --- */
  --ink:        #0B0F0D;   /* page base */
  --ink-2:      #10160F;   /* elevated surface */
  --ink-3:      #171E15;   /* raised */
  --line:       rgba(233, 240, 224, 0.10);
  --line-2:     rgba(233, 240, 224, 0.20);

  --paper:      #F4F6EE;   /* primary text */
  --paper-dim:  rgba(244, 246, 238, 0.68);
  --paper-faint:rgba(244, 246, 238, 0.58);

  --accent:     #C6F24A;   /* lime fill - the single locked accent */
  --accent-2:   #B4E22E;
  --accent-fg:  #C6F24A;   /* lime used as text/icon (legible on dark) */
  --accent-ink: #0B0F0D;   /* text on accent fills */

  --court:      #2563d6;   /* brand court blue, used sparingly */

  /* constants that never flip (text over dark photos) */
  --on-dark:     #F5F7EF;
  --on-dark-dim: rgba(245, 247, 239, 0.74);

  --header-bg: rgba(11, 15, 13, 0.72);
  --shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.7);

  /* Type */
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --section-y: clamp(72px, 11vw, 160px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Light theme --- */
:root[data-theme="light"] {
  --ink:        #EAEEE0;
  --ink-2:      #FFFFFF;
  --ink-3:      #F4F7EC;
  --line:       rgba(14, 20, 8, 0.12);
  --line-2:     rgba(14, 20, 8, 0.22);

  --paper:      #14180F;
  --paper-dim:  rgba(20, 24, 15, 0.72);
  --paper-faint:rgba(20, 24, 15, 0.6);

  --accent:     #BEEA36;
  --accent-2:   #AcdD1f;
  --accent-fg:  #4b6a02;   /* darker lime for legible text on light */
  --accent-ink: #10160B;

  --header-bg: rgba(238, 241, 229, 0.78);
  --shadow: 0 24px 60px -34px rgba(30, 44, 8, 0.35);
}

/* No-JS / no explicit choice: honor system preference */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --ink:#EAEEE0; --ink-2:#FFFFFF; --ink-3:#F4F7EC;
    --line:rgba(14,20,8,0.12); --line-2:rgba(14,20,8,0.22);
    --paper:#14180F; --paper-dim:rgba(20,24,15,0.66); --paper-faint:rgba(20,24,15,0.46);
    --accent:#BEEA36; --accent-fg:#4b6a02; --accent-ink:#10160B;
    --header-bg:rgba(238,241,229,0.78);
  }
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent-fg); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-fg);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }

/* skip link + anchor offset for the fixed header */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: var(--accent-ink); padding: 0.7em 1.1em; border-radius: 10px; font-weight: 700; font-size: 0.9rem; transition: top 0.2s var(--ease); }
.skip-link:focus { top: 12px; }
[id] { scroll-margin-top: 90px; }
main:focus { outline: none; }
.h-display { font-size: clamp(2.9rem, 8.2vw, 6.4rem); line-height: 0.94; letter-spacing: -0.03em; font-weight: 500; }
.h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--paper-dim); max-width: 54ch; line-height: 1.55; }
.muted { color: var(--paper-dim); }
.accent-word { color: var(--accent-fg); }

/* --------------------------------------------------------------- buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95em 1.5em; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.25s var(--ease); }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 30px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-ghost { border: 1px solid var(--line-2); color: inherit; }
.btn-ghost:hover { border-color: var(--accent-fg); color: var(--accent-fg); transform: translateY(-2px); }
.btn-dark { background: var(--ink-3); color: var(--paper); border: 1px solid var(--line); }
.btn-dark:hover { border-color: var(--line-2); transform: translateY(-2px); }
.btn-app { padding-block: 0.7em; }
.btn-app svg { width: 1.4em; height: 1.4em; }
.btn-app:hover svg { transform: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; color: inherit; transition: gap 0.25s var(--ease), color 0.25s var(--ease); }
.link-arrow svg { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent-fg); gap: 0.75em; }

/* --------------------------------------------------------------- brand mark */
.brand { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.02em; color: inherit; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px; background: #0B0F0D;
  display: grid; place-items: center; overflow: hidden; flex: none;
  box-shadow: inset 0 0 0 1px rgba(198,242,74,0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.brand .mark img { width: 74%; height: 74%; object-fit: contain; }
.brand:hover .mark { transform: rotate(-6deg) scale(1.05); box-shadow: inset 0 0 0 1px rgba(198,242,74,0.6); }
.brand small { color: var(--paper-faint); font-family: var(--font-body); font-weight: 600; letter-spacing: 0.18em; font-size: 0.6rem; text-transform: uppercase; display: block; margin-top: 2px; }
.brand .brand-lines { line-height: 1; }

/* --------------------------------------------------------------- header */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; border-bottom: 1px solid transparent; transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease); }
.header.is-stuck { background: var(--header-bg); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }

/* header sits over dark hero: light text until stuck */
.header .brand, .header .nav-links a, .header .icon-btn { color: var(--on-dark); }
.header .brand small { color: rgba(245,247,239,0.6); }
.header.is-stuck .brand, .header.is-stuck .icon-btn { color: var(--paper); }
.header.is-stuck .brand small { color: var(--paper-faint); }
.header.is-stuck .nav-links a { color: var(--paper-dim); }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav-links a { position: relative; font-weight: 600; font-size: 0.95rem; padding-block: 6px; transition: color 0.2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.28s var(--ease); }
.nav-links a:hover { color: var(--accent-fg); }
.header:not(.is-stuck) .nav-links a:hover { color: var(--on-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { border-color: var(--accent-fg); color: var(--accent-fg); transform: translateY(-2px) rotate(12deg); }
.icon-btn .sun { display: none; }
:root[data-theme="light"] .icon-btn .sun { display: block; }
:root[data-theme="light"] .icon-btn .moon { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s 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); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--ink); padding: 110px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px; transform: translateY(-100%); transition: transform 0.5s var(--ease); visibility: hidden; }
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--paper); transition: color 0.2s var(--ease), padding-left 0.25s var(--ease); }
.mobile-menu a:hover { color: var(--accent-fg); padding-left: 8px; }
.mobile-menu .btn { margin-top: 22px; }

/* --------------------------------------------------------------- media */
.media { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--ink-3), var(--ink)); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(170deg, rgba(6,10,8,0.05) 30%, rgba(6,10,8,0.62) 100%); }
.court-lines { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; z-index: 1;
  background: linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0 / 25% 100%, linear-gradient(to bottom, var(--line) 1px, transparent 1px) 0 0 / 100% 33.33%;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 78%); mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 78%); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; padding-top: 74px; overflow: hidden; color: var(--on-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; transform: none; } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(6,9,7,0.55) 0%, rgba(6,9,7,0.2) 30%, rgba(6,9,7,0.55) 66%, var(--ink) 100%),
  radial-gradient(90% 70% at 82% 8%, rgba(198,242,74,0.16), transparent 58%); }
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 6vw, 88px); }
.hero-inner { max-width: 980px; }
.hero h1 { margin-top: 22px; color: var(--on-dark); }
.hero .eyebrow { color: var(--accent); }
.hero .lead { margin-top: 26px; max-width: 46ch; color: var(--on-dark-dim); }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { position: relative; z-index: 2; border-top: 1px solid rgba(245,247,239,0.16); margin-top: clamp(38px, 6vw, 70px); padding-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero-meta .stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 500; line-height: 1; color: var(--on-dark); }
.hero-meta .stat .num .accent-word { font-size: 0.7em; color: var(--accent); }
.hero-meta .stat .lbl { color: var(--on-dark-dim); font-size: 0.9rem; margin-top: 8px; }
.scroll-badge { position: absolute; right: var(--gutter); bottom: clamp(40px,7vw,88px); z-index: 3; display: flex; align-items: center; gap: 10px; color: rgba(245,247,239,0.6); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-badge svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(5px);} }
@media (prefers-reduced-motion: reduce) { .scroll-badge svg { animation: none; } }

/* section header */
.section-head { max-width: 62ch; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 20px; }

/* =========================================================================
   VENUES
   ========================================================================= */
.venues { background: var(--ink); position: relative; }
.venues-head { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: flex-end; justify-content: space-between; }
.venue-tabs { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.venue-tab { border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.7em 1.3em; font-weight: 700; color: var(--paper-dim); display: inline-flex; align-items: baseline; gap: 0.6em; transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease); }
.venue-tab small { font-weight: 600; color: var(--paper-faint); font-size: 0.72rem; letter-spacing: 0.04em; }
.venue-tab:hover { border-color: var(--line-2); color: var(--paper); transform: translateY(-2px); }
.venue-tab.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.venue-tab.is-active small { color: rgba(11,15,13,0.7); }

.venue-panel { margin-top: 34px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(20px, 3vw, 48px); align-items: stretch; transition: opacity 0.25s var(--ease); }
.venue-figure { position: relative; border-radius: var(--radius); aspect-ratio: 16 / 12; min-height: 380px; }
.venue-figure img { transition: transform 0.9s var(--ease); }
.venue-figure:hover img { transform: scale(1.05); }
.venue-figure .tag { position: absolute; z-index: 3; top: 20px; left: 20px; background: rgba(11,15,13,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(245,247,239,0.2); color: var(--on-dark); border-radius: var(--radius-pill); padding: 0.5em 1em; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; }
.venue-figure .figure-foot { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 22px; color: var(--on-dark); }
.venue-figure .figure-foot .place { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 500; line-height: 1; }
.venue-figure .figure-foot .region { color: var(--on-dark-dim); font-size: 0.9rem; margin-top: 6px; }

.venue-detail { display: flex; flex-direction: column; gap: 26px; }
.venue-detail .desc { color: var(--paper-dim); font-size: 1.06rem; }
.venue-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.venue-specs .spec { background: var(--ink-2); padding: 20px; transition: background-color 0.25s var(--ease); }
.venue-specs .spec:hover { background: var(--ink-3); }
.venue-specs .spec .k { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: var(--accent-fg); }
.venue-specs .spec .v { color: var(--paper-dim); font-size: 0.9rem; margin-top: 4px; }
.venue-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.45em 0.9em; font-size: 0.85rem; color: var(--paper-dim); font-weight: 600; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.chip:hover { border-color: var(--accent-fg); color: var(--paper); }
.chip svg { width: 0.95em; height: 0.95em; color: var(--accent-fg); vertical-align: -1px; margin-right: 5px; display: inline-block; }
.venue-detail .venue-cta { margin-top: auto; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* =========================================================================
   EXPERIENCE (bento)
   ========================================================================= */
.experience { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 52px; }
.tile { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); padding: 30px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.tile:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.tile h3 { margin-top: 14px; }
.tile p { color: var(--paper-dim); margin-top: 10px; font-size: 0.98rem; }
.tile .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-fg); transition: background-color 0.3s var(--ease), transform 0.3s var(--ease); }
.tile:hover .icon { background: var(--accent); color: var(--accent-ink); transform: scale(1.06) rotate(-4deg); }
.tile .icon svg { width: 24px; height: 24px; }
.tile-coach { grid-column: span 3; min-height: 300px; }
.tile-facility { grid-column: span 3; min-height: 300px; color: var(--on-dark); justify-content: flex-end; }
.tile-facility .media { position: absolute; inset: 0; z-index: 0; }
.tile-facility .media::after { background: linear-gradient(180deg, rgba(6,10,8,0.1) 30%, rgba(6,10,8,0.85) 100%); }
.tile-facility:hover .media img { transform: scale(1.05); }
.tile-facility > *:not(.media) { position: relative; z-index: 2; }
.tile-facility .eyebrow { color: var(--accent); }
.tile-facility p { color: var(--on-dark-dim); }
.tile-events { grid-column: span 2; }
.tile-community { grid-column: span 2; }
.tile-host { grid-column: span 2; }
.tile-stat .big { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 500; line-height: 1; color: var(--accent-fg); }

/* =========================================================================
   APP
   ========================================================================= */
.app { background: var(--ink-2); position: relative; }
.app-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.app-brandline { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--paper-dim); font-size: 0.9rem; }
.app-brandline img { height: 26px; width: auto; border-radius: 6px; }
.steps { margin-top: 34px; display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); transition: padding-left 0.3s var(--ease); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { padding-left: 8px; }
.step .n { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--accent-fg); width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background-color 0.3s var(--ease), color 0.3s var(--ease); }
.step:hover .n { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--paper-dim); margin-top: 6px; font-size: 0.98rem; }
.app-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

.app-visual { position: relative; display: grid; place-items: center; }
.app-glow { position: absolute; inset: 6% 10%; z-index: 0; background: radial-gradient(50% 50% at 50% 45%, rgba(198,242,74,0.28), transparent 70%); filter: blur(20px); }
.app-shot { position: relative; z-index: 2; width: min(340px, 82%); filter: drop-shadow(0 40px 60px rgba(0,0,0,0.45)); transition: transform 0.6s var(--ease); }
.app-visual:hover .app-shot { transform: translateY(-8px) rotate(-1deg); }

/* =========================================================================
   MEMBERSHIP
   ========================================================================= */
.membership { position: relative; overflow: hidden; color: var(--on-dark); }
.member-bg { position: absolute; inset: 0; z-index: 0; }
.member-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,9,7,0.82), rgba(6,9,7,0.94)); }
.member-inner { position: relative; z-index: 2; }
.membership .section-head h2 { color: var(--on-dark); }
.membership .section-head .lead { color: var(--on-dark-dim); }
.membership .eyebrow { color: var(--accent); }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); margin-top: 46px; align-items: start; }
.member-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(245,247,239,0.12); border: 1px solid rgba(245,247,239,0.12); border-radius: var(--radius); overflow: hidden; }
.benefit { background: rgba(12,17,13,0.72); backdrop-filter: blur(4px); padding: 26px 22px; transition: background-color 0.3s var(--ease); }
.benefit:hover { background: rgba(20,28,16,0.9); }
.benefit .b-ic { color: var(--accent); transition: transform 0.3s var(--ease); }
.benefit:hover .b-ic { transform: scale(1.12) translateY(-2px); }
.benefit .b-ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.08rem; margin-top: 14px; color: var(--on-dark); }
.benefit p { color: var(--on-dark-dim); font-size: 0.92rem; margin-top: 6px; }

.member-card { border-radius: var(--radius); border: 1px solid rgba(245,247,239,0.16); overflow: hidden; background: linear-gradient(160deg, #171E15, #0B0F0D); position: sticky; top: 100px; box-shadow: var(--shadow); }
.member-card .mc-top { padding: 30px; border-bottom: 1px solid rgba(245,247,239,0.12); position: relative; overflow: hidden; }
.member-card .court-lines { opacity: 0.4; }
.member-card .mc-kicker { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-dim); font-weight: 700; }
.member-card .mc-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 500; margin-top: 10px; line-height: 1; color: var(--on-dark); }
.member-card .mc-sub { color: var(--on-dark-dim); margin-top: 14px; }
.member-card .mc-body { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 18px; }
.member-list { display: flex; flex-direction: column; gap: 12px; }
.member-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-dark-dim); font-size: 0.96rem; }
.member-list li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }

/* =========================================================================
   COMMUNITY
   ========================================================================= */
.community { background: var(--ink); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.quote { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); padding: 30px; display: flex; flex-direction: column; gap: 22px; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.quote .stars { color: var(--accent-fg); display: flex; gap: 3px; }
.quote .stars svg { width: 16px; height: 16px; }
.quote blockquote { font-size: 1.08rem; line-height: 1.5; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; background: var(--ink-3); }
.quote .who .av img { border-radius: 50%; }
.quote .who .av-initials { display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.quote .who .nm { font-weight: 700; font-size: 0.95rem; }
.quote .who .rl { color: var(--paper-faint); font-size: 0.82rem; }

.marquee { margin-top: 64px; border-block: 1px solid var(--line); overflow: hidden; padding-block: 22px; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 500; color: var(--paper-faint); display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================================
   CTA + Footer
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 2; border-radius: clamp(20px, 3vw, 32px); background: var(--accent); color: var(--accent-ink); padding: clamp(40px, 6vw, 84px); overflow: hidden; }
.cta-inner .court-lines { opacity: 0.18; background: linear-gradient(to right, rgba(11,15,13,0.5) 1px, transparent 1px) 0 0 / 20% 100%, linear-gradient(to bottom, rgba(11,15,13,0.5) 1px, transparent 1px) 0 0 / 100% 25%; }
.cta-inner h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); font-weight: 500; letter-spacing: -0.03em; max-width: 18ch; color: var(--accent-ink); }
.cta-inner p { color: rgba(11,15,13,0.72); font-weight: 600; margin-top: 18px; max-width: 44ch; font-size: 1.1rem; }
.cta-inner .btn-primary { background: #0B0F0D; color: #F4F6EE; margin-top: 32px; }
.cta-inner .btn-primary:hover { background: #1b241a; box-shadow: none; }

.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(60px, 8vw, 110px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .f-brand p { color: var(--paper-dim); margin-top: 20px; max-width: 34ch; }
.f-socials { display: flex; gap: 10px; margin-top: 24px; }
.f-socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--paper-dim); transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.f-socials a:hover { color: var(--accent-fg); border-color: var(--accent-fg); transform: translateY(-3px); }
.f-socials svg { width: 19px; height: 19px; }
.f-col h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-faint); font-weight: 700; }
.f-col ul { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.f-col a { color: var(--paper-dim); font-size: 0.96rem; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.f-col a:hover { color: var(--paper); padding-left: 4px; }
.f-col .addr { color: var(--paper-dim); font-size: 0.92rem; line-height: 1.5; }
.footer-bottom { margin-top: clamp(50px,7vw,90px); padding-block: 30px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--paper-faint); font-size: 0.86rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: var(--paper-faint); font-size: 0.86rem; transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: var(--paper); }
.proto-note { text-align:center; font-size:0.78rem; color: var(--paper-faint); padding: 4px 0 26px; }

/* =========================================================================
   LOCATION PAGES
   ========================================================================= */
.loc-hero { position: relative; min-height: 82dvh; display: flex; align-items: flex-end; padding-top: 74px; overflow: hidden; color: var(--on-dark); }
.loc-hero .hero-bg::after { background: linear-gradient(180deg, rgba(6,9,7,0.5) 0%, rgba(6,9,7,0.15) 34%, rgba(6,9,7,0.72) 82%, var(--ink) 100%); }
.loc-hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 6vw, 80px); }
.loc-breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--on-dark-dim); font-size: 0.85rem; font-weight: 600; }
.loc-breadcrumb a:hover { color: var(--accent); }
.loc-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 0.96; margin-top: 16px; color: var(--on-dark); }
.loc-hero .sub { margin-top: 18px; font-size: 1.15rem; color: var(--on-dark-dim); max-width: 44ch; }
.loc-hero .hero-actions { margin-top: 32px; }
.loc-hero .eyebrow { color: var(--accent); }

.loc-quickbar { background: var(--ink-2); border-bottom: 1px solid var(--line); }
.loc-quickbar .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; padding-block: 22px; }
.loc-fact { display: flex; align-items: center; gap: 10px; color: var(--paper-dim); font-size: 0.95rem; font-weight: 600; }
.loc-fact svg { width: 20px; height: 20px; color: var(--accent-fg); flex: none; }
.loc-fact strong { color: var(--paper); font-family: var(--font-display); font-weight: 600; }

.loc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.loc-intro .txt h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.loc-intro .txt p { color: var(--paper-dim); margin-top: 20px; font-size: 1.06rem; }
.loc-intro .txt .stat-row { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.loc-intro .txt .stat-row .k { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--accent-fg); line-height: 1; }
.loc-intro .txt .stat-row .v { color: var(--paper-dim); font-size: 0.9rem; margin-top: 6px; }
.loc-figure { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.loc-figure img { transition: transform 0.9s var(--ease); }
.loc-figure:hover img { transform: scale(1.05); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 48px; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery figure img { transition: transform 0.9s var(--ease); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,10,8,0.5)); opacity: 0; transition: opacity 0.3s var(--ease); }
.gallery figure:hover::after { opacity: 1; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }

.loc-amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.amenity { border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); padding: 26px; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.amenity:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.amenity .a-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--ink-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent-fg); transition: background-color 0.3s var(--ease), color 0.3s var(--ease); }
.amenity:hover .a-ic { background: var(--accent); color: var(--accent-ink); }
.amenity .a-ic svg { width: 22px; height: 22px; }
.amenity h3 { font-size: 1.1rem; margin-top: 16px; }
.amenity p { color: var(--paper-dim); font-size: 0.94rem; margin-top: 8px; }

.loc-contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.loc-map { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1px solid var(--line); background: var(--ink-2); }
.loc-map .court-lines { opacity: 0.5; }
.loc-map .map-pin { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--paper-dim); }
.loc-map .map-pin svg { width: 46px; height: 46px; color: var(--accent-fg); margin: 0 auto 10px; }
.loc-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.loc-info .info-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.loc-info .info-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.loc-info .info-item svg { width: 22px; height: 22px; color: var(--accent-fg); margin-top: 3px; }
.loc-info .info-item .lbl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-faint); font-weight: 700; }
.loc-info .info-item .val { margin-top: 4px; font-size: 1.05rem; }
.loc-info .info-item .val a:hover { color: var(--accent-fg); }
.loc-info .info-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.other-venues { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.ov-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px; display: flex; align-items: flex-end; padding: 26px; color: var(--on-dark); }
.ov-card .media { position: absolute; inset: 0; z-index: 0; }
.ov-card:hover .media img { transform: scale(1.06); }
.ov-card > *:not(.media) { position: relative; z-index: 2; }
.ov-card .ov-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.ov-card .ov-region { color: var(--on-dark-dim); font-size: 0.9rem; margin-top: 4px; }
.ov-card .ov-go { position: absolute; top: 22px; right: 22px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(245,247,239,0.3); display: grid; place-items: center; color: var(--on-dark); transition: background-color 0.25s var(--ease), color 0.25s var(--ease); }
.ov-card:hover .ov-go { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .venue-panel { grid-template-columns: 1fr; }
  .venue-figure { min-height: 320px; aspect-ratio: 16/10; }
  .app-grid { grid-template-columns: 1fr; }
  .app-visual { order: -1; }
  .member-grid { grid-template-columns: 1fr; }
  .member-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer .f-brand { grid-column: 1 / -1; }
  .loc-intro, .loc-contact { grid-template-columns: 1fr; }
  .loc-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-coach, .tile-facility, .tile-events, .tile-community, .tile-host { grid-column: span 1; }
  .tile-facility { grid-column: span 2; min-height: 260px; }
  .quotes { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-meta .stat { display: flex; align-items: baseline; gap: 14px; }
  .hero-meta .stat .lbl { margin-top: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 1; }
  .other-venues { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .tile-facility { grid-column: span 1; }
  .venue-specs, .member-benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .scroll-badge { display: none; }
  .venue-figure .figure-foot { position: absolute; }
  .loc-amenities-grid { grid-template-columns: 1fr; }
}
