@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --royal: #0057FF;
  --electric: #00ABFF;
  --lime: #B6FF00;
  --lime-dark: #8ACC00;
  --silver: #C8D0E0;
  --navy: #0A0E1A;
  --dark: #111827;
  --mid-dark: #1C2333;
  --card-dark: #161D2E;
  --white: #FFFFFF;
  --off: #F6F7FA;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #E5E7EB;
  --text-dark: #CBD5E1;
  --muted-dark: #64748B;
  --grad-blue: linear-gradient(135deg, #0057FF 0%, #00ABFF 100%);
  --grad-lime: linear-gradient(135deg, #B6FF00 0%, #7FCC00 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--navy); font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #0057FF, #00ABFF, #B6FF00) 1;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 48px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(0,171,255,0.3)); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver);
  text-decoration: none; padding: 0.4rem 0.8rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(0,87,255,0.2); }
.nav-cta {
  background: var(--grad-lime) !important; color: var(--navy) !important;
  font-weight: 900 !important; border-radius: 100px !important;
  padding: 0.5rem 1.25rem !important; box-shadow: 0 0 20px rgba(182,255,0,0.3) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(182,255,0,0.5) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
}
.hero-bg-glow { position: absolute; inset: 0; pointer-events: none; }
.hero-glow-1 { position: absolute; top: -100px; left: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,87,255,0.18) 0%, transparent 70%); }
.hero-glow-2 { position: absolute; top: 20%; right: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,171,255,0.12) 0%, transparent 70%); }
.hero-glow-3 { position: absolute; bottom: -50px; right: 30%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(182,255,0,0.1) 0%, transparent 70%); }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,87,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,87,255,0.05) 1px, transparent 1px); background-size: 50px 50px; }

.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(182,255,0,0.15), rgba(182,255,0,0.05));
  border: 1px solid rgba(182,255,0,0.3);
  color: var(--lime); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  line-height: 0.88; letter-spacing: 0.02em; color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title .blue { background: linear-gradient(90deg, #0057FF, #00ABFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.hero-title .lime { color: var(--lime); display: block; }
.hero-sub { font-size: 1rem; color: var(--text-dark); font-weight: 700; line-height: 1.7; margin-bottom: 1.75rem; max-width: 460px; }
.hero-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; }
.hero-tagline span { color: var(--electric); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-lime {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-lime); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(182,255,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(182,255,0,0.5); }
.btn-blue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-blue); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,87,255,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,87,255,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--electric); background: rgba(0,171,255,0.1); }

.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-dark); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dark); }

.hero-logo-display { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-logo-display img { width: 100%; max-width: 480px; filter: drop-shadow(0 0 40px rgba(0,87,255,0.4)) drop-shadow(0 0 80px rgba(0,171,255,0.2)); }

/* ── TAPE ── */
.tape { overflow: hidden; white-space: nowrap; padding: 0; }
.tape-inner { display: inline-flex; animation: marquee 24s linear infinite; }
.tape-inner span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 2rem; }
.tape-inner .dot { font-size: 1rem; padding: 0 0.75rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tape-blue { background: var(--royal); padding: 0.55rem 0; }
.tape-blue span { color: var(--white); }
.tape-blue .dot { color: var(--lime); }
.tape-lime { background: var(--lime); padding: 0.45rem 0; }
.tape-lime span { color: var(--navy); }
.tape-lime .dot { color: var(--royal); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4.5vw, 3.8rem); line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; max-width: 560px; line-height: 1.7; font-weight: 700; }

/* DARK SECTIONS */
.dark-section { background: var(--dark); color: var(--white); }
.dark-section .section-eyebrow { color: var(--lime); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-title .accent { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dark-section .section-sub { color: var(--text-dark); }

/* LIGHT SECTIONS */
.light-section { background: var(--off); }
.light-section .section-eyebrow { color: var(--royal); }
.light-section .section-title { color: var(--navy); }
.light-section .section-title .accent { color: var(--royal); }
.light-section .section-sub { color: #6B7280; }

.white-section { background: var(--white); }
.white-section .section-eyebrow { color: var(--royal); }
.white-section .section-title { color: var(--navy); }
.white-section .section-title .accent { color: var(--royal); }
.white-section .section-sub { color: #6B7280; }

/* ── PROGRAM CARDS ── */
.program-card { border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.program-top { padding: 1.75rem; }
.program-body { padding: 1.5rem 1.75rem 1.75rem; background: var(--white); }
.tier-badge { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 0.75rem; }
.program-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.02em; line-height: 1; }
.program-tagline { font-size: 0.82rem; margin-top: 0.3rem; font-weight: 700; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.feat-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; font-weight: 700; color: #4B5563; }
.feat-list li::before { content: '✓'; font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ── PHOTO PLACEHOLDERS ── */
.photo-slot { border-radius: 16px; overflow: hidden; background: var(--mid-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 2rem; border: 2px dashed rgba(0,171,255,0.3); transition: border-color 0.2s; }
.photo-slot:hover { border-color: var(--electric); }
.photo-slot-icon { font-size: 2.5rem; }
.photo-slot-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; }
.photo-slot-hint { font-size: 0.72rem; color: rgba(0,171,255,0.6); font-weight: 700; text-align: center; }

/* ── COACHES ── */
.coach-card { background: var(--card-dark); border: 1px solid var(--border-dark); border-radius: 16px; padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; transition: border-color 0.3s; }
.coach-card:hover { border-color: rgba(0,171,255,0.3); }
.coach-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; flex-shrink: 0; }
.coach-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--white); margin-bottom: 0.15rem; }
.coach-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--electric); margin-bottom: 0.6rem; }
.coach-bio { font-size: 0.88rem; color: var(--text-dark); line-height: 1.65; font-weight: 700; }

/* ── LOCATION ── */
.location-card { background: var(--white); border-radius: 20px; padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 2px solid var(--border-light); }
.location-detail { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; font-weight: 700; color: #4B5563; }
.location-icon { width: 34px; height: 34px; background: linear-gradient(135deg, #0057FF, #00ABFF); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.location-map { background: linear-gradient(135deg, #E8F0FF, #EFF8FF); border-radius: 12px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; border: 2px solid rgba(0,87,255,0.15); }

/* ── SPONSOR STRIP ── */
.sponsor-strip { background: linear-gradient(135deg, var(--navy) 0%, #0C1528 50%, var(--navy) 100%); position: relative; overflow: hidden; }
.sponsor-strip::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,87,255,0.15) 0%, transparent 70%); }
.sponsor-strip::after { content: ''; position: absolute; bottom: -80px; left: 20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(182,255,0,0.08) 0%, transparent 70%); }
.sponsor-tier-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; transition: border-color 0.2s; }
.sponsor-tier-card:hover { border-color: rgba(0,171,255,0.3); }
.sponsor-tier-card.featured { border-color: rgba(182,255,0,0.4); background: rgba(182,255,0,0.06); }
.sponsor-tier-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--white); letter-spacing: 0.05em; }
.sponsor-tier-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; background: var(--grad-lime); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── JOIN ── */
.join-section { background: var(--navy); position: relative; overflow: hidden; }
.join-form-box { background: var(--white); border-radius: 20px; padding: 2.5rem; }
.join-check-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); padding: 0.4rem 0; }
.join-check-dot { width: 22px; height: 22px; background: var(--grad-lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; color: var(--navy); flex-shrink: 0; }

/* ── VALUES ── */
.value-card { padding: 1.75rem; border-radius: 12px; background: var(--card-dark); border: 1px solid var(--border-dark); transition: border-color 0.3s, transform 0.3s; }
.value-card:hover { border-color: rgba(182,255,0,0.25); transform: translateY(-3px); }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; background: var(--grad-lime); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.4rem; }
.value-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.value-desc { font-size: 0.84rem; color: var(--text-dark); line-height: 1.55; font-weight: 700; }

/* ── FOOTER ── */
footer { background: #070A12; color: var(--white); padding: 4rem 2rem 2rem; border-top: 1px solid var(--border-dark); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-dark); font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; font-weight: 700; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-dark); text-decoration: none; font-size: 0.88rem; font-weight: 700; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted-dark); font-weight: 700; }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; background: var(--grad-lime); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--text-dark); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.05em; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social a:hover { background: var(--royal); color: var(--white); border-color: var(--royal); }

/* ── GRID UTILS (use these instead of inline grid-template-columns) ── */
.grid-3, .cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2, .cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4, .cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── MOBILE NAV (used on about/programs/camps/competitions/sponsors/shop/contact) ── */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(0,87,255,0.3);
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--silver);
  text-decoration: none; padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .m-cta {
  margin-top: 0.75rem; text-align: center; border-radius: 100px;
  background: var(--grad-lime) !important; color: var(--navy) !important;
  font-weight: 900 !important; border-bottom: none !important;
}

/* ── FOOTER (foot-* naming used on inner pages) ── */
.foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.foot-brand p { color: var(--text-dark); font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; font-weight: 700; }
.foot-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 1rem; }
.foot-col ul { list-style: none; padding-left: 0; }
.foot-col ul li { margin-bottom: 0.5rem; list-style: none; }
.foot-col ul li a { color: var(--text-dark); text-decoration: none; font-size: 0.88rem; font-weight: 700; transition: color 0.2s; }
.foot-col ul li a:hover { color: var(--lime); }
.foot-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted-dark); font-weight: 700; flex-wrap: wrap; gap: 0.75rem; }
.foot-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; background: var(--grad-lime); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--text-dark); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.05em; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.social a:hover { background: var(--royal); color: var(--white); border-color: var(--royal); }

/* ── RESPONSIVE: TABLET (≤960px) ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo-display { margin-top: 2rem; }
  .grid-3, .cols-3, .grid-4, .cols-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .cols-2 { grid-template-columns: 1fr; }
  .footer-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .location-card { grid-template-columns: 1fr; }

  /* Neutralize inline 2/3/4-col grids site-wide on inner pages */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}

/* ── RESPONSIVE: MOBILE (≤600px) ── */
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  nav { padding: 0 1.25rem; }
  .grid-3, .cols-3, .grid-4, .cols-4 { grid-template-columns: 1fr; }
  .footer-grid, .foot-grid { grid-template-columns: 1fr; }
  .footer-bottom, .foot-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Stack ALL multi-column inline grids to single column on phones */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] { grid-template-columns: 1fr !important; }

  .coach-card { flex-direction: column; text-align: center; }
  .coach-card img, .coach-avatar { margin: 0 auto; }
  .location-card { padding: 1.75rem !important; }
}
