@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --green: #67b72a;
  --green-light: #8fd652;
  --green-dark: #00622b;
  --green-glow: rgba(103, 183, 42, 0.12);
  --black: #080808;
  --dark: #0f0f0f;
  --card: #141414;
  --card2: #1a1a1a;
  --border: rgba(103, 183, 42, 0.16);
  --text: #f0ede8;
  --text-muted: rgba(240, 237, 232, 0.48);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

/* Remove 300ms tap delay on all interactive elements */
a, button, [onclick] { touch-action: manipulation; }

/* ─── Cursor Glow Aura ─── */
.cursor-glow {
  position: fixed;
  width: 96px; height: 96px;
  background: radial-gradient(circle, rgba(103,183,42,0.22) 0%, rgba(103,183,42,0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width .35s, height .35s, opacity .35s;
  filter: blur(6px);
  opacity: 0.8;
  mix-blend-mode: screen;
}
.cursor-glow.expand {
  width: 150px; height: 150px;
  opacity: 1;
}
.cursor-glow.click-pulse {
  width: 60px; height: 60px;
  opacity: 1;
  background: radial-gradient(circle, rgba(103,183,42,0.5) 0%, transparent 70%);
}

/* ─── Loader ─── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .9s ease, visibility .9s ease;
  animation: loaderAutoExit .8s ease 2.8s forwards;
}
@keyframes loaderAutoExit { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
.loader-logo { width: 120px; height: auto; animation: loaderBreathe 1.8s ease infinite; }
.loader-track { width: 180px; height: 1px; background: rgba(103,183,42,.15); margin-top: 36px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, transparent, var(--green), transparent); width: 100%; transform: translateX(-100%); animation: loaderSlide 1.6s ease forwards; }
@keyframes loaderBreathe { 0%,100%{opacity:.35;} 50%{opacity:1;} }
@keyframes loaderSlide { to { transform: translateX(100%); } }

/* ─── Nav ─── */
nav {
  position: fixed; top:0; left:0; right:0;
  z-index: 1000;
  padding: 24px 60px;
  padding-top: max(24px, env(safe-area-inset-top));
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s, background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled { padding: 14px 60px; background: rgba(8,8,8,.97); backdrop-filter: blur(24px); border-bottom-color: var(--border); }
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.nav-logo {
  height: 44px; width: auto;
  opacity: 0; transform: translateY(-10px);
  transition: opacity .7s ease, transform .7s ease, filter .5s ease;
  filter: drop-shadow(0 0 0px transparent);
}
.nav-logo.logo-visible { opacity: 1; transform: translateY(0); }
nav.scrolled .nav-logo.logo-visible { filter: drop-shadow(0 0 10px rgba(103,183,42,0.4)); }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  opacity: .55; transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--green); }
.nav-links a.active { opacity: 1; color: var(--green); }
.nav-cta {
  background: transparent; border: 1.5px solid var(--green); color: var(--green);
  padding: 10px 24px; font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--green); color: var(--black); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--green); transition: all .3s; }
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,.99);
  z-index: 990;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: 'Big Shoulders Display', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: .05em; transition: color .2s; }
.mobile-menu a:hover { color: var(--green); }

/* ─── Hero Logo ─── */
.hero-logo-wrap { margin-bottom: 20px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s ease .8s forwards; }
.hero-logo-img {
  height: clamp(180px, 28vw, 340px);
  width: auto;
  filter: drop-shadow(0 0 28px rgba(103,183,42,0.32)) drop-shadow(0 0 60px rgba(103,183,42,0.12));
  display: block; margin: 0 auto;
}

/* ─── Hero ─── */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('images/Gym%20Photos-04.jpeg'); background-size: cover; background-position: center 30%; transform: scale(1.08); will-change: transform; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,8,8,.52) 0%, rgba(8,8,8,.35) 40%, rgba(8,8,8,.86) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.hero-eyebrow { font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; color: var(--green); margin-top: 10px; margin-bottom: 10px; opacity: 0; transform: translateY(16px); animation: fadeUp .9s ease 1s forwards; }
.hero-title { font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(96px, 16vw, 220px); font-weight: 900; line-height: .88; letter-spacing: -0.01em; margin-bottom: 16px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s ease .8s forwards; }
.hero-title span { color: var(--green); font-style: italic; }
.hero-subtitle { font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: rgba(240,237,232,.5); margin-top: 10px; margin-bottom: 48px; opacity: 0; transform: translateY(16px); animation: fadeUp .9s ease 1.1s forwards; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeIn 1s ease 1.2s forwards; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1s ease 1.8s forwards; }
.hero-scroll span { font-family: 'Syne', sans-serif; font-size: .52rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--green), transparent); animation: scrollPulse 2.2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3;} 50%{opacity:.9;} }

/* ─── Verse Section ─── */
.verse-section {
  background: var(--dark);
  padding: 72px 60px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.verse-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(103,183,42,.07) 0%, transparent 70%);
  pointer-events: none;
  animation: versePulse 4s ease infinite;
}
@keyframes versePulse { 0%,100%{opacity:.5;} 50%{opacity:1;} }
.verse-ref { font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 24px; opacity: 0; transform: translateY(10px); transition: all .8s ease; }
.verse-ref.visible { opacity: 1; transform: translateY(0); }
.verse-text { font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 800; color: #ffffff; line-height: 1.35; max-width: 960px; margin: 0 auto; text-shadow: 0 0 60px rgba(255,255,255,.1); min-height: 2.5em; }
.verse-cursor { display: inline-block; width: 3px; height: .9em; background: var(--green); margin-left: 3px; vertical-align: middle; animation: blink 1s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ─── Buttons ─── */
.btn-primary { display: inline-block; background: var(--green); color: var(--black); padding: 15px 40px; font-family: 'Syne', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background .3s, transform .25s; border: none; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--text); padding: 15px 40px; border: 1.5px solid rgba(240,237,232,.25); font-family: 'Syne', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: border-color .3s, color .3s, transform .25s; }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ─── Stats Bar ─── */
.stats-bar { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Big Shoulders Display', sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); }

/* ─── Section Base ─── */
section { padding: 112px 60px; }
.section-eyebrow { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .36em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.section-title { font-family: 'Big Shoulders Display', sans-serif; font-size: clamp(40px, 5vw, 68px); font-weight: 900; line-height: 1; margin-bottom: 20px; letter-spacing: -.01em; }
.section-title em { color: var(--green); font-style: italic; }
.green-line { width: 56px; height: 2px; background: var(--green); margin-bottom: 32px; }

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;} .d4{transition-delay:.32s;} .d5{transition-delay:.4s;} .d6{transition-delay:.48s;} .d7{transition-delay:.56s;} .d8{transition-delay:.64s;}

/* ─── Why 33? ─── */
.why33-section { background: var(--dark); padding: 112px 60px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why33-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; max-width: 1200px; margin: 0 auto; }
.why33-img { position: relative; }
.why33-img img { width: 100%; height: 540px; object-fit: cover; object-position: top; display: block; }
.why33-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 60%, rgba(15,15,15,0.6)); pointer-events: none; }
.why33-img::before { content: ''; position: absolute; bottom: -3px; left: -3px; right: -3px; top: -3px; border: 1px solid var(--border); pointer-events: none; z-index: 1; }
.why33-quote { font-family: 'Syne', sans-serif; font-size: .95rem; line-height: 1.9; color: rgba(240,237,232,0.78); font-style: italic; margin-bottom: 32px; padding-left: 20px; border-left: 3px solid var(--green); }
.why33-attribution { display: flex; align-items: center; gap: 16px; }
.why33-dash { width: 36px; height: 2px; background: var(--green); flex-shrink: 0; }
.why33-name { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--text); }
.why33-title { font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); margin-top: 3px; }

/* ─── Amenities Reel ─── */
.amenities-reel { padding: 64px 60px 0; text-align: center; }
.ig-reel-wrap { display: flex; justify-content: center; }
.ig-reel-wrap .instagram-media { min-width: 326px !important; }

/* ─── About ─── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; gap: 10px; }
.about-imgs img:first-child { grid-column: 1; grid-row: 1 / 3; width: 100%; height: 100%; object-fit: cover; }
.about-imgs img:not(:first-child) { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-family: 'Syne', sans-serif; font-size: .92rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-location { display: flex; align-items: center; gap: 12px; margin-top: 32px; font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); }
.about-location::before { content: ''; display: block; width: 40px; height: 2px; background: var(--green); }

/* ─── Amenities ─── */
#amenities { background: var(--dark); }
.amenities-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.amenity-card { background: var(--card); padding: 44px 30px; position: relative; overflow: hidden; transition: transform .35s; }
.amenity-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(103,183,42,.06) 0%, transparent 70%); opacity: 0; transition: opacity .35s; }
.amenity-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.amenity-card:hover { transform: translateY(-5px); }
.amenity-card:hover::before { opacity: 1; }
.amenity-card:hover::after { transform: scaleX(1); }
.amenity-icon { width: 28px; height: 28px; margin-bottom: 20px; display: block; }
.amenity-icon svg { width: 28px; height: 28px; display: block; }
.amenity-card h3 { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: .01em; }
.amenity-card p { font-family: 'Syne', sans-serif; font-size: .78rem; line-height: 1.75; color: rgba(200, 200, 200, 0.82); }

/* ─── Kids Club ─── */
.kidsclub-section { background: var(--black); padding: 112px 60px; }
.kidsclub-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.kidsclub-text p { font-family: 'Syne', sans-serif; font-size: .92rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
.kidsclub-features { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.kidsclub-features li { font-family: 'Syne', sans-serif; font-size: .85rem; color: rgba(240,237,232,0.75); display: flex; align-items: center; gap: 10px; }
.kc-check { color: var(--green); font-size: 1rem; font-weight: 800; flex-shrink: 0; }
.kidsclub-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.kc-ig-btn { display: inline-flex; align-items: center; }

.kidsclub-visual { display: flex; justify-content: center; }
.kidsclub-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 44px 40px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kidsclub-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-light));
}
.kc-photo-wrap { position: relative; margin: -44px -40px 28px; height: 200px; overflow: hidden; }
.kc-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.kc-badge { position: absolute; bottom: 12px; right: 12px; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--green); object-fit: cover; background: var(--black); }
.kc-logo-wrap { margin-bottom: 16px; }
.kc-logo { height: 76px; width: auto; }
.kc-handle { font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .15em; color: var(--green); margin-bottom: 8px; }
.kc-tagline { font-family: 'Syne', sans-serif; font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.kc-divider { width: 40px; height: 1px; background: var(--border); margin: 0 auto 24px; }
.kc-stats { display: flex; justify-content: center; gap: 0; margin-bottom: 28px; }
.kc-stat { flex: 1; padding: 0 12px; }
.kc-stat-num { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--green); }
.kc-stat-label { font-family: 'Syne', sans-serif; font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.kc-stat-sep { width: 1px; background: var(--border); }
.kc-follow-link { font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.kc-follow-link:hover { color: var(--green); }

/* ─── Community Partners ─── */
.partners-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 60px; }
.partners-label { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--green); text-align: center; margin-bottom: 40px; }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.partner-card { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: start; background: var(--dark); border: 1px solid var(--border); padding: 28px; text-decoration: none; transition: border-color .3s; }
.partner-card:hover { border-color: rgba(103,183,42,0.4); }
.partner-img { width: 140px; height: 140px; overflow: hidden; }
.partner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-name { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.partner-ig { font-family: 'Syne', sans-serif; font-size: .60rem; font-weight: 700; letter-spacing: .14em; color: var(--green); margin-bottom: 12px; }
.partner-desc { font-family: 'Syne', sans-serif; font-size: .76rem; line-height: 1.72; color: var(--text-muted); margin-bottom: 14px; }
.partner-cta { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,237,232,0.35); transition: color .2s; }
.partner-card:hover .partner-cta { color: var(--green); }

/* ─── Social / Connect ─── */
.connect-section { background: var(--dark); padding: 112px 60px; }
.connect-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.social-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 3px; }
.social-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
}
.social-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green-dark), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.social-card:hover { border-color: var(--green); transform: translateY(-4px); }
.social-card:hover::after { transform: scaleX(1); }
.social-card-header { display: flex; align-items: center; gap: 16px; }
.social-ig-icon { width: 48px; height: 48px; background: rgba(103,183,42,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-handle { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); }
.social-platform { font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
.social-card-img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border-radius: 2px; overflow: hidden; }
.sc-img { aspect-ratio: 1; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.social-card:hover .sc-img img { transform: scale(1.08); }
.sc-placeholder { background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.sc-placeholder span { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.1rem; font-weight: 900; color: rgba(103,183,42,0.18); }
.social-card-footer { font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }

/* Contact Row */
.contact-row { background: var(--card); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3px; border: 1px solid var(--border); }
.cr-item { padding: 36px 28px; border-right: 1px solid var(--border); text-align: center; }
.cr-item:last-child { border-right: none; }
.cr-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.cr-label { font-family: 'Syne', sans-serif; font-size: .60rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.cr-value { font-family: 'Syne', sans-serif; font-size: .88rem; color: rgba(220, 220, 220, 0.82); line-height: 1.7; }
.cr-value a { color: inherit; text-decoration: none; transition: color .2s; }
.cr-value a:hover { color: var(--green); }
.hours-row { display: flex; justify-content: space-between; gap: 12px; padding: 2px 0; }
.hours-day { color: rgba(240,237,232,0.55); font-size: .80rem; white-space: nowrap; }
.hours-time { color: rgba(220,220,220,0.9); font-weight: 600; font-size: .80rem; white-space: nowrap; }
.hours-note { display: block; font-size: .70rem; color: rgba(240,237,232,0.35); margin-top: 8px; font-style: italic; }

/* ─── Nutrition & Wellness ─── */
#nutrition { background: var(--dark); }
.nutrition-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.nutrition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.nutrition-card { background: var(--card); padding: 52px 44px; position: relative; border: 1px solid transparent; transition: border-color .3s, transform .3s; }
.nutrition-card:hover { border-color: var(--border); transform: translateY(-4px); }
.nutrition-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--green); transition: height .4s ease; }
.nutrition-card:hover::after { height: 100%; }
.nutrition-num { font-family: 'Big Shoulders Display', sans-serif; font-size: 3.5rem; font-weight: 900; color: rgba(103,183,42,.12); line-height: 1; margin-bottom: 20px; }
.nutrition-card h3 { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.nutrition-card p { font-family: 'Syne', sans-serif; font-size: .82rem; line-height: 1.75; color: var(--text-muted); }

/* ─── Events & Community ─── */
#events { background: var(--black); }
.events-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; align-items: start; }
.event-card { background: var(--card); padding: 0; overflow: hidden; position: relative; }
.event-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; flex-shrink: 0; }
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.event-card:nth-child(1) .event-img-wrap img { object-position: center 35%; }
.event-card:nth-child(2) .event-img-wrap img { object-position: center center; }
.event-card:nth-child(3) .event-img-wrap img { object-position: center center; }
.event-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #141414, #1c1c1c); display: flex; align-items: center; justify-content: center; }
.event-placeholder span { font-family: 'Big Shoulders Display', sans-serif; font-size: 3rem; font-weight: 900; color: rgba(103,183,42,.15); }
.event-tag { position: absolute; top: 16px; left: 16px; background: var(--green); color: var(--black); font-family: 'Syne', sans-serif; font-size: .52rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: 5px 12px; }
.event-body { padding: 28px 28px 36px; }
.event-date { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.event-title { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.event-desc { font-family: 'Syne', sans-serif; font-size: .78rem; line-height: 1.7; color: var(--text-muted); }

/* ─── Membership Section ─── */
.membership-section { background: var(--dark); padding: 112px 60px; text-align: center; }
.membership-header { max-width: 640px; margin: 0 auto 56px; }
.billing-toggle { display: inline-flex; background: #0a0a0a; border: 1px solid var(--border); padding: 3px; }
.toggle-btn { padding: 9px 26px; background: none; border: none; color: rgba(240,237,232,0.55); font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.toggle-btn.active { background: var(--green); color: var(--black); }
.save-badge { display: inline-flex; align-items: center; background: rgba(103,183,42,.12); color: var(--green); font-family: 'Syne', sans-serif; font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border: 1px solid rgba(103,183,42,.25); }

/* ─── Pricing Cards V2 ─── */
.pricing-cards-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 1100px; margin: 0 auto 56px; align-items: start; }

.pricing-card-v2 {
  background: #0d0d0d;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.pricing-card-v2:hover { transform: translateY(-4px); }
.pricing-card-v2.featured-card {
  background: #0a0a0a;
  border-color: var(--green);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(103,183,42,0.1), 0 0 0 1px var(--green);
  z-index: 2;
}
.pricing-card-v2.featured-card:hover { transform: scale(1.03) translateY(-4px); }

.pcv2-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--black);
  font-family: 'Syne', sans-serif; font-size: .52rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 18px; white-space: nowrap;
}
.pcv2-hero-badge {
  position: absolute; top: -1px; right: 0;
  background: var(--green-dark); color: #fff;
  font-family: 'Syne', sans-serif; font-size: .5rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px; white-space: nowrap;
}

.pcv2-header { padding: 40px 36px 24px; }
.featured-card .pcv2-header { padding-top: 52px; }
.pcv2-name { font-family: 'Big Shoulders Display', sans-serif; font-size: 2rem; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.pcv2-desc { font-family: 'Syne', sans-serif; font-size: .72rem; color: rgba(240,237,232,0.5); line-height: 1.5; margin-bottom: 28px; min-height: 36px; }
.pcv2-price-wrap { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.pcv2-dollar { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text); align-self: flex-start; margin-top: 4px; }
.pcv2-amount { font-family: 'Big Shoulders Display', sans-serif; font-size: 4.2rem; font-weight: 900; color: var(--text); line-height: 1; }
.featured-card .pcv2-amount { color: var(--green); }
.pcv2-per { font-family: 'Syne', sans-serif; font-size: .82rem; color: rgba(240,237,232,0.5); margin-left: 4px; }
.pcv2-billing-note { font-family: 'Syne', sans-serif; font-size: .72rem; color: rgba(240,237,232,0.5); }
.pcv2-was { font-family: 'Syne', sans-serif; font-size: .68rem; color: rgba(240,237,232,0.3); text-decoration: line-through; margin-top: 3px; }

.pcv2-features { padding: 0 36px 28px; flex: 1; }
.pcv2-feat-label { font-family: 'Syne', sans-serif; font-size: .56rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(240,237,232,0.4); margin-bottom: 12px; }
.pcv2-features ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.pcv2-features li {
  font-family: 'Syne', sans-serif; font-size: .8rem;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(103,183,42,0.08);
}
.pcv2-features li:last-child { border-bottom: none; }
.pcv2-features li.included { color: rgba(240,237,232,0.88); }
.pcv2-features li.not-included { color: rgba(240,237,232,0.28); }
.feat-check { color: var(--green); font-size: .9rem; font-weight: 900; flex-shrink: 0; width: 16px; }
.feat-x { color: rgba(240,237,232,0.2); font-size: .9rem; flex-shrink: 0; width: 16px; }

.pcv2-btn {
  margin: 0 36px 36px;
  padding: 14px 24px;
  background: transparent; border: 1.5px solid var(--border);
  color: rgba(240,237,232,0.7);
  font-family: 'Syne', sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
}
.pcv2-btn:hover { border-color: var(--green); color: var(--green); }
.pcv2-btn.featured-btn { background: var(--green); border-color: var(--green); color: var(--black); }
.pcv2-btn.featured-btn:hover { background: var(--green-light); }

/* ─── Comparison Table ─── */
.comparison-table-wrap { max-width: 1100px; margin: 0 auto; }
.comparison-title { font-family: 'Big Shoulders Display', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--text); text-align: center; margin-bottom: 28px; }
.comparison-table-scroll { overflow-x: auto; border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table thead tr { background: #0a0a0a; border-bottom: 1px solid var(--border); }
.comparison-table th {
  font-family: 'Syne', sans-serif; font-size: .62rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,237,232,0.7); padding: 20px 24px; text-align: center;
}
.comparison-table th.ct-feature-col { text-align: left; color: var(--text); width: 38%; }
.comparison-table th.ct-featured-col { color: var(--green); background: rgba(103,183,42,0.06); }
.comparison-table td { padding: 14px 24px; font-family: 'Syne', sans-serif; font-size: .82rem; text-align: center; color: rgba(240,237,232,0.75); border-bottom: 1px solid rgba(103,183,42,0.06); }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: rgba(240,237,232,0.88); }
.comparison-table td.ct-featured-col { background: rgba(103,183,42,0.04); }
.comparison-table tbody tr:hover td { background: rgba(103,183,42,0.04); }
.comparison-table tbody tr:hover td.ct-featured-col { background: rgba(103,183,42,0.08); }
.ct-price-sub { font-family: 'Syne', sans-serif; font-size: .56rem; color: var(--text-muted); font-weight: 400; letter-spacing: .05em; text-transform: none; display: block; margin-top: 3px; }
.ct-yes { color: var(--green); font-size: 1.1rem; font-weight: 900; }
.ct-no { color: rgba(240,237,232,0.2); font-size: .9rem; }

/* ─── Gallery ─── */
#gallery { background: var(--dark); }
.gallery-header { text-align: center; margin-bottom: 56px; padding: 0 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0); display: flex; align-items: center; justify-content: center; transition: background .35s; }
.gallery-item:hover .gallery-overlay { background: rgba(8,8,8,.45); }
.gallery-overlay svg { opacity: 0; transform: scale(.8); transition: all .3s; }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* ─── Contact ─── */
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-detail-label { font-family: 'Syne', sans-serif; font-size: .56rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.contact-detail-value { font-family: 'Syne', sans-serif; font-size: .88rem; color: rgba(240,237,232,0.65); line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: 'Syne', sans-serif; font-size: .56rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea { background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 13px 16px; font-family: 'Syne', sans-serif; font-size: .84rem; width: 100%; transition: border-color .2s; appearance: none; cursor: text; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(240,237,232,.2); }

/* ─── Footer ─── */
footer { background: #040404; border-top: 1px solid var(--border); padding: 60px 60px 36px; }
.footer-top { display: grid; grid-template-columns: 220px 1fr; gap: 60px; margin-bottom: 52px; }
.footer-logo { height: 44px; margin-bottom: 16px; display: block; }
.footer-tagline { font-family: 'Syne', sans-serif; font-size: .74rem; color: var(--text-muted); line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: .56rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-family: 'Syne', sans-serif; color: var(--text-muted); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 36px; border-top: 1px solid var(--border); }
.footer-bottom p { font-family: 'Syne', sans-serif; font-size: .65rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-family: 'Syne', sans-serif; color: var(--text-muted); text-decoration: none; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
.footer-social a:hover { color: var(--green); }

/* ─── Modal ─── */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; backdrop-filter: blur(14px); }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: #080808; border: 1px solid rgba(103,183,42,0.22); width: 90%; max-width: 540px; max-height: 90vh; overflow-y: auto; padding: 52px; position: relative; transform: translateY(24px); transition: transform .35s; }
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 22px; background: none; border: none; color: var(--text-muted); font-size: 1.6rem; cursor: pointer; line-height: 1; transition: color .2s; }
.modal-close:hover { color: var(--green); }
.modal h2 { font-family: 'Big Shoulders Display', sans-serif; font-size: 2.4rem; font-weight: 900; margin-bottom: 6px; }
.modal-eyebrow { font-family: 'Syne', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.modal .green-line { margin: 20px 0 26px; }
.modal-billing-toggle { display: flex; background: #0a0a0a; border: 1px solid var(--border); padding: 3px; margin-bottom: 22px; width: fit-content; }
.modal-billing-toggle .toggle-btn { padding: 8px 20px; }
.modal-tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.tier-option {
  padding: 20px 18px;
  border: 1.5px solid rgba(103,183,42,0.2);
  background: #0a0a0a;
  cursor: pointer;
  transition: border-color .25s, background .25s;
  position: relative;
}
.tier-option.selected { border-color: var(--green); background: rgba(103,183,42,0.07); }
.tier-option-check { position: absolute; top: 12px; right: 14px; width: 16px; height: 16px; border: 1.5px solid rgba(103,183,42,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.tier-option.selected .tier-option-check { background: var(--green); border-color: var(--green); }
.tier-option.selected .tier-option-check::after { content: ''; width: 6px; height: 6px; background: var(--black); border-radius: 50%; }
.tier-option-label { font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,237,232,0.7); margin-bottom: 8px; }
.tier-option-price { font-family: 'Big Shoulders Display', sans-serif; font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.tier-option.selected .tier-option-price { color: var(--green); }
.tier-option-price span { font-family: 'Syne', sans-serif; font-size: .72rem; color: rgba(240,237,232,0.55); }
.tier-option-sub { font-family: 'Syne', sans-serif; font-size: .65rem; color: rgba(240,237,232,0.55); margin-top: 6px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }

/* ─── Mindbody modal ─── */
.modal-mindbody { max-width: 600px; }
.healcode-wrap { width: 100%; }
.healcode-wrap healcode-widget { display: block; width: 100%; }
.healcode-wrap *:not(input):not(select):not(textarea):not(option) { color: rgba(240, 237, 232, 0.9) !important; }
.healcode-wrap input,
.healcode-wrap input:focus,
.healcode-wrap input:active,
.healcode-wrap input:hover,
.healcode-wrap select,
.healcode-wrap select:focus,
.healcode-wrap textarea,
.healcode-wrap textarea:focus {
  background-color: #2a2a2a !important;
  color: rgba(240, 237, 232, 0.88) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.healcode-wrap input:-webkit-autofill,
.healcode-wrap input:-webkit-autofill:hover,
.healcode-wrap input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #2a2a2a inset !important;
  -webkit-text-fill-color: rgba(240, 237, 232, 0.88) !important;
}

/* ─── Lightbox ─── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.97); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 92vw; max-height: 88vh; object-fit: contain; transition: opacity .16s; }
.lb-btn { position: absolute; background: rgba(103,183,42,.1); border: 1px solid var(--border); color: var(--text); cursor: pointer; transition: background .2s, color .2s; display: flex; align-items: center; justify-content: center; }
.lb-btn:hover { background: var(--green); color: var(--black); }
.lb-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 1.3rem; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: 'Syne', sans-serif; font-size: .62rem; letter-spacing: .2em; color: var(--text-muted); }

/* ─── Keyframes ─── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── Shiny Button System ─── */
@property --sx {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 100%;
}
@keyframes btn-shine {
  0%        { --sx: 100%; }
  65%       { --sx: -100%; }
  65.01%, 100% { --sx: 100%; }
}

.btn-primary, .btn-outline, .nav-cta, .pcv2-btn, .kc-ig-btn {
  position: relative !important;
  overflow: hidden !important;
  animation: btn-shine 3s ease-in-out var(--shine-d, 0s) infinite;
  z-index: 0;
}

/* Shimmer sweep — border-only mask (mirrors React component's maskComposite: exclude) */
.btn-primary::after, .btn-outline::after, .nav-cta::after, .pcv2-btn::after, .kc-ig-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    -75deg,
    rgba(103,183,42,0.12) calc(var(--sx) + 20%),
    rgba(103,183,42,0.80) calc(var(--sx) + 25%),
    rgba(103,183,42,0.12) calc(var(--sx) + 100%)
  );
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}

/* Featured/green-fill buttons get white shimmer so it reads on colored bg */
.pcv2-btn.featured-btn::after, .kc-ig-btn::after {
  background: linear-gradient(
    -75deg,
    rgba(255,255,255,0.06) calc(var(--sx) + 20%),
    rgba(255,255,255,0.55) calc(var(--sx) + 25%),
    rgba(255,255,255,0.06) calc(var(--sx) + 100%)
  );
}

/* Tap scale — mirrors Framer's whileTap: { scale: 0.95 } */
.btn-primary:active, .btn-outline:active, .nav-cta:active, .pcv2-btn:active, .kc-ig-btn:active {
  transform: scale(0.96) !important;
  transition: transform .08s !important;
}

/* btn-primary — dark card with green radial glow */
.btn-primary {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.22) 0%, #141414 72%) !important;
  color: var(--text) !important;
  border: none !important;
  transition: background .3s, transform .25s, box-shadow .3s;
}
.btn-primary:hover {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.32) 0%, #1a1a1a 72%) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(103,183,42,0.16);
}

/* btn-outline — same dark treatment for consistency */
.btn-outline {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.10) 0%, #141414 72%) !important;
  color: var(--text) !important;
  border: none !important;
  transition: background .3s, transform .25s, box-shadow .3s;
}
.btn-outline:hover {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.20) 0%, #1a1a1a 72%) !important;
  color: var(--text) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(103,183,42,0.10);
}

/* nav-cta — match the dark shiny look */
.nav-cta {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.16) 0%, #141414 72%) !important;
  color: var(--text) !important;
  border: none !important;
  transition: background .3s, color .3s, box-shadow .3s;
}
.nav-cta:hover {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.28) 0%, #1a1a1a 72%) !important;
  color: var(--text) !important;
  box-shadow: 0 0 20px rgba(103,183,42,0.14);
}

/* pcv2-btn — dark shiny; featured keeps green fill */
.pcv2-btn {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.14) 0%, #0d0d0d 72%) !important;
  color: var(--text) !important;
  border: none !important;
  transition: background .3s, transform .25s;
}
.pcv2-btn:hover {
  background: radial-gradient(circle at 50% 0%, rgba(103,183,42,0.26) 0%, #141414 72%) !important;
  color: var(--text) !important;
}
.pcv2-btn.featured-btn {
  background: var(--green) !important;
  color: var(--black) !important;
}
.pcv2-btn.featured-btn:hover {
  background: var(--green-light) !important;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding: 18px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 28px; }
  .kidsclub-section, .connect-section, .membership-section, .why33-section { padding: 80px 28px; }
  .why33-inner { grid-template-columns: 1fr; gap: 48px; }
  .why33-img img { height: 360px; }
  .amenities-reel { padding: 48px 28px 0; }
  .stats-bar { padding: 32px 28px; grid-template-columns: repeat(2, 1fr); }
  #about { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { grid-template-rows: 200px 200px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .kidsclub-inner { grid-template-columns: 1fr; gap: 48px; }
  .social-cards { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: repeat(2, 1fr); }
  .contact-row .cr-item:nth-child(3) { border-top: 1px solid var(--border); }
  .contact-row .cr-item:nth-child(4) { border-top: 1px solid var(--border); }
  .nutrition-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards-v2 { grid-template-columns: 1fr; max-width: 440px; gap: 12px; }
  .pricing-card-v2.featured-card { transform: none; box-shadow: 0 0 40px rgba(103,183,42,0.12); }
  .pricing-card-v2.featured-card:hover { transform: translateY(-4px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  #contact { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .verse-section { padding: 56px 28px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(72px, 20vw, 110px); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px 18px; }
  section { padding: 64px 18px; }
  .kidsclub-section, .connect-section, .membership-section, .why33-section { padding: 64px 18px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .cr-item { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-header { padding: 0 18px; }
  .footer-links { grid-template-columns: 1fr; }
  .modal { padding: 32px 18px; }
  .modal-tier-grid { grid-template-columns: 1fr; }
  footer { padding: 44px 18px 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-cards-v2 { max-width: 100%; }
  .kidsclub-actions { flex-direction: column; }

  /* Partners — fix broken 2-col layout on narrow screens */
  .partners-strip { padding: 48px 18px; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 100px 1fr; gap: 16px; padding: 20px; }
  .partner-img { width: 100px; height: 100px; }

  /* Kids Club — negative margins must match section padding */
  .kc-photo-wrap { margin: -44px -18px 28px; }

  /* Comparison table — smooth horizontal scroll on iOS */
  .comparison-table-scroll { -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 520px; }

  /* Billing toggle full width */
  .billing-toggle { display: flex; width: 100%; }
  .toggle-btn { flex: 1; text-align: center; }

  /* Verse */
  .verse-section { padding: 56px 18px; }
  .verse-text { font-size: clamp(1.3rem, 5.5vw, 2rem); }
}

/* ─── Mobile menu Join Now button ─── */
.mobile-join-btn {
  margin-top: 8px;
  padding: 16px 48px;
  background: var(--green);
  color: var(--black);
  border: none;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  touch-action: manipulation;
}
.mobile-join-btn:active { background: var(--green-light); }

/* ─── iPhone-specific (390px and below) ─── */
@media (max-width: 430px) {
  /* iOS Safari 100vh fix — use dynamic viewport */
  #hero { height: 100dvh; min-height: 0; }

  /* Hero background — disable parallax transform on iOS, force full coverage */
  .hero-bg {
    transform: none !important;
    will-change: auto !important;
    background-attachment: scroll !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Hide cursor glow — touch devices have no cursor */
  .cursor-glow { display: none !important; }

  /* Hero content — ensure centered */
  .hero-content { width: 100%; padding: 0 20px; }
  .hero-logo-img { height: clamp(130px, 36vw, 190px); }
  .hero-eyebrow { letter-spacing: .14em; font-size: .58rem; }
  .hero-subtitle { letter-spacing: .10em; font-size: .58rem; margin-bottom: 28px; }
  .hero-actions { gap: 10px; flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 14px 0; font-size: .62rem; width: 100%; max-width: 280px; text-align: center; display: block; }

  /* Nav */
  nav, nav.scrolled { padding: 16px 18px; }
  .nav-logo { height: 36px; }

  /* Mobile menu font size */
  .mobile-menu a { font-size: 2rem; }
  .mobile-menu { gap: 24px; }

  /* Sections */
  section { padding: 56px 16px; }
  .kidsclub-section, .connect-section, .membership-section, .why33-section { padding: 56px 16px; }

  /* Section headings */
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }

  /* Why 33 */
  .why33-img img { height: 240px; }
  .why33-quote { font-size: .84rem; padding-left: 14px; }

  /* About images */
  .about-imgs { grid-template-rows: 160px 160px; }

  /* Amenities */
  .amenity-card { padding: 32px 20px; }

  /* Partners */
  .partners-strip { padding: 40px 16px; }
  .partner-card { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; }
  .partner-img { width: 80px; height: 80px; }
  .partner-name { font-size: 1.05rem; }
  .partner-desc { font-size: .70rem; }

  /* Kids Club card */
  .kidsclub-card { padding: 44px 20px 28px; }
  .kc-photo-wrap { margin: -44px -20px 24px; }

  /* Pricing */
  .pcv2-header { padding: 32px 20px 18px; }
  .featured-card .pcv2-header { padding-top: 44px; }
  .pcv2-features { padding: 0 20px 20px; }
  .pcv2-btn { margin: 0 20px 24px; }
  .pcv2-amount { font-size: 3.4rem; }

  /* Events — aspect-ratio handles scaling, no fixed height needed */

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }

  /* Modal */
  .modal { width: 100%; max-height: 100dvh; border-radius: 0; border-left: none; border-right: none; padding: 28px 16px; }
  .modal-backdrop { align-items: flex-end; }

  /* Contact */
  .cr-item { padding: 24px 16px; }
  .hours-row { flex-direction: column; gap: 2px; }
  .hours-day, .hours-time { font-size: .75rem; }

  /* Footer */
  footer { padding: 40px 16px 24px; }
  .footer-bottom { gap: 10px; }

  /* Contact form */
  .form-input, .form-select, .form-textarea { font-size: 16px; } /* prevents iOS auto-zoom on focus */
}
