:root {
  --ink:        #0A0E14;
  --ink-2:      #0B1119;
  --navy:       #0D1B2A;
  --navy-2:     #0F2236;
  --green:      #3DDC84;
  --green-hi:   #4BE88D;
  --green-soft: rgba(61, 220, 132, 0.14);
  --silver:     #C8CCD2;
  --silver-hi:  #E6E9ED;
  --cream:      #EFE9DC;
  --cream-soft: #D8D1C2;
  --gold:       #C9A961;
  --hair:       rgba(232, 232, 232, 0.08);
  --hair-2:     rgba(232, 232, 232, 0.14);
  --glass:      rgba(255, 255, 255, 0.03);
  --glass-2:    rgba(255, 255, 255, 0.05);
  --serif: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --cond:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--ink); color: var(--cream); }

/* Respect user motion preferences — pauses SVG ball animation and decorative
   transitions for visitors who've requested reduced motion in their OS.
   Also cuts CPU on low-end devices, improving perceived performance. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .golf-bg-svg .ball animateMotion { display: none; }
  .arc-balls, .arc-trails { display: none; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(61,220,132,0.07), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(13,27,42,0.9), transparent 60%);
}
html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 198;
  background:
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 45%, rgba(0,0,0,0.32) 78%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201,169,97,0.025), transparent 70%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

.label {
  font-family: var(--cond);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver);
}
.label .bar {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 14px;
  box-shadow: 0 0 10px var(--green);
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--silver-hi);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(40px, 6.2vw, 96px); letter-spacing: -0.018em; }
h2 { font-size: clamp(38px, 5.4vw, 78px); line-height: 1.06; letter-spacing: -0.012em; }
h3 { font-size: clamp(24px, 2.2vw, 34px); line-height: 1.15; }
p  { color: var(--cream-soft); font-size: 17px; line-height: 1.65; max-width: 60ch; }
p.lede { font-size: 19px; color: var(--cream); }
.italic { font-style: italic; color: var(--cream); }
.accent-italic { font-style: italic; color: var(--green); font-family: var(--serif); }
.silver-gradient {
  background: linear-gradient(180deg, #F2F4F7 0%, #C8CCD2 45%, #8A8F96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { max-width: 1340px; margin: 0 auto; padding: 0 40px; }
section { position: relative; padding: 140px 0; }
section + section { border-top: 0; }
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(232,232,232,0.04) 18%,
    rgba(232,232,232,0.10) 38%,
    rgba(201,169,97,0.32) 48%,
    transparent 49.5%,
    transparent 50.5%,
    rgba(201,169,97,0.32) 52%,
    rgba(232,232,232,0.10) 62%,
    rgba(232,232,232,0.04) 82%,
    transparent 100%);
  pointer-events: none;
}
section + section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, #FFEFC0 0%, #F5DD9D 30%, #C9A961 60%, #8B6E2B 100%);
  box-shadow:
    0 0 0 5px var(--ink),
    0 0 0 6px rgba(201,169,97,0.18),
    0 0 18px rgba(201,169,97,0.55),
    inset 0 1px 0 rgba(255,245,215,0.55);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #04120A;
  box-shadow: 0 0 0 1px rgba(61,220,132,0.3), 0 10px 40px -8px rgba(61,220,132,0.5), inset 0 0 20px rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--green-hi);
  box-shadow: 0 0 0 1px rgba(61,220,132,0.5), 0 14px 50px -6px rgba(61,220,132,0.7), inset 0 0 20px rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--hair-2);
  color: var(--silver-hi);
  background: rgba(255,255,255,0.015);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 1px rgba(61,220,132,0.2), 0 0 30px -8px rgba(61,220,132,0.4);
}
.btn-gold {
  background:
    linear-gradient(115deg,
      #6E5722 0%,
      #8B6E2B 14%,
      #C9A961 30%,
      #F5DD9D 46%,
      #FFEFC0 50%,
      #F5DD9D 54%,
      #C9A961 70%,
      #8B6E2B 86%,
      #6E5722 100%);
  background-size: 240% 100%;
  background-position: 12% 50%;
  color: #1A1207;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  transition: background-position 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, transform 0.25s ease;
  box-shadow:
    0 0 0 1px rgba(228,200,122,0.55),
    0 0 22px rgba(201,169,97,0.45),
    0 12px 42px -8px rgba(201,169,97,0.7),
    inset 0 1px 0 rgba(255,240,200,0.55),
    inset 0 -2px 6px rgba(110,82,24,0.4),
    inset 0 0 24px rgba(255,220,140,0.12);
}
.btn-gold:hover {
  background-position: 88% 50%;
  box-shadow:
    0 0 0 1px rgba(240,215,143,0.85),
    0 0 36px rgba(228,200,122,0.7),
    0 18px 60px -6px rgba(201,169,97,0.9),
    inset 0 1px 0 rgba(255,245,215,0.75),
    inset 0 -2px 6px rgba(110,82,24,0.45),
    inset 0 0 28px rgba(255,230,160,0.2);
  transform: translateY(-1px);
}
.foil-gold {
  background: linear-gradient(115deg,
    #6E5722 0%,
    #8B6E2B 14%,
    #C9A961 30%,
    #F5DD9D 46%,
    #FFEFC0 50%,
    #F5DD9D 54%,
    #C9A961 70%,
    #8B6E2B 86%,
    #6E5722 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil-shimmer 9s ease-in-out infinite;
}
@keyframes foil-shimmer {
  0%, 100% { background-position: 12% 50%; }
  50%      { background-position: 88% 50%; }
}
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn.is-disabled {
  cursor: default;
  pointer-events: none;
  background: rgba(255,255,255,0.05);
  color: var(--silver);
  box-shadow: 0 0 0 1px var(--hair-2), inset 0 0 0 1px rgba(255,255,255,0.02);
  text-shadow: none;
}
.btn.is-disabled svg { opacity: 0.5; }
.btn svg { width: 14px; height: 14px; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  padding: 14px 40px;
  border-bottom-color: var(--hair);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1540px;
  margin: 0 auto;
}
.nav-mono {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver-hi);
  flex-shrink: 0;
}
.nav-lockup {
  height: 60px;
  width: auto;
  max-width: 320px;
  display: block;
  filter: drop-shadow(0 0 14px rgba(61,220,132,0.28));
  transition: height 0.35s ease;
}
.nav.scrolled .nav-lockup { height: 48px; }
@media (max-width: 720px) {
  .nav-lockup { height: 46px; }
  .nav.scrolled .nav-lockup { height: 38px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--silver);
  transition: color 0.25s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), text-shadow 0.25s ease;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform;
}
@media (hover: hover) and (min-width: 1181px) {
  .nav-links a:hover {
    color: var(--green);
    transform: scale(1.18);
    text-shadow: 0 0 14px rgba(61,220,132,0.45);
  }
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--silver-hi); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3px; height: 3px;
  background: var(--green);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--green);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
}
.nav-book {
  height: 48px;
  padding: 0 30px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-width: 168px;
  justify-content: center;
}
.nav-book svg { width: 16px; height: 16px; }
.nav-burger {
  display: none;
  position: relative;
  z-index: 120;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--hair-2);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nav-burger:hover { border-color: var(--green); background: rgba(61,220,132,0.06); }
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--silver-hi);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-only { display: none; }

@media (max-width: 1180px) {
  .nav-links, .nav-login, .nav-book { display: none; }
  .nav-burger { display: flex; }
  .nav-links.mobile-open .mobile-only { display: block; }

  /* Mobile menu panel */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 16px; right: 16px;
    background: rgba(10, 14, 20, 0.96);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--hair);
    border-radius: 14px;
    padding: 18px 10px;
    gap: 2px;
    list-style: none;
    z-index: 101;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6);
    animation: mobileMenuIn 0.32s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-links.mobile-open li { width: 100%; }
  .nav-links.mobile-open li a {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 8px;
    color: var(--silver-hi);
  }
  .nav-links.mobile-open li a:hover,
  .nav-links.mobile-open li a.active {
    background: rgba(61,220,132,0.08);
    color: var(--green);
  }
  .nav-links.mobile-open li.mobile-cta { margin-top: 10px; padding: 0 8px; }
  .nav-links.mobile-open li.mobile-cta a { text-align: center; padding: 12px 18px; }
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 50% at 75% 30%, rgba(61,220,132,0.10), transparent 60%),
    radial-gradient(50% 40% at 20% 80%, rgba(13,27,42,0.7), transparent 70%);
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero-orb {
  position: absolute;
  width: 640px; height: 640px;
  right: -140px; top: 10%;
  background: radial-gradient(circle at 40% 40%, rgba(61,220,132,0.30), rgba(61,220,132,0) 60%);
  filter: blur(20px);
  animation: orbDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.55; }
  100% { transform: translate(-80px, 40px) scale(1.08); opacity: 0.75; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-kicker {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 { margin-bottom: 28px; }
.hero h1 .accent-italic { color: var(--green); font-family: var(--serif); font-style: italic; }
.hero-sub {
  font-size: 19px;
  color: var(--cream);
  max-width: 48ch;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { font-family: var(--cond); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver); }
.hero-meta .v { font-family: var(--serif); font-size: 22px; color: var(--cream); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background: linear-gradient(160deg, #0F1826 0%, #0A0E14 70%);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.9),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(61,220,132,0.04) 0,
      rgba(61,220,132,0.04) 1px,
      transparent 1px,
      transparent 18px
    );
}
.hero-visual .corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--green);
}
.hero-visual .corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.hero-visual .corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.hero-visual .corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.hero-visual .corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }
.hero-visual .caption {
  position: absolute;
  left: 0; right: 0; bottom: 36px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--silver);
  text-transform: uppercase;
}
.hero-visual .caption .fig { color: var(--green); margin-right: 10px; }
.hero-visual .bigmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.hero-visual .bigmark img {
  width: 62%;
  height: auto;
  /* Static green drop-shadow + entrance fade + gentle float (no filter animation) */
  filter: drop-shadow(0 0 24px rgba(61,220,132,0.28));
  animation:
    bigmark-enter 1.0s cubic-bezier(0.22, 0.61, 0.36, 1) both,
    bigmark-float 8s ease-in-out 1.0s infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes bigmark-enter {
  0%   { opacity: 0; transform: translateY(20px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes bigmark-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-visual .badge {
  position: absolute;
  top: 24px; right: 24px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  background: rgba(10,14,20,0.6);
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}
.hero-visual .badge .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero { padding: 130px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 560px; }
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.section-head .copy p { margin-top: 24px; }
.section-head h2 { max-width: 14ch; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 32px; }
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.studio-image {
  aspect-ratio: 5/6;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--hair-2);
  background: linear-gradient(165deg, #0F1826 0%, #0A0E14 80%);
}
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(200,204,210,0.035) 0,
      rgba(200,204,210,0.035) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(160deg, #0F1826 0%, #0A0E14 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder .phtag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  text-align: center;
  padding: 16px;
}
.placeholder .phtag .g { color: var(--green); }
.placeholder .phtag .d { color: var(--cream-soft); font-family: var(--mono); margin-top: 6px; display: block; font-size: 9px; }

.studio-copy h2 { margin-bottom: 32px; }
.studio-copy p { margin-bottom: 20px; }
.studio-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.studio-stats > div {
  padding: 24px 20px;
  border-right: 1px solid var(--hair);
}
.studio-stats > div:last-child { border-right: 0; }
.studio-stats .n {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 38px;
  color: var(--silver-hi);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  margin-bottom: 8px;
}
.studio-stats .n .sm { color: var(--green); }
.studio-stats .l {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; gap: 48px; }
  .studio-stats { grid-template-columns: repeat(2, 1fr); }
  .studio-stats > div:nth-child(2) { border-right: 0; }
  .studio-stats > div:nth-child(1), .studio-stats > div:nth-child(2) { border-bottom: 1px solid var(--hair); }
}

.bays-showcase {
  margin-top: 40px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, #0B131C 0%, #0A0E14 100%);
  position: relative;
}
.bays-showcase .strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hair);
}
.bay-hero {
  border-bottom: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.bay-hero .phg-photo { min-height: 440px; }
@media (max-width: 900px) {
  .bay-hero .phg-photo { min-height: 300px; }
}
.bay-cell {
  aspect-ratio: 4/5;
  position: relative;
  border-right: 1px solid var(--hair);
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
}
.bay-cell:last-child { border-right: 0; }
.bay-cell .ph-caption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.bay-cell .num {
  font-family: var(--serif);
  font-size: 90px;
  color: rgba(200,204,210,0.08);
  line-height: 1;
  transition: color 0.3s ease;
}
.bay-cell .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}
.bay-cell:hover { background: rgba(61,220,132,0.03); }
.bay-cell:hover .num { color: rgba(61,220,132,0.25); }

.features-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
}
.feature-pill {
  padding: 22px 20px;
  border-right: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-hi);
}
.feature-pill:last-child { border-right: 0; }
.feature-pill svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

@media (max-width: 1100px) {
  .bays-showcase .strip { grid-template-columns: repeat(2, 1fr); }
  .bay-cell:nth-child(2n) { border-right: 0; }
  .bay-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hair); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .feature-pill:nth-child(2n) { border-right: 0; }
  .feature-pill:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--hair); }
}

.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.glass {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--hair-2);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
  border-color: rgba(61,220,132,0.28);
  box-shadow: 0 0 0 1px rgba(61,220,132,0.18), 0 30px 80px -30px rgba(61,220,132,0.15);
}
.glass-inner { padding: 44px; }
.glass .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.glass .head h3 { font-size: 34px; }
.hp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--hair);
  font-size: 18px;
}
.hp-row:last-child { border-bottom: 0; }
.hp-row .day { color: var(--silver-hi); font-weight: 500; font-size: 18px; }
.hp-row .time { color: var(--cream); font-family: var(--mono); font-size: 15px; letter-spacing: 0.02em; }
.hp-block + .hp-block { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--hair); }
.hp-block .bl {
  font-family: var(--cond);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.price-lead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 36px 0;
  border-bottom: 1px solid var(--hair);
}
.price-lead:last-of-type { border-bottom: 0; }
.price-lead .lbl { color: var(--silver-hi); font-size: 18px; }
.price-lead .lbl .sub { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); font-family: var(--cond); margin-top: 6px; }
.price-lead .amt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 56px;
  color: var(--silver-hi);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.price-lead .amt .ccy { font-size: 28px; color: var(--green); vertical-align: baseline; margin-right: 4px; font-weight: 400; }
.price-lead .amt .per { font-size: 16px; color: var(--cream-soft); font-family: var(--sans); margin-left: 8px; letter-spacing: 0; font-weight: 400; }
.price-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--hair);
  font-size: 15px;
  color: var(--cream-soft);
  line-height: 1.6;
}
.price-note strong { color: var(--cream); font-weight: 500; }
.hp-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .hp-grid { grid-template-columns: 1fr; }
  .glass-inner { padding: 32px 24px; }
}

.mem-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mem-card {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--hair-2);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  min-height: 620px;
}
.mem-card:hover {
  border-color: rgba(61,220,132,0.32);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(61,220,132,0.2), 0 30px 80px -30px rgba(61,220,132,0.25);
}
.mem-card.featured {
  border-color: rgba(61,220,132,0.35);
  background: linear-gradient(180deg, rgba(61,220,132,0.05) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 0 0 1px rgba(61,220,132,0.2), 0 20px 60px -20px rgba(61,220,132,0.18);
}
.mem-card.sold-out { opacity: 0.85; }
.mem-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--hair-2);
  background: var(--ink);
  color: var(--silver-hi);
}
.mem-badge.primary { background: var(--green); color: #04120A; border-color: var(--green); box-shadow: 0 0 20px rgba(61,220,132,0.4); }
.mem-badge.gold { background: var(--ink); color: var(--gold); border-color: rgba(201,169,97,0.4); }
.mem-tier {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.mem-name {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--silver-hi);
  line-height: 1.05;
  margin-bottom: 14px;
}
.mem-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.mem-price .amt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 44px;
  color: var(--silver-hi);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.mem-price .amt .ccy { font-size: 24px; color: var(--green); vertical-align: baseline; margin-right: 2px; font-weight: 400; }
.mem-price .per { color: var(--cream-soft); font-size: 14px; margin-left: 6px; }
.mem-price.contact .amt { font-size: 22px; color: var(--cream); font-weight: 500; letter-spacing: 0; }
.mem-who {
  font-size: 15.5px;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.55;
}
.mem-list {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.mem-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--cream-soft);
  border-bottom: 1px dashed var(--hair);
  /* Reserve room for up to 2 lines so bullets align row-by-row across all
     tier cards, even when some rows wrap and others don't. */
  min-height: calc(9px * 2 + 14px * 1.45 * 2);
}
.mem-list li:last-child { border-bottom: 0; }
.mem-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}
.mem-btn {
  width: 100%;
  justify-content: center;
  height: 46px;
}
.mem-btn.outline {
  border: 1px solid var(--hair-2);
  color: var(--silver-hi);
  background: rgba(255,255,255,0.02);
}
.mem-btn.outline:hover { border-color: var(--green); color: var(--green); }

@media (max-width: 1100px) {
  .mem-grid { grid-template-columns: repeat(2, 1fr); }
  .mem-card { min-height: auto; }
}
@media (max-width: 600px) {
  .mem-grid { grid-template-columns: 1fr; }
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 1500px) { .coach-grid { grid-template-columns: repeat(4, 1fr); } }
.coach-card.fitter { border-color: rgba(201,169,97,0.4); box-shadow: 0 0 0 1px rgba(201,169,97,0.15), 0 20px 50px -20px rgba(201,169,97,0.25); }
.coach-card.fitter:hover { border-color: rgba(201,169,97,0.6); box-shadow: 0 0 0 1px rgba(201,169,97,0.35), 0 24px 60px -16px rgba(201,169,97,0.35); }
.coach-card.fitter .coach-role {
  background: linear-gradient(115deg, #6E5722 0%, #8B6E2B 14%, #C9A961 30%, #F5DD9D 46%, #FFEFC0 50%, #F5DD9D 54%, #C9A961 70%, #8B6E2B 86%, #6E5722 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil-shimmer 9s ease-in-out infinite;
}
.coach-card.fitter .coach-book { color: var(--gold); }
.coach-card.fitter .coach-book:hover .arrow { color: var(--gold); }
.fitter-badge-float {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10,14,20,0.92);
  border: 1px solid rgba(201,169,97,0.55);
  color: #F0D78F;
  text-shadow: 0 0 12px rgba(245,221,157,0.35);
  box-shadow:
    0 0 0 1px rgba(201,169,97,0.18),
    0 8px 20px -6px rgba(0,0,0,0.6),
    0 0 18px -4px rgba(201,169,97,0.4);
}

.coach-card .fitter-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(10,14,20,0.85);
  border: 1px solid rgba(201,169,97,0.55);
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  color: #F0D78F;
  text-shadow: 0 0 12px rgba(245,221,157,0.35);
}
.coach-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.coach-card:hover {
  border-color: rgba(61,220,132,0.28);
  box-shadow: 0 20px 60px -20px rgba(61,220,132,0.2);
}
.coach-photo {
  aspect-ratio: 1/1;
  position: relative;
  border-bottom: 1px solid var(--hair);
}
.coach-photo .num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}
.coach-photo .num .d { color: var(--green); }
.coach-body { padding: 10px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.coach-name {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--silver-hi);
  line-height: 1.1;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair);
}
.coach-bio { font-size: 14.5px; color: var(--cream-soft); margin-bottom: 20px; line-height: 1.6; flex: 1; }
.coach-rate {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream);
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--hair);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
}
.coach-rate .val { color: var(--silver-hi); }
.coach-email {
  font-family: var(--mono);
  /* Fluid sizing: shrinks with card width so the longest address
     (david.monacob10@gmail.com — 25 chars) fits without truncation. */
  font-size: clamp(10.5px, 0.94vw, 13px);
  letter-spacing: -0.015em;
  color: var(--cream-soft);
  padding: 12px 0;
  border-top: 1px solid var(--hair);
  text-align: center;
  white-space: nowrap;
  overflow: visible;
}

.coach-book {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-hi);
  text-align: left;
  padding: 10px 0 0;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.coach-book:hover { color: var(--green); }
.coach-book .arrow { transition: transform 0.25s; }
.coach-book:hover .arrow { transform: translateX(4px); color: var(--green); }

@media (max-width: 1100px) { .coach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .coach-grid { grid-template-columns: 1fr; } }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.events-copy h2 { margin-bottom: 32px; }
.events-copy p { margin-bottom: 20px; }
.events-list {
  margin-top: 40px;
  list-style: none;
}
.events-list li {
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  display: flex;
  gap: 20px;
  align-items: center;
}
.events-list li:last-child { border-bottom: 1px solid var(--hair); }
.events-list .num {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--green);
  width: 32px;
  flex-shrink: 0;
}
.events-list .txt {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-hi);
}
.events-visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  position: relative;
}
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* League Nights */
.league-wrap {
  margin-top: 40px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(61,220,132,0.08), transparent 60%),
    linear-gradient(180deg, #0B131C 0%, #0A0E14 100%);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.league-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,204,210,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,204,210,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.league-copy { position: relative; z-index: 1; }
.league-copy h2 { margin-bottom: 28px; }
.league-copy p { margin-bottom: 18px; }
.league-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.league-meta > div { display: flex; flex-direction: column; gap: 6px; }
.league-meta .k { font-family: var(--cond); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--green); }
.league-meta .v { font-family: var(--serif); font-size: 22px; color: var(--silver-hi); line-height: 1.15; }
.league-meta .s { font-size: 12px; color: var(--cream-soft); }
.league-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.league-nights {
  position: relative; z-index: 1;
  border-radius: 22px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
  padding: 36px 32px;
}
.league-nights h4 {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
  font-weight: 500;
}
.league-night {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
}
.league-night:first-of-type { border-top: 0; padding-top: 4px; }
.league-night .day {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--silver-hi);
  line-height: 1;
}
.league-night .info .t {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.league-night .info .s { font-size: 13px; color: var(--cream); }
.league-night .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
  color: var(--silver);
  text-transform: uppercase;
  white-space: nowrap;
}
.league-night .tag.hot { color: var(--green); border-color: rgba(61,220,132,0.3); }
.league-night .tag.closed { color: var(--cream-soft); opacity: 0.55; border-color: var(--hair); }
@media (max-width: 900px) {
  .league-wrap { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .league-meta { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ACTIVE LEAGUE — single-league showcase
   ============================================================ */
.lg-active {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(201,169,97,0.28);
  background:
    linear-gradient(180deg, rgba(201,169,97,0.04) 0%, rgba(255,255,255,0.005) 60%, rgba(0,0,0,0.15) 100%);
  padding: 64px 56px;
  box-shadow:
    0 0 0 1px rgba(201,169,97,0.08),
    0 40px 100px -40px rgba(201,169,97,0.35),
    inset 0 1px 0 rgba(255,240,200,0.06);
}
.lg-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(201,169,97,0.12), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(61,220,132,0.05), transparent 70%);
}
@media (max-width: 720px) {
  .lg-active { padding: 40px 24px; border-radius: 22px; }
}

/* Marquee (header of the panel) */
.lg-marquee { text-align: center; position: relative; z-index: 1; }
.lg-mono {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}
.lg-mono .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: lg-pulse 2.4s ease-in-out infinite;
}
@keyframes lg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.lg-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--serif);
  line-height: 0.96;
}
.lg-title-pre {
  font-family: var(--cond);
  font-weight: 500;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver);
}
.lg-title-main {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: -0.025em;
  line-height: 0.94;
  /* foil-gold class supplies the gradient + shimmer */
}
.lg-tagline {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--cream);
  letter-spacing: 0.005em;
}
.lg-theme {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,0.32);
  background: rgba(10,14,20,0.55);
}
.lg-theme .lg-k {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F0D78F;
}
.lg-theme .lg-v {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
}

/* Stat tiles */
.lg-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  overflow: hidden;
  background: var(--hair);
  position: relative;
  z-index: 1;
}
.lg-stat {
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
  padding: 36px 20px 32px;
  text-align: center;
}
.lg-stat-v {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  background: linear-gradient(180deg, #F2F4F7 0%, #C8CCD2 50%, #8A8F96 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lg-stat-k {
  margin-top: 12px;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 720px) {
  .lg-stats { grid-template-columns: 1fr 1fr; }
  .lg-stat { padding: 26px 14px 24px; }
}

/* Split: How it works + Prize pool */
.lg-split {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .lg-split { grid-template-columns: 1fr; gap: 22px; }
}
.lg-block {
  border-radius: 18px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  padding: 36px 32px;
  position: relative;
}
.lg-block-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}
.lg-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--silver);
  opacity: 0.75;
}
.lg-block h4 {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-hi);
}
.lg-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}
.lg-bonuses {
  list-style: none;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--hair-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lg-bonuses li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--silver-hi);
}
.lg-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(61,220,132,0.42);
  background: rgba(61,220,132,0.08);
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

/* Prize pool */
.lg-prizes-block {
  border-color: rgba(201,169,97,0.3);
  background:
    linear-gradient(180deg, rgba(201,169,97,0.05) 0%, rgba(255,255,255,0.005) 100%);
}
.lg-prizes { list-style: none; }
.lg-prize {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.lg-prize:last-child { border-bottom: 0; }
.lg-prize-rank {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  width: 56px;
  padding: 6px 0;
  border-radius: 999px;
  border: 1px solid var(--hair-2);
  color: var(--silver);
  text-align: center;
}
.lg-prize-amt {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1;
  color: var(--silver-hi);
  text-align: right;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.lg-prize-gold .lg-prize-rank {
  color: #1A1207;
  background: linear-gradient(115deg, #C9A961 0%, #F5DD9D 50%, #C9A961 100%);
  border-color: rgba(245,221,157,0.7);
  box-shadow: 0 0 0 1px rgba(245,221,157,0.25), 0 0 14px rgba(201,169,97,0.32);
}
.lg-prize-gold .lg-prize-amt {
  background: linear-gradient(115deg, #6E5722 0%, #C9A961 30%, #FFEFC0 50%, #C9A961 70%, #6E5722 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil-shimmer 9s ease-in-out infinite;
}
.lg-prize-silver .lg-prize-rank {
  color: var(--silver-hi);
  border-color: rgba(232,232,232,0.32);
  background: rgba(255,255,255,0.04);
}
.lg-prize-bronze .lg-prize-rank {
  color: #D7A074;
  border-color: rgba(215,160,116,0.3);
  background: rgba(215,160,116,0.05);
}
.lg-prizes-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--hair-2);
  font-size: 12px;
  color: var(--cream-soft);
  font-style: italic;
}

/* Entry / buy-in row */
.lg-entry {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 18px;
  border: 1px solid rgba(61,220,132,0.22);
  background:
    linear-gradient(135deg, rgba(61,220,132,0.06) 0%, rgba(255,255,255,0.005) 60%);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .lg-entry { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; text-align: center; }
}
.lg-entry-label {
  font-family: var(--cond);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}
.lg-entry-amt {
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 0.95;
  color: var(--silver-hi);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.lg-entry-note {
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream-soft);
}
.lg-entry-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .lg-entry-cta { justify-content: center; }
}

/* Inactive (between leagues) */
.lg-inactive {
  border-radius: 28px;
  border: 1px solid var(--hair-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  padding: 80px 40px;
  text-align: center;
}
.lg-inactive-inner { max-width: 560px; margin: 0 auto; }

/* ============================================================
   FAQ — accordion style using <details>/<summary>
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq-item {
  border: 1px solid var(--hair-2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item:hover { border-color: rgba(61,220,132,0.35); }
.faq-item[open] {
  border-color: rgba(61,220,132,0.4);
  background: linear-gradient(180deg, rgba(61,220,132,0.04) 0%, rgba(255,255,255,0.01) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--silver-hi);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.faq-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease;
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--silver);
  transition: transform 0.3s ease, background 0.25s ease;
}
.faq-mark::before {
  /* horizontal bar */
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-mark::after {
  /* vertical bar — collapses on open */
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-mark {
  border-color: rgba(61,220,132,0.6);
  background: rgba(61,220,132,0.1);
  transform: rotate(180deg);
}
.faq-item[open] .faq-mark::before { background: var(--green); }
.faq-item[open] .faq-mark::after  { transform: translate(-50%, -50%) scaleY(0); background: var(--green); }
.faq-a {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream);
  max-width: 60ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}
.contact-copy { padding-top: 8px; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy p { margin-bottom: 18px; }
.contact-list {
  margin-top: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.contact-list li:first-child { border-top: 1px solid var(--hair); }
.contact-list .ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.contact-list .ic svg { width: 14px; height: 14px; }
.contact-list .lbl {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
  display: block;
}
.contact-list a { color: var(--cream); border-bottom: 1px solid var(--hair); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; font-size: 15px; }
.contact-list a:hover { color: var(--green); border-color: var(--green); }

.contact-form {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--hair-2);
  padding: 40px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form .sub { color: var(--cream-soft); font-size: 14px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.field label .req { color: var(--green); margin-left: 4px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--hair-2);
  background: rgba(255,255,255,0.02);
  color: var(--cream);
  font: 15px/1.4 var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,220,132,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%), linear-gradient(135deg, var(--silver) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; color: var(--cream); }
.field select option { background: #0B1A12; color: var(--cream); padding: 10px; }
.field select option:checked, .field select option:hover { background: var(--green); color: #04120A; }
.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-hint { font-size: 12px; color: var(--cream-soft); font-family: var(--mono); letter-spacing: 0.04em; }
.form-success {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(61,220,132,0.3);
  background: rgba(61,220,132,0.06);
  border-radius: 12px;
  color: var(--cream);
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
  margin-top: 40px;
}
.visit-copy { padding-top: 8px; }
.visit-copy h2 { margin-bottom: 32px; }
.visit-block { margin-top: 32px; }
.visit-block .bl {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.visit-block .v { color: var(--cream); font-size: 16px; line-height: 1.5; }
.visit-block a { color: var(--silver-hi); border-bottom: 1px solid var(--hair); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.visit-block a:hover { color: var(--green); border-color: var(--green); }
.visit-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.map-wrap {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--hair-2);
  background:
    radial-gradient(circle at 60% 40%, rgba(61,220,132,0.08), transparent 60%),
    linear-gradient(180deg, #0F1826 0%, #0A0E14 100%);
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.85) contrast(0.92) saturate(0.7);
}
.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(10,14,20,0.25) 85%),
    linear-gradient(180deg, rgba(10,14,20,0.15) 0%, transparent 30%, rgba(10,14,20,0.3) 100%);
  z-index: 1;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,204,210,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,204,210,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-road { position: absolute; background: rgba(200,204,210,0.1); }
.map-road.r1 { top: 45%; left: 0; right: 0; height: 2px; }
.map-road.r2 { top: 0; bottom: 0; left: 60%; width: 2px; }
.map-road.r3 { top: 20%; left: 0; right: 0; height: 1px; background: rgba(200,204,210,0.06); }
.map-road.r4 { top: 75%; left: 0; right: 0; height: 1px; background: rgba(200,204,210,0.06); }
.map-pin {
  position: absolute;
  top: 42%; left: 58%;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(61,220,132,0.2), 0 0 0 16px rgba(61,220,132,0.08), 0 0 30px var(--green);
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(61,220,132,0.2), 0 0 0 16px rgba(61,220,132,0.08), 0 0 30px var(--green); }
  50% { box-shadow: 0 0 0 10px rgba(61,220,132,0.25), 0 0 0 24px rgba(61,220,132,0.1), 0 0 40px var(--green); }
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.map-label {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 10px 16px;
  border: 1px solid var(--hair-2);
  border-radius: 12px;
  background: rgba(10,14,20,0.85);
  font-size: 12px;
  color: var(--cream);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}
.map-label .t {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.map-coord {
  position: absolute;
  z-index: 2;
  bottom: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--silver);
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10,14,20,0.85);
  border: 1px solid var(--hair-2);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-wrap { min-height: 380px; }
}

.footer {
  padding: 100px 0 48px;
  border-top: 1px solid var(--hair);
  background: linear-gradient(180deg, var(--ink) 0%, #05080C 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-lockup { display: flex; flex-direction: column; gap: 24px; max-width: 340px; }
.footer-lockup img { width: 220px; height: auto; filter: drop-shadow(0 0 24px rgba(61,220,132,0.25)); }
.footer-lockup .lk-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--green);
}
.footer h5 {
  font-family: var(--cond);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--cream); transition: color 0.2s; }
.footer ul a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.06em;
}
.footer-bottom .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--silver-hi);
  letter-spacing: 0;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  color: var(--silver);
}
.socials a:hover { border-color: var(--green); color: var(--green); }
.socials svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Swing-motion scroll reveals ---------- */
html { scroll-behavior: smooth; }

/* Real photo slot (fills container with object-fit: cover) */
.phg-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--hair-2);
  background: var(--panel, #0B1118);
}
.phg-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
}
.phg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10,14,20,0.35) 100%);
}
.coach-card:hover .phg-photo img,
.studio-image:hover .phg-photo img,
.events-visual:hover .phg-photo img { transform: scale(1.035); }
.bay-hero .phg-photo { border-radius: 22px; }
.studio-image .phg-photo { border-radius: 22px; }
.events-visual .phg-photo { border-radius: 22px; height: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.out-up   { opacity: 0; transform: translateY(-40px); }
.reveal.out-down { opacity: 0; transform: translateY(40px); }
.reveal.in       { opacity: 1; transform: translateY(0); }
/* follow-through: stagger child cards within a section so they whip in like a swing arc */
.reveal.in .mem-card,
.reveal.in .coach-card,
.reveal.in .visit-block,
.reveal.in .bay-cell,
.reveal.in .feature-pill,
.reveal.in .events-list li {
  animation: swing-follow 0.95s cubic-bezier(0.34, 1.56, 0.42, 1) backwards;
}
.mem-grid.reveal.in > *:nth-child(1),
.coach-grid .reveal.in:nth-child(1) { animation-delay: 0.08s; }
.mem-grid.reveal.in > *:nth-child(2) { animation-delay: 0.18s; }
.mem-grid.reveal.in > *:nth-child(3) { animation-delay: 0.28s; }
.mem-grid.reveal.in > *:nth-child(4) { animation-delay: 0.38s; }
.events-list li:nth-child(1) { animation-delay: 0.05s; }
.events-list li:nth-child(2) { animation-delay: 0.12s; }
.events-list li:nth-child(3) { animation-delay: 0.19s; }
.events-list li:nth-child(4) { animation-delay: 0.26s; }
.events-list li:nth-child(5) { animation-delay: 0.33s; }
.events-list li:nth-child(6) { animation-delay: 0.40s; }
.features-row .feature-pill:nth-child(1) { animation-delay: 0.05s; }
.features-row .feature-pill:nth-child(2) { animation-delay: 0.13s; }
.features-row .feature-pill:nth-child(3) { animation-delay: 0.21s; }
.features-row .feature-pill:nth-child(4) { animation-delay: 0.29s; }
.features-row .feature-pill:nth-child(5) { animation-delay: 0.37s; }
.features-row .feature-pill:nth-child(6) { animation-delay: 0.45s; }

@keyframes swing-follow {
  0% {
    opacity: 0;
    transform: translateY(40px) rotate(-4deg) scale(0.94);
  }
  55% {
    opacity: 1;
    transform: translateY(-6px) rotate(0.6deg) scale(1.015);
  }
  80% {
    transform: translateY(2px) rotate(-0.2deg) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* Section-level arc: each <section> gets a gentle tilt as it enters */
section.reveal,
section > .wrap > .reveal {
  /* inherited from .reveal above */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.in .mem-card,
  .reveal.in .coach-card,
  .reveal.in .visit-block,
  .reveal.in .bay-cell,
  .reveal.in .feature-pill,
  .reveal.in .events-list li {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Animated golf background ---------- */
.golf-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}
.golf-bg-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
main, .footer { position: relative; z-index: 1; }
.golf-bg .trail {
  fill: none;
  stroke: rgba(61, 220, 132, 0.28);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 160 3000;
  filter: drop-shadow(0 0 6px rgba(61,220,132,0.35));
}
.golf-bg .trail.t1 { animation: trail-draw 22s linear infinite; }
.golf-bg .trail.t2 { display: none; }
.golf-bg .trail.t3 { animation: trail-draw 26s linear infinite -12s; }
.golf-bg .trail.t4 { display: none; }
@keyframes trail-draw {
  from { stroke-dashoffset: 3160; opacity: 0; }
  6%   { opacity: 0.6; }
  94%  { opacity: 0.5; }
  to   { stroke-dashoffset: 0; opacity: 0; }
}
.golf-bg .ball { opacity: 0; }
.golf-bg .ball-1 { animation: ball-fade 22s linear infinite; }
.golf-bg .ball-2 { display: none; }
.golf-bg .ball-3 { animation: ball-fade 26s linear infinite -12s; }
.golf-bg .ball-4 { display: none; }
@keyframes ball-fade {
  0%   { opacity: 0; }
  8%   { opacity: 0.85; }
  92%  { opacity: 0.7; }
  100% { opacity: 0; }
}
.golf-bg .dimple {
  fill: rgba(200, 204, 210, 0.5);
  filter: drop-shadow(0 0 4px rgba(61,220,132,0.25));
}
.golf-bg .dimple { display: none; }
@keyframes dimple-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%      { opacity: 0.6;  transform: scale(1.6); }
}
.golf-bg .dimple { transform-box: fill-box; transform-origin: center; }

/* Hero sits over animated bg */
.hero { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .golf-bg .trail, .golf-bg .ball, .golf-bg .dimple,
  .golf-bg .ball animateMotion { animation: none; }
  .golf-bg .ball { opacity: 0.4; }
  .golf-bg .trail { opacity: 0.3; stroke-dasharray: none; }
}