/* ═══════════════════════════════════════════════════════════
   Cottonwood FC — Main Stylesheet
   Theme: Bright & Bold (Concept 4)
   ═══════════════════════════════════════════════════════════ */

:root {
  --red:        #C41E3A;
  --red-hover:  #A5182F;
  --orange:     #F7931E;
  --dark:       #1A1A1A;
  --body:       #3A3A3A;
  --warm-white: #FAFAF8;
  --light:      #F3EEE8;
  --border:     #E5DDD4;
  --white:      #FFFFFF;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-white);
  color: var(--body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ──────────────────────────────────────────────────── */
#site-nav {
  position: sticky; top: 0; z-index: 200;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
/* WordPress custom logo wraps in <a><img></a> — target that */
.nav-logo .custom-logo-link img { height: 36px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--body); text-decoration: none;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--red); }

.nav-btn {
  background: var(--red) !important; color: white !important;
  padding: 11px 24px; border-radius: 28px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.28);
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--orange) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.25s; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  min-height: 88vh; overflow: hidden;
  position: relative; background: white;
}

.hero-left {
  background: white; padding: 80px 8% 80px 6%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,30,58,0.08); color: var(--red);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 20px; margin-bottom: 28px; width: fit-content;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; }

h1.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08; color: var(--dark);
  margin-bottom: 24px; letter-spacing: -1px; text-transform: uppercase;
}
h1.hero-headline em { font-style: italic; color: var(--red); }

.hero-mission {
  font-size: 0.97rem; color: #666; line-height: 1.8;
  max-width: 460px; margin-bottom: 40px; font-weight: 500;
  border-left: 3px solid var(--red); padding-left: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; padding: 15px 34px;
  background: var(--red); color: white;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  box-shadow: 0 6px 20px rgba(196,30,58,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,30,58,0.45); background: var(--red-hover); }

.btn-outline {
  display: inline-block; padding: 13px 34px;
  border: 2px solid var(--border); color: var(--dark);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--red); background: rgba(196,30,58,0.04); }

.hero-badges {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-badge strong { display: block; font-size: 1.9rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero-badge span { font-size: 0.72rem; color: #999; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.hero-right {
  background: linear-gradient(145deg, var(--red) 0%, #8B0F20 60%, #5A0010 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px;
  padding: 60px 40px 60px 90px;
  /* Diagonal — Concept 4 style, steepened.
     Top-left pulled right (narrow at top), bottom-left at 0 (wider at bottom). */
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-right-pattern {
  background-image:
    repeating-linear-gradient(-55deg, transparent, transparent 18px,
      rgba(255,255,255,0.045) 18px, rgba(255,255,255,0.045) 19px),
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px) !important;
  background-size: 100% 100%, 30px 30px !important;
}
.hero-right-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-shield {
  position: relative; z-index: 2;
  width: 140px; height: 158px;
  background: rgba(255,255,255,0.12); border-radius: 12px 12px 70px 70px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.hero-shield img { width: 110px; height: auto; }

.hero-announcement {
  position: relative; z-index: 2;
  background: white; border-radius: 16px; padding: 26px 30px;
  max-width: 320px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.announce-label { font-size: 0.66rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.announce-title { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 8px; line-height: 1.3; text-transform: uppercase; }
.announce-detail { font-size: 0.8rem; color: #777; line-height: 1.65; margin-bottom: 18px; }
.announce-btn {
  display: inline-block; padding: 11px 24px;
  background: var(--red); color: white; font-size: 0.78rem; font-weight: 800;
  border-radius: 24px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.35);
  transition: background 0.2s;
}
.announce-btn:hover { background: var(--orange); }
.hero-orange-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--red);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); color: white; }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 0.67rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }

/* ── SHARED SECTION ───────────────────────────────────────── */
section { padding: 88px 5%; }
.sec-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 4px; color: var(--orange); text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 48px; color: var(--dark); }
.sec-title.centered, .sec-eyebrow.centered { text-align: center; }

/* ── MISSION ──────────────────────────────────────────────── */
.mission-sect { background: var(--light); }
.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 5px; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.mission-quote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700; line-height: 1.7; color: var(--dark);
  margin-bottom: 60px; position: relative; padding: 0 28px;
}
.mission-quote::before {
  content: '"'; position: absolute; left: -4px; top: -24px;
  font-size: 6rem; color: var(--red); line-height: 1; opacity: 0.25;
  font-family: Georgia, serif;
}
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: rgba(196,30,58,0.2); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pillar h3 { font-size: 0.92rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; color: var(--red); }
.pillar p { font-size: 0.83rem; color: #777; line-height: 1.75; }

/* ── QUICK ACTIONS ────────────────────────────────────────── */
.quick { background: var(--warm-white); }
.actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.action-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 34px 22px; text-align: center;
  text-decoration: none; color: var(--dark);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.action-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.action-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: rgba(196,30,58,0.25); }
.action-card:hover::after { transform: scaleX(1); }
.action-icon { font-size: 2.4rem; margin-bottom: 16px; }
.action-card h3 { font-size: 0.88rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; color: var(--dark); }
.action-card p { font-size: 0.82rem; color: #888; line-height: 1.65; }
.action-arrow { margin-top: 18px; color: var(--red); font-size: 1.1rem; font-weight: 700; }

/* ── DEVELOPMENT PHILOSOPHY ───────────────────────────────── */
.dev-sect { background: var(--light); }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.dev-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.1; color: var(--dark);
}
.dev-left h2 span { color: var(--red); }
.dev-intro { font-size: 0.92rem; color: #777; line-height: 1.8; margin-bottom: 32px; }
.dev-cta {
  display: inline-block; padding: 14px 32px;
  background: var(--red); color: white;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.28);
  transition: background 0.2s;
}
.dev-cta:hover { background: var(--orange); }
.dev-principles { display: flex; flex-direction: column; gap: 14px; }
.principle {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 22px;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.principle:hover { border-left-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.principle-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.principle-text strong { display: block; font-size: 0.83rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.principle-text p { font-size: 0.8rem; color: #888; line-height: 1.65; }

/* ── PARENT EXPECTATIONS ──────────────────────────────────── */
.parents-sect { background: var(--warm-white); }
.parents-inner { max-width: 800px; margin: 0 auto; }
.parents-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.parent-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.parent-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.parent-icon { font-size: 2rem; margin-bottom: 16px; }
.parent-card h3 { font-size: 0.88rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.parent-card p { font-size: 0.85rem; color: #777; line-height: 1.75; }

/* ── NEWS ─────────────────────────────────────────────────── */
.news-sect { background: var(--light); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.view-all { font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.view-all:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.archive-grid { grid-template-columns: repeat(3, 1fr); }
.news-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.news-thumb { height: 175px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-thumb.t1 { background: linear-gradient(135deg, #fce8eb, #f9c0c9); }
.news-thumb.t2 { background: linear-gradient(135deg, #fef0e0, #fcd9b0); }
.news-thumb.t3 { background: linear-gradient(135deg, #fce8eb, #fcd5ba); }
.news-emoji { font-size: 3.5rem; }
.news-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-red    { background: rgba(196,30,58,0.12); color: var(--red); }
.badge-orange { background: rgba(247,147,30,0.15); color: #b85a00; }
.news-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.7rem; color: var(--orange); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.news-ttl { font-size: 1rem; font-weight: 800; line-height: 1.4; margin-bottom: 10px; color: var(--dark); }
.news-exc { font-size: 0.82rem; color: #888; line-height: 1.65; margin-bottom: 14px; flex: 1; }
.news-link { font-size: 0.75rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.news-link:hover { text-decoration: underline; }

/* ── AGE GROUPS ───────────────────────────────────────────── */
.age-sect { background: var(--warm-white); }
.age-intro { max-width: 560px; color: #888; line-height: 1.8; font-size: 0.92rem; margin-bottom: 52px; }
.age-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.age-card {
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 14px; text-align: center;
  text-decoration: none; color: var(--dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.age-card:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); color: white; box-shadow: 0 10px 28px rgba(196,30,58,0.3); }
.age-hex {
  width: 50px; height: 50px;
  background: linear-gradient(145deg, var(--red), var(--orange));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: white; margin: 0 auto 12px;
}
.age-name { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.age-detail { font-size: 0.7rem; color: #aaa; }
.age-card:hover .age-detail { color: rgba(255,255,255,0.7); }

/* ── TRYOUTS BAND ─────────────────────────────────────────── */
.tryouts-band {
  background: linear-gradient(135deg, #8B0F20, var(--red), var(--orange));
  padding: 72px 5%; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: white;
}
.tryouts-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.tryouts-band p { margin-top: 8px; opacity: 0.9; font-size: 0.92rem; }
.btn-white {
  display: inline-block; padding: 15px 34px; background: white; color: var(--red);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 28px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--dark); color: white; }

/* ── APPAREL ──────────────────────────────────────────────── */
.apparel-band {
  background: var(--light);
  padding: 64px 5%; display: flex; align-items: center; justify-content: space-between; gap: 32px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.apparel-slogan { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; color: var(--dark); margin-bottom: 8px; }
.apparel-slogan em { font-style: italic; color: var(--red); }
.apparel-desc { font-size: 0.9rem; color: #888; line-height: 1.7; max-width: 480px; }
.apparel-tags { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.apparel-tag {
  background: white; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--body);
}

/* ── SPONSORS ─────────────────────────────────────────────── */
.sponsors-sect { background: white; text-align: center; padding: 72px 5%; }

/* New CPT-driven sponsor grid */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px 32px;
  align-items: center; justify-items: center;
  max-width: 1180px; margin: 0 auto;
}
.sponsor-tile {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 110px;
  padding: 16px 20px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  filter: grayscale(0%);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s, background 0.18s;
  text-decoration: none;
}
.sponsor-tile img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  display: block;
}
a.sponsor-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  background: white;
  border-color: rgba(196,30,58,0.25);
}
@media (max-width: 600px) {
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sponsor-tile { height: 90px; padding: 10px 14px; }
}

/* Legacy strip (kept for backwards compatibility) */
.sponsor-strip { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 44px; }
.sponsor-box {
  padding: 18px 36px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 3px; color: #bbb; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.sponsor-box:hover { color: var(--dark); border-color: var(--dark); }

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer { background: var(--dark); border-top: 3px solid var(--red); padding: 64px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.f-logo img,
.f-logo .custom-logo-link img { height: 44px; width: auto; max-width: 100%; margin-bottom: 16px; display: block; }
/* On phones a fixed height + max-width:100% squishes the wide logo — let it scale proportionally */
@media (max-width: 600px) {
  .f-logo img,
  .f-logo .custom-logo-link img { height: auto; width: auto; max-width: 240px; }
}
.f-desc { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 18px; }
.f-contact { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.f-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.f-contact a:hover { color: white; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 0.72rem; font-weight: 800;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.social-handle { font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-top: 10px; }
.f-col h4 { font-size: 0.65rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.f-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.26); }

/* ── INNER PAGES ──────────────────────────────────────────── */
.page-hero {
  background: white; border-bottom: 1px solid var(--border);
  padding: 56px 5% 52px;
}
.page-hero-inner { max-width: 860px; }
.page-breadcrumb {
  font-size: 0.75rem; color: #aaa; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.page-breadcrumb a { color: var(--red); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.5px; color: var(--dark);
  line-height: 1.1;
}
.post-meta-hero { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.post-cat-badge { background: rgba(196,30,58,0.1); color: var(--red); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.post-date { font-size: 0.8rem; color: #aaa; font-weight: 600; }

.page-content-wrap { padding: 64px 5% 80px; }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.single-post .page-content-inner { max-width: 780px; }

/* WordPress block editor content styles */
.entry-content {
  font-size: 1rem; line-height: 1.8; color: var(--body);
}
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-weight: 800; color: var(--dark); margin: 1.5em 0 0.6em; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.3px;
}
.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.2rem; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content a:hover { color: var(--orange); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content img { border-radius: 8px; margin: 1.5em 0; }
.entry-content blockquote {
  border-left: 4px solid var(--red); padding: 12px 20px;
  background: var(--light); border-radius: 0 8px 8px 0;
  margin: 1.5em 0; font-style: italic; color: #555;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.9rem; }
.entry-content th { background: var(--red); color: white; padding: 10px 14px; text-align: left; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.75rem; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.entry-content tr:hover td { background: var(--light); }

/* Post nav */
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-nav-link { font-size: 0.82rem; font-weight: 700; color: var(--red); text-decoration: none; max-width: 45%; }
.post-nav-link:hover { text-decoration: underline; }
.back-to-news { display: inline-block; margin-top: 24px; font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.back-to-news:hover { text-decoration: underline; }

/* Archive pagination */
.archive-pagination { margin-top: 56px; text-align: center; }
.archive-pagination .nav-links { justify-content: center; gap: 8px; }
.archive-pagination a, .archive-pagination span {
  display: inline-block; padding: 8px 16px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  border: 1px solid var(--border); color: var(--body); transition: all 0.2s;
}
.archive-pagination a:hover, .archive-pagination .current {
  background: var(--red); color: white; border-color: var(--red);
}

/* ── INNER PAGE SHARED UTILITIES ─────────────────────────── */
.inner-sect { padding: 80px 5%; }
.inner-sect.bg-white { background: white; }
.inner-sect.bg-light  { background: var(--light); }
.inner-wrap { max-width: 1100px; margin: 0 auto; }
.inner-intro { font-size: 0.95rem; color: #777; line-height: 1.8; max-width: 680px; margin-bottom: 40px; }
.two-col-info { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.page-hero-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); background: rgba(196,30,58,0.08);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.page-hero-sub { font-size: 1rem; color: #777; margin-top: 12px; line-height: 1.7; max-width: 580px; }

/* INFO BAR */
.info-bar {
  background: var(--dark); display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.info-item {
  padding: 22px 24px; display: flex; align-items: flex-start; gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.08); color: white;
  font-size: 0.82rem; line-height: 1.5;
}
.info-item:last-child { border-right: none; }
.info-item strong { display: block; font-weight: 800; font-size: 0.82rem; margin-bottom: 2px; }
.info-item span  { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.info-item a { color: var(--orange); text-decoration: none; }
.info-item a:hover { text-decoration: underline; }

/* STEPS GRID */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 24px; position: relative;
}
.step-num {
  font-size: 3rem; font-weight: 900; color: rgba(196,30,58,0.12);
  line-height: 1; margin-bottom: 14px; display: block;
}
.step-card h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.step-card p  { font-size: 0.83rem; color: #777; line-height: 1.75; }

/* TRYOUT TABLE */
.tryout-table-wrap { overflow-x: auto; background:white; border:1px solid var(--border); border-radius:12px; box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.tryout-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.tt2-h-age   { width: 14%; }
.tt2-h-birth { width: 32%; }
.tt2-h-date  { width: 32%; }
.tt2-h-time  { width: 22%; }
.tt2-age   { white-space: nowrap; }
.tt2-birth { font-weight: 600; color: var(--dark); }
.tt2-date  { font-weight: 700; color: var(--dark); white-space: nowrap; }
.tt2-time  { font-weight: 700; color: var(--red); white-space: nowrap; }
.tt2-empty { color: #ccc; font-weight: 600; }

/* ── PLAYERS NEEDED PAGE ─────────────────────────────────────────────────── */
.players-needed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0 8px;
}
.players-needed-col {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.pn-col-head {
  padding: 16px 24px;
  font-size: 1.05rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1px;
  color: white;
}
.players-needed-girls .pn-col-head { background: linear-gradient(135deg, #C41E3A 0%, #8B0F20 100%); }
.players-needed-boys  .pn-col-head { background: linear-gradient(135deg, #1a3a6e 0%, #0f2247 100%); }
.pn-list {
  list-style: none; margin: 0; padding: 22px 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px; padding: 12px 20px;
  background: #f7f5f2;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 1.1rem; font-weight: 900;
  color: var(--dark); letter-spacing: -0.3px;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.players-needed-girls .pn-pill:hover { border-color: var(--red);   background: rgba(196,30,58,0.05); transform: translateY(-2px); }
.players-needed-boys  .pn-pill:hover { border-color: #1a3a6e;       background: rgba(26,58,110,0.05); transform: translateY(-2px); }
.pn-cta-wrap { text-align: center; margin-top: 36px; }
.pn-cta-btn { display: inline-block; font-size: 0.95rem; padding: 16px 38px; }
.pn-cta-note { font-size: 0.85rem; color: #888; margin-top: 16px; }
.pn-cta-note a { color: var(--red); font-weight: 700; }
@media (max-width: 700px) { .players-needed-grid { grid-template-columns: 1fr; } }

/* ── PLAYER REGISTRATION PAGE ────────────────────────────────────────────── */
.reg-card {
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #fdfaf3 100%);
  border: 1px solid rgba(198,155,42,0.3);
  border-top: 4px solid var(--red);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 14px 40px rgba(196,30,58,0.1);
  margin-top: 12px;
}
.reg-card-icon {
  font-size: 2.4rem;
  width: 72px; height: 72px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,30,58,0.08); border-radius: 16px;
}
.reg-card-title {
  font-size: 1.6rem; font-weight: 900; color: var(--dark);
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.reg-card-text {
  font-size: 0.98rem; color: #555; line-height: 1.75;
  max-width: 520px; margin: 0 auto 26px;
}
.reg-card-btn { display: inline-block; font-size: 0.95rem; padding: 16px 38px; }
.reg-divider {
  display: flex; align-items: center; text-align: center;
  margin: 36px 0; color: #aaa; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
}
.reg-divider::before, .reg-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.reg-divider span { padding: 0 18px; }
.reg-inquire {
  text-align: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 30px;
}
.reg-inquire h3 {
  font-size: 1.15rem; font-weight: 900; color: var(--dark);
  text-transform: uppercase; margin-bottom: 10px;
}
.reg-inquire p {
  font-size: 0.9rem; color: #666; line-height: 1.7;
  max-width: 460px; margin: 0 auto 20px;
}

/* ── TRYOUTS PAGE — INTRO + AGE CALCULATOR + REGISTER CTA ────────────────── */
.inner-narrow { max-width: 760px; margin: 0 auto; }

.intro-lead   { font-size: 1.05rem; line-height: 1.75; color: var(--dark); margin-bottom: 18px; }
.intro-para   { font-size: 0.95rem; line-height: 1.8; color: var(--body); margin-bottom: 18px; }
.intro-cta {
  display: inline-block;
  font-weight: 800; color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.15s;
}
.intro-cta:hover { color: var(--orange); }

/* Age Group Calculator — two-column "tool with context" */
.age-calc-sect {
  padding: 88px 5%;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(196,30,58,0.05), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(198,155,42,0.05), transparent 55%),
    var(--light);
  position: relative;
}
.age-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1140px; margin: 0 auto;
}
.age-calc-copy .age-calc-lead {
  font-size: 1rem; line-height: 1.8; color: #555;
  margin-bottom: 26px;
}
.age-calc-copy .age-calc-lead strong { color: var(--dark); }
.age-calc-tips { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.age-calc-tips li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.9rem; color: #555; line-height: 1.6;
}
.age-calc-tips li strong { color: var(--dark); font-weight: 800; }
.tip-bullet {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--red); color: white;
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 900;
  margin-top: 1px;
}

/* The calculator card */
.age-calc-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 14px rgba(0,0,0,0.03);
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  justify-self: end;
}
.age-calc-card-head {
  background: linear-gradient(135deg, var(--red) 0%, #8B0F20 100%);
  color: white;
  padding: 26px 30px;
  position: relative;
}
.age-calc-card-head::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}
.age-calc-card-eyebrow {
  font-size: 0.66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.age-calc-card-title {
  font-size: 1.5rem; font-weight: 900;
  color: white; letter-spacing: -0.5px;
  line-height: 1.15;
}
.age-calc-card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; }

.age-calc-label {
  font-size: 0.72rem; font-weight: 800;
  color: #555;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: -6px;
}
.age-calc-field-row { position: relative; }
.age-calc-input {
  width: 100%; box-sizing: border-box;
  padding: 14px 50px 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; color: var(--dark); letter-spacing: 0.5px;
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
/* Calendar trigger button inside the field */
.age-calc-cal {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; padding: 0;
  background: rgba(196,30,58,0.07); color: var(--red);
  border: 1px solid rgba(196,30,58,0.2); border-radius: 8px;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.age-calc-cal:hover { background: var(--red); color: #fff; border-color: var(--red); }
/* Native date input — present for the picker, visually hidden under the field */
.age-calc-hiddendate {
  position: absolute; left: 14px; bottom: 4px;
  width: 1px; height: 1px; padding: 0; margin: 0; border: 0;
  opacity: 0; pointer-events: none;
}
.age-calc-input:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
}
.age-calc-btn {
  width: 100%; padding: 14px 22px;
  background: var(--dark); color: white;
  border: none; border-radius: 10px;
  font-family: inherit; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.age-calc-btn:hover { background: var(--red); transform: translateY(-1px); }
.age-calc-btn:active { transform: translateY(0); }

.age-calc-result {
  margin-top: 8px;
  min-height: 130px;
  padding: 24px 22px;
  border-radius: 12px;
  text-align: center;
  background: #fafafa;
  border: 1px solid #ececec;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.age-calc-result-label {
  font-size: 0.72rem; font-weight: 800;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 6px;
}
.age-calc-result-value {
  font-size: 3.2rem; font-weight: 900;
  color: white; line-height: 1;
  letter-spacing: -2px;
}
.age-calc-result-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
  font-weight: 600;
}
.age-calc-result.is-empty {
  background: #fafafa; border-color: #ececec;
}
.age-calc-result.is-empty .age-calc-result-label,
.age-calc-result.is-empty .age-calc-result-hint { color: #888; }
.age-calc-result.is-empty .age-calc-result-value { color: #c5c5c5; font-size: 2.2rem; letter-spacing: 0; }
.age-calc-result.is-ok {
  background: linear-gradient(135deg, var(--red) 0%, #8B0F20 100%);
  border-color: #8B0F20;
}
.age-calc-result.is-err {
  background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
  border-color: #4B5563;
}

@media (max-width: 900px) {
  .age-calc-layout { grid-template-columns: 1fr; gap: 36px; }
  .age-calc-card   { justify-self: stretch; max-width: 100%; }
}

/* Register CTA band — full-width red */
.register-cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #8B0F20 60%, #5A0010 100%);
  padding: 56px 5%;
  position: relative; overflow: hidden;
}
.register-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.register-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.register-cta-text { color: white; max-width: 600px; }
.register-cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900;
  margin: 6px 0 10px; color: white;
  text-transform: uppercase; letter-spacing: -0.5px;
}
.register-cta-text p {
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; margin: 0;
}
.register-cta-btn {
  display: inline-block;
  padding: 18px 36px;
  background: white; color: var(--red);
  font-size: 0.92rem; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.18s, box-shadow 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}
.register-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
  background: var(--orange);
  color: white;
}

/* UYSA policy note */
.policy-note {
  font-size: 0.86rem; color: #777;
  line-height: 1.75; text-align: center;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 0;
}
.policy-note a { color: var(--red); font-weight: 700; text-decoration: none; white-space: nowrap; }
.policy-note a:hover { text-decoration: underline; }

/* ── FEES PAGE — EXPLANATION OF FEES ─────────────────────────────────────── */
.fee-explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.fee-explain {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 26px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.fee-explain:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.fee-explain-icon {
  font-size: 1.8rem; line-height: 1;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,30,58,0.08);
  border-radius: 10px;
  margin-bottom: 16px;
}
.fee-explain h3 {
  font-size: 0.95rem; font-weight: 900; color: var(--dark);
  text-transform: uppercase; letter-spacing: -0.2px;
  margin: 0 0 10px;
  line-height: 1.25;
}
.fee-explain p {
  font-size: 0.85rem; color: #666; line-height: 1.7;
  margin: 0;
}
.fee-explain-link {
  color: var(--red); font-weight: 700; text-decoration: none;
  white-space: nowrap; margin-left: 4px;
}
.fee-explain-link:hover { text-decoration: underline; }
.fee-explain--featured {
  border-top-color: var(--orange);
  background: linear-gradient(135deg, #fff 0%, #fffaf2 100%);
  grid-column: span 2;
}
.fee-explain--featured .fee-explain-icon {
  background: rgba(247,147,30,0.12);
}
@media (max-width: 900px) { .fee-explain--featured { grid-column: span 1; } }

/* ── FEES PAGE — UNIFORM PACKAGES ────────────────────────────────────────── */
.uniform-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.uniform-pkg {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px;
  display: flex; flex-direction: column;
}
.uniform-pkg-head {
  border-bottom: 2px solid #f1f3f5;
  padding-bottom: 18px;
  margin-bottom: 18px;
  text-align: center;
}
.uniform-pkg-age {
  font-size: 0.78rem; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.uniform-pkg-price {
  font-size: 2rem; font-weight: 900; color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.uniform-pkg-note { font-size: 0.78rem; color: #888; font-weight: 600; }
.uniform-pkg-list {
  list-style: none; padding: 0; margin: 0;
  flex: 1;
}
.uniform-pkg-list li {
  font-size: 0.88rem; color: var(--body);
  padding: 7px 0 7px 26px;
  position: relative;
  line-height: 1.5;
}
.uniform-pkg-list li::before {
  content: '✓'; position: absolute; left: 0; top: 7px;
  color: var(--red); font-weight: 900;
}
.uniform-pkg--cta {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: white;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.uniform-pkg--cta .apparel-slogan { color: white; }
.uniform-pkg--cta .apparel-slogan em { color: var(--orange); font-style: italic; }
.uniform-pkg--cta p { color: #ccc !important; }
.uniform-pkg--cta .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.uniform-pkg--cta .btn-outline:hover { background: white; color: var(--dark); }
@media (max-width: 900px) { .uniform-pkgs { grid-template-columns: 1fr; } }

/* ── FEES PAGE — ADDITIONAL FEES LIST ────────────────────────────────────── */
.add-fee-list {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 36px;
}
.add-fee-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid #f1f3f5;
  gap: 24px;
  transition: background 0.15s;
}
.add-fee-row:last-child { border-bottom: none; }
.add-fee-row:hover { background: rgba(196,30,58,0.025); }
.add-fee-label {
  display: flex; align-items: flex-start; gap: 16px;
  flex: 1;
}
.add-fee-icon {
  font-size: 1.5rem; line-height: 1;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,30,58,0.08);
  border-radius: 10px;
  flex-shrink: 0;
}
.add-fee-label h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}
.add-fee-label p {
  font-size: 0.82rem; color: #777; line-height: 1.5;
  margin: 0;
}
.add-fee-price {
  font-size: 1.4rem; font-weight: 900; color: var(--red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .add-fee-row { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 18px; }
  .add-fee-price { align-self: flex-end; font-size: 1.2rem; }
}

/* ── FEES PAGE — DISCOUNTS / EXEMPTIONS ──────────────────────────────────── */
.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.discount-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px 22px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.discount-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
.discount-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 54px; height: 54px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--red) 0%, #8B0F20 100%);
  color: white;
  border-radius: 14px;
  font-size: 1rem; font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(196,30,58,0.25);
}
.discount-badge--soft {
  background: rgba(247,147,30,0.12);
  color: var(--orange);
  font-size: 1.6rem;
  box-shadow: none;
}
.discount-card h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--dark);
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.discount-card p {
  font-size: 0.84rem; color: #666; line-height: 1.65;
  margin: 0 0 14px;
}
.discount-link {
  font-size: 0.74rem; font-weight: 800; color: var(--red);
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
}
.discount-link:hover { color: var(--orange); text-decoration: underline; }

/* ── FEES PAGE — NOTES CALLOUT ───────────────────────────────────────────── */
.notes-callout {
  background: linear-gradient(135deg, rgba(247,147,30,0.07) 0%, rgba(196,30,58,0.04) 100%);
  border: 1px solid rgba(247,147,30,0.25);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 28px;
}
.notes-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.notes-list li {
  font-size: 0.88rem; color: #555; line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.notes-list li::before {
  content: '•'; position: absolute; left: 4px; top: -2px;
  color: var(--orange); font-size: 1.4rem; line-height: 1;
}
.notes-list li strong { color: var(--dark); font-weight: 800; }
@media (max-width: 700px) { .notes-list { grid-template-columns: 1fr; } }

/* LINKS PAGE — quick-link cards */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.link-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-left-color: var(--orange);
  text-decoration: none;
}
.link-icon {
  font-size: 1.8rem; line-height: 1;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,30,58,0.08);
  border-radius: 10px;
  transition: background 0.18s, transform 0.18s;
}
.link-card:hover .link-icon { background: rgba(247,147,30,0.12); transform: scale(1.05); }
.link-body { flex: 1; min-width: 0; }
.link-label {
  font-size: 0.95rem; font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  line-height: 1.25;
}
.link-desc {
  font-size: 0.82rem; color: #777;
  line-height: 1.5;
  margin: 0;
}
.link-arrow {
  flex-shrink: 0;
  font-size: 1.4rem; font-weight: 800;
  color: var(--red);
  transition: transform 0.18s, color 0.18s;
}
.link-card:hover .link-arrow {
  transform: translateX(4px);
  color: var(--orange);
}
@media (max-width: 600px) {
  .link-card { padding: 18px 18px; gap: 14px; }
  .link-icon { width: 42px; height: 42px; font-size: 1.5rem; }
  .link-label { font-size: 0.88rem; }
  .link-desc { font-size: 0.78rem; }
}

/* Tryout-table sortable headers — stacked outline triangles */
.tryout-table .tt2-h-titles th { padding: 0; }
.tryout-table .tt2-sort {
  display: inline-flex; align-items: center; gap: 10px;
  width: 100%; box-sizing: border-box;
  padding: 13px 16px;
  background: transparent; border: none;
  color: white; cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  text-align: left;
  transition: background 0.15s;
}
.tryout-table .tt2-sort:hover { background: rgba(255,255,255,0.08); }
.tryout-table .tt2-sort:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: -2px; }

/* Outlined double-triangle icon — drawn with inline SVG via background */
.tt2-sort-ind {
  display: inline-block; width: 14px; height: 18px; flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round'><polygon points='7,2 12,8 2,8'/><polygon points='7,16 12,10 2,10'/></svg>");
  opacity: 0.7;
  transition: opacity 0.15s;
}
.tryout-table .tt2-sort:hover .tt2-sort-ind { opacity: 1; }
/* Active states — fill the relevant arrow */
.tt2-h-titles th.is-sorted-asc .tt2-sort-ind {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18' fill='%23ffffff' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round'><polygon points='7,2 12,8 2,8'/><polygon points='7,16 12,10 2,10' fill='none' opacity='0.4'/></svg>");
  opacity: 1;
}
.tt2-h-titles th.is-sorted-desc .tt2-sort-ind {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18' fill='%23ffffff' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round'><polygon points='7,2 12,8 2,8' fill='none' opacity='0.4'/><polygon points='7,16 12,10 2,10'/></svg>");
  opacity: 1;
}

/* Tryout-table filter row */
.tryout-table .tt2-h-filters th {
  padding: 8px 12px;
  background: rgba(196,30,58,0.92);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid #e5e7eb;
}
.tt2-filter {
  width: 100%; box-sizing: border-box;
  padding: 7px 10px 7px 30px;
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C41E3A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>") no-repeat 8px center;
  background-size: 14px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  color: #333;
  text-transform: none; letter-spacing: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tt2-filter::placeholder { color: #aaa; font-weight: 500; }
.tt2-filter:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.18);
}

/* FEE SCHEDULE TABLE — matches CFC reference: red headers, gold middle, gray total,
   alternating row gradients, light-gray gridlines */
.fee-table-wrap {
  overflow-x: auto; background: white;
  border: 1px solid #e5e7eb; border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.fee-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 0.86rem; min-width: 920px;
  table-layout: fixed;
}
/* Equal widths for all six money columns via <colgroup> */
.fee-table col.fc-age    { width: 90px; }
.fee-table col.fc-type   { width: 130px; }
.fee-table col.fc-league { width: auto; }       /* stretches to fill remaining space */
.fee-table col.fc-money  { width: 100px; }      /* identical for all 6 $ columns */

/* Headers — top row (group labels) */
.fee-table .fee-h-top th {
  padding: 14px 12px; text-align: center;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: white; border-bottom: 2px solid #fff;
}
.fee-table .fee-h-row1-info { background: #C41E3A; }
.fee-table .fee-h-other     { background: linear-gradient(180deg, #C69B2A 0%, #B0871D 100%); border-left: 2px solid #fff; border-right: 2px solid #fff; }
.fee-table .fee-h-cfc       { background: #C41E3A; }
.fee-table .fee-h-total     {
  background: linear-gradient(180deg, #9CA3AF 0%, #6B7280 100%);
  vertical-align: middle; text-align: center;
  font-size: 0.85rem; font-weight: 900; color: white;
  border-left: 2px solid #fff;
}

/* Headers — bottom row (column names) */
.fee-table .fee-h-bot th {
  background: #C41E3A;
  color: #fff;
  padding: 12px 12px; text-align: center;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  border-bottom: 1px solid #e5e7eb;
}
/* Tint the gold-section column headers gold to mirror the top label */
.fee-table .fee-h-bot th:nth-child(4),
.fee-table .fee-h-bot th:nth-child(5),
.fee-table .fee-h-bot th:nth-child(6),
.fee-table .fee-h-bot th:nth-child(7) {
  background: linear-gradient(180deg, #C69B2A 0%, #B0871D 100%);
  text-align: center;
}
.fee-table .fee-h-bot th:nth-child(8) { text-align: center; } /* Club */

/* Rounded outer corners */
.fee-table thead tr.fee-h-top th:first-child { border-top-left-radius: 12px; }
.fee-table thead tr.fee-h-top th:last-child  { border-top-right-radius: 12px; }

/* Body cells */
.fee-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid #f1f3f5;     /* light gray gridline */
  color: var(--body);
  white-space: nowrap;
  text-align: center;
}
.fee-table tbody tr:last-child td { border-bottom: none; }

/* Alternating row gradient — subtle red/cream stripes */
.fee-table tbody tr:nth-child(odd)  td { background: linear-gradient(180deg, #ffffff 0%, #fdfbfb 100%); }
.fee-table tbody tr:nth-child(even) td { background: linear-gradient(180deg, #faf6f6 0%, #f6efef 100%); }
.fee-table tbody tr:hover td             { background: linear-gradient(180deg, #fff5f5 0%, #ffeaea 100%); transition: background 0.15s; }

/* Cell variants */
.fee-table .ft-age    { white-space: nowrap; }
.fee-table .ft-type   { font-weight: 700; color: var(--dark); }
.fee-table .ft-league { color: #555; }
.fee-table .ft-num    { text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; }
.fee-table .ft-club   { font-weight: 800; color: var(--dark); }
.fee-table .ft-total  {
  font-weight: 900; color: #fff !important;
  background: linear-gradient(180deg, #6B7280 0%, #4B5563 100%) !important;
  text-align: center;
}
.fee-table tbody tr:hover .ft-total { filter: brightness(1.05); }
.fee-table .ft-empty::before { content: ''; }

/* Stronger age pill in the fee table */
.fee-table .age-pill {
  background: linear-gradient(135deg, #C41E3A 0%, #8B0F20 100%);
  box-shadow: 0 1px 4px rgba(196,30,58,0.3);
  font-size: 0.78rem; padding: 4px 12px;
}
.tryout-table thead th { background: var(--red); color: white; padding: 13px 16px; text-align: left; font-weight: 700; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.tryout-table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--body); }
.tryout-table tbody tr:hover td { background: rgba(196,30,58,0.03); }
.tryout-table tbody tr:last-child td { border-bottom: none; }
.age-pill {
  display: inline-block; background: var(--red); color: white;
  font-size: 0.72rem; font-weight: 800; padding: 3px 10px; border-radius: 12px; letter-spacing: 1px;
}
.table-note { font-size: 0.8rem; color: #aaa; margin-top: 20px; line-height: 1.6; background: rgba(247,147,30,0.07); padding: 14px 18px; border-radius: 8px; border-left: 3px solid var(--orange); }

/* CHECKLIST */
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.check-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 18px;
}
.check-icon { font-size: 1.4rem; flex-shrink: 0; }
.check-item strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.check-item p { font-size: 0.8rem; color: #888; line-height: 1.6; }

/* FEE CARDS */
.fee-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.fee-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 30px 24px;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.fee-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.fee-card--highlight { background: white; border-color: var(--red); box-shadow: 0 4px 20px rgba(196,30,58,0.1); }
.fee-card-icon { font-size: 2rem; margin-bottom: 14px; }
.fee-card h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.fee-amount { font-size: 1.5rem; font-weight: 900; color: var(--red); margin-bottom: 12px; }
.fee-card p { font-size: 0.82rem; color: #777; line-height: 1.7; }

/* UNIFORM */
.uniform-includes { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin-bottom: 20px; }
.uniform-includes h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.uniform-includes ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.uniform-includes li { font-size: 0.85rem; color: var(--body); }
.uniform-notes { display: flex; flex-direction: column; gap: 10px; }
.note-item { font-size: 0.85rem; color: #666; display: flex; gap: 8px; align-items: flex-start; line-height: 1.6; }
.uniform-cta-box { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; text-align: center; }

/* FAQ */
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 26px 24px; border-left: 4px solid var(--red); }
.faq-item h4 { font-size: 0.88rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.faq-item p { font-size: 0.83rem; color: #777; line-height: 1.75; }
.faq-item a { color: var(--red); text-decoration: underline; }

/* LEAGUE CARDS (Teams page) */
.league-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.league-card { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; }
.league-badge { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.72rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; line-height: 1.2; margin: 0 auto 16px; text-align: center; }
.league-card h3 { font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.league-card p { font-size: 0.82rem; color: #777; line-height: 1.7; }

/* DIVISION BLOCKS (Teams page - legacy) */
.division-block { margin-bottom: 48px; }
.division-block:last-child { margin-bottom: 0; }
.division-header { border-left: 5px solid var(--red); padding-left: 20px; margin-bottom: 24px; }
.division-name { font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.3px; }
.division-desc { font-size: 0.88rem; color: #777; line-height: 1.7; margin-top: 6px; }
.team-group-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-group-card {
  background: white; border: 1px solid var(--border); border-radius: 10px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-group-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tg-hex { width: 48px; height: 48px; clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; color: white; }
.tg-age { font-size: 0.75rem; font-weight: 700; color: #999; letter-spacing: 1px; }
.tg-league { font-size: 0.72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }
.tg-desc { font-size: 0.78rem; color: #888; line-height: 1.6; }
.tg-sched-link { font-size: 0.72rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.tg-sched-link:hover { text-decoration: underline; }

/* TEAM ROSTER CARDS (Teams page) */
.gender-block { margin-bottom: 20px; }
.gender-block:last-child { margin-bottom: 0; }

/* Drawer support — clickable summary, smooth rotate, no native marker */
.gender-drawer { border-radius: 12px; overflow: hidden; }
.gender-drawer > summary {
  list-style: none; cursor: pointer; user-select: none;
}
.gender-drawer > summary::-webkit-details-marker { display: none; }
.gender-drawer > summary::marker { display: none; content: ''; }
.gender-drawer[open] { margin-bottom: 40px; }
.gender-drawer[open] > summary { border-radius: 12px 12px 0 0; box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

.gender-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: 12px;
  font-size: 1.05rem; font-weight: 900; letter-spacing: 0.5px; text-transform: uppercase;
  color: white;
  transition: filter 0.2s, border-radius 0.2s;
}
.gender-header:hover { filter: brightness(1.08); }
.gender-girls { background: linear-gradient(135deg, #C41E3A 0%, #8B0F20 100%); }
.gender-boys  { background: linear-gradient(135deg, #1a3a6e 0%, #0f2247 100%); }
.gender-label { flex-shrink: 0; }
.gender-icon  { font-size: 1.4rem; }
.gender-count {
  margin-left: auto; font-size: 0.78rem; font-weight: 700;
  background: rgba(255,255,255,0.22); padding: 5px 14px; border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Clean SVG-style chevron drawn in pure CSS */
.gender-chevron {
  width: 14px; height: 14px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: 60% 60%;
  margin-left: 4px; margin-right: 4px;
  transition: transform 0.25s ease;
  opacity: 0.95;
}
.gender-drawer[open] > summary .gender-chevron {
  transform: rotate(-135deg);
}

/* Animate the table sliding in */
.gender-drawer[open] .team-table-wrap {
  border-radius: 0 0 12px 12px;
  border-top: none;
  animation: cfcDrawerOpen 0.22s ease-out;
}
@keyframes cfcDrawerOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
/* Card grid — fills row with cards no narrower than 240px */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
/* Individual team card */
.team-card {
  display: flex; flex-direction: column; gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--tc-accent, #C41E3A);
  border-radius: 12px;
  padding: 20px 22px 18px;
  text-decoration: none; color: var(--dark);
  transition: transform 0.18s, box-shadow 0.18s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  text-decoration: none;
}
.tc-name {
  font-size: 1.05rem; font-weight: 900; letter-spacing: -0.2px;
  color: var(--dark); line-height: 1.25;
}
.tc-jersey {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.tc-swatch {
  display: inline-block; width: 12px; height: 12px;
  border-radius: 50%; flex-shrink: 0;
}
.tc-link {
  font-size: 0.78rem; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
  transition: color 0.15s;
}
.team-card:hover .tc-link { color: #8B0F20; }

/* TEAM TABLE (Teams page) */
.team-table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.team-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.team-table thead th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  background: #fafafa;
  padding: 14px 22px;
  border-bottom: 2px solid var(--border);
}
.team-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.team-table tbody tr:last-child { border-bottom: none; }
.team-table tbody tr:hover { background: #fcfcfc; }
.team-table td {
  padding: 16px 22px;
  vertical-align: middle;
}
.tt-h-team  { width: 45%; }
.tt-h-coach { width: 30%; }
.tt-h-sched { width: 25%; }

/* Roster table — 6 columns, all centered to line up with headers */
.team-table--roster .tt-h-team   { width: 24%; }
.team-table--roster .tt-h-coach  { width: 19%; }
.team-table--roster .tt-h-mgr    { width: 19%; }
.team-table--roster .tt-h-sched  { width: 13%; }
.team-table--roster .tt-h-snap   { width: 13%; }
.team-table--roster .tt-h-contact{ width: 12%; }
.team-table--roster thead th { text-align: center; }
.team-table--roster td { padding: 14px 16px; text-align: center; }

/* IMPORTANT: keep cells as real table cells (display:flex on a <td> breaks the
   column grid). Lay out swatch/name/icon inline + vertically centered instead. */
.team-table--roster td.tt-team,
.team-table--roster td.tt-coach,
.team-table--roster td.tt-mgr { display: table-cell; white-space: nowrap; }
.team-table--roster .tt-swatch { vertical-align: middle; margin-right: 8px; }
.team-table--roster .tt-name   { vertical-align: middle; }
.team-table--roster .tt-person { vertical-align: middle; }
.team-table--roster .tt-mail   { vertical-align: middle; margin-left: 6px; }
.tt-person { font-weight: 600; color: var(--body); font-size: 0.88rem; }

/* Small envelope contact button (privacy-safe relay) */
.tt-mail {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(196,30,58,0.3);
  background: rgba(196,30,58,0.06);
  color: var(--red);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
  padding: 0;
}
.tt-mail:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-1px); }
.tt-mail svg { display: block; }
.tt-mail--both {
  width: auto; gap: 6px; padding: 0 12px; height: 32px;
  font-family: inherit; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tt-mail--both::after { content: 'Both'; }

.tt-team {
  display: flex; align-items: center; gap: 12px;
}
.tt-swatch {
  display: inline-block; width: 14px; height: 14px;
  border-radius: 50%; flex-shrink: 0;
}
.tt-name {
  font-weight: 800; color: var(--dark); font-size: 0.95rem;
  letter-spacing: -0.2px;
}
.tt-coach { color: var(--body); font-size: 0.9rem; font-weight: 600; }
.tt-link {
  font-size: 0.78rem; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.15s;
}
.tt-link:hover { color: #8B0F20; text-decoration: underline; }
.tt-empty { color: #ccc; font-weight: 600; }

/* Contact-coach button */
.tt-h-contact { width: 14%; text-align: center; }
.tt-contact   { text-align: center; }
.tt-contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(135deg, var(--red) 0%, #8B0F20 100%);
  color: white;
  border: none; border-radius: 20px;
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.6px; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(196,30,58,0.25);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  font-family: inherit;
}
.tt-contact-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(196,30,58,0.35); filter: brightness(1.05); }
.tt-contact-btn:active { transform: translateY(0); }

/* ── ROSTER TABLE — MOBILE CARD LAYOUT ───────────────────────────────────── */
@media (max-width: 768px) {
  /* The wrapper no longer needs horizontal scroll on mobile */
  .team-table-wrap { overflow-x: visible; border: none; background: transparent; box-shadow: none; }

  /* Collapse the table into stacked cards */
  .team-table--roster,
  .team-table--roster tbody,
  .team-table--roster tr,
  .team-table--roster td { display: block; width: 100%; }

  .team-table--roster thead { display: none; }            /* hide column headers */

  .team-table--roster tr {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 16px;
    overflow: hidden;
  }
  .team-table--roster tr:hover { background: #fff; }

  /* All data cells: stacked block layout (label on top, value below), LEFT
     aligned, and wrapping — overrides the desktop table-cell/nowrap rules. */
  .team-table--roster td {
    display: block !important;
    white-space: normal !important;
    text-align: left !important;
    padding: 11px 18px;
    border-bottom: 1px solid #f1f3f5;
  }
  .team-table--roster tr td:last-child { border-bottom: none; }
  .team-table--roster td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.66rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: #999; margin-bottom: 3px;
  }

  /* Team name = card header bar (swatch + name, no label) */
  .team-table--roster td.tt-team {
    display: flex !important;
    align-items: center; gap: 10px;
    background: linear-gradient(135deg, #faf6f6 0%, #f6efef 100%);
    border-bottom: 1px solid var(--border);
    padding: 14px 18px;
  }
  .team-table--roster td.tt-team .tt-name { font-size: 1.05rem; line-height: 1.3; }
  .team-table--roster td.tt-team::before { display: none; }

  /* Coach / manager: name + email icon flow on a wrapping line under the label */
  .team-table--roster td.tt-coach .tt-person,
  .team-table--roster td.tt-mgr .tt-person { margin-left: 0; }
  .team-table--roster td.tt-coach .tt-mail,
  .team-table--roster td.tt-mgr .tt-mail { vertical-align: middle; margin-left: 8px; }

  /* Larger tap targets on touch */
  .tt-mail { width: 36px; height: 36px; }
  /* "Both" is a labeled pill — must stay auto-width so the text isn't clipped */
  .tt-mail--both { width: auto !important; height: 38px; padding: 0 16px; gap: 7px; }
}

/* "Check your age group" link under the contact-form age dropdown */
.cf-checkage-link {
  display: inline-block; margin-top: 8px; padding: 0;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.82rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.2px;
  transition: color 0.15s;
}
.cf-checkage-link:hover { color: var(--orange); text-decoration: underline; }

/* ── HOMEPAGE INSTAGRAM FEED ─────────────────────────────────────────────── */
.ig-sect { background: #fff; padding: 76px 5%; text-align: center; }
.ig-feed-wrap { max-width: 1120px; margin: 30px auto 0; }
.ig-cta { margin-top: 28px; }

/* Hide Smash Balloon's own header (duplicate username/bio/follow) + Load More */
.ig-feed-wrap .sbi_header,
.ig-feed-wrap #sb_instagram_header,
.ig-feed-wrap .sbi_header_outer,
.ig-feed-wrap #sbi_load,
.ig-feed-wrap .sbi_load { display: none !important; }

/* One clean row of 4 (the feed loads more, but we only show the first row) */
.ig-feed-wrap #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  padding: 0 !important;
}
.ig-feed-wrap #sbi_images .sbi_item {
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ig-feed-wrap #sbi_images .sbi_item:nth-child(n+9) { display: none !important; }
.ig-feed-wrap #sbi_images .sbi_item .sbi_photo {
  border-radius: 10px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-feed-wrap #sbi_images .sbi_item:hover .sbi_photo {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
@media (max-width: 760px) { .ig-feed-wrap #sbi_images { grid-template-columns: repeat(2, 1fr) !important; } }

/* ── BOARD OF DIRECTORS — CARD GRID ──────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 36px;
}
.board-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.board-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.1); }
.board-photo {
  width: 100%; aspect-ratio: 5 / 6;
  background: linear-gradient(160deg, #e9e4dd 0%, #d8d2c8 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.board-img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.board-silhouette { width: 46%; height: 46%; color: rgba(0,0,0,0.18); }
.board-body { padding: 18px 18px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.board-name { font-size: 1.05rem; font-weight: 900; color: var(--dark); letter-spacing: -0.3px; }
.board-role { font-size: 0.78rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: 0.6px; line-height: 1.3; }
.board-desc { font-size: 0.84rem; color: #777; line-height: 1.55; margin: 6px 0 0; }
.board-body .member-mail--block { margin-top: 12px; }
@media (max-width: 1000px) { .board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .board-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 460px)  { .board-grid { grid-template-columns: 1fr; } }

/* Member contact buttons (board block + staff icon) */
.member-mail {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0;
  border: 1.5px solid rgba(196,30,58,0.3);
  background: rgba(196,30,58,0.06); color: var(--red);
  border-radius: 8px; cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}
.member-mail:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-1px); }
.member-mail svg { display: block; }
.member-mail--block {
  width: auto; height: auto; gap: 7px; padding: 9px 18px; border-radius: 22px;
  font-family: inherit; font-size: 0.74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
}

/* Staff table column widths + LEFT-justified text */
.team-table--staff .ts-h-pos     { width: 32%; }
.team-table--staff .ts-h-name    { width: 22%; }
.team-table--staff .ts-h-desc    { width: 34%; }
.team-table--staff .ts-h-contact { width: 12%; }
.team-table--staff thead th,
.team-table--staff tbody td { text-align: left; }

/* CONTACT-COACH MODAL */
.cfc-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
.cfc-modal.is-open { display: flex; }
.cfc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(2px);
}
.cfc-modal-card {
  position: relative; z-index: 1;
  background: white; border-radius: 16px;
  width: 100%; max-width: 520px;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: cfcModalIn 0.18s ease-out;
  max-height: 90vh; overflow-y: auto;
}
@keyframes cfcModalIn {
  from { transform: translateY(8px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cfc-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: none;
  font-size: 1.7rem; line-height: 1; color: #999;
  cursor: pointer; padding: 6px 10px; border-radius: 8px;
}
.cfc-modal-close:hover { background: #f3f4f6; color: var(--dark); }
.cfc-modal-eyebrow {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.cfc-modal-title {
  font-size: 1.4rem; font-weight: 900; color: var(--dark);
  margin: 0 0 8px; line-height: 1.2; letter-spacing: -0.3px;
}
.cfc-modal-sub {
  font-size: 0.86rem; color: #777; line-height: 1.6; margin-bottom: 22px;
}
.cfc-modal-form .cfc-form-row { margin-bottom: 16px; }
.cfc-modal-form label {
  display: block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--dark);
  margin-bottom: 6px;
}
.cfc-modal-form input,
.cfc-modal-form textarea {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; background: white;
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  color: var(--body); transition: border-color 0.15s;
}
.cfc-modal-form input:focus,
.cfc-modal-form textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.12);
}
.cfc-modal-form textarea { resize: vertical; min-height: 110px; }
.cfc-form-status {
  min-height: 1.4em; margin: 4px 0 14px;
  font-size: 0.85rem; font-weight: 600;
}
.cfc-form-status.is-pending { color: #888; }
.cfc-form-status.is-ok      { color: #15803d; }
.cfc-form-status.is-err     { color: var(--red); }
.cfc-form-actions {
  display: flex; gap: 10px; justify-content: flex-end;
  border-top: 1px solid #f1f3f5; padding-top: 18px;
}
.cfc-btn-cancel, .cfc-btn-send {
  font-family: inherit; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 11px 22px; border-radius: 22px; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  border: none;
}
.cfc-btn-cancel { background: #f3f4f6; color: #555; }
.cfc-btn-cancel:hover { background: #e5e7eb; }
.cfc-btn-send {
  background: var(--red); color: white;
  box-shadow: 0 4px 12px rgba(196,30,58,0.3);
}
.cfc-btn-send:hover { background: var(--red-hover); transform: translateY(-1px); }
@media (max-width: 600px) {
  .cfc-modal-card { padding: 28px 22px 22px; }
  .cfc-modal-title { font-size: 1.2rem; }
  .cfc-form-actions { flex-direction: column-reverse; }
  .cfc-btn-cancel, .cfc-btn-send { width: 100%; }
}

/* PROGRAM CARDS */
.program-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.program-card { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; }
.prog-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.prog-badge { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; background: rgba(196,30,58,0.1); color: var(--red); }
.prog-ages { font-size: 0.75rem; color: #aaa; font-weight: 600; letter-spacing: 1px; }
.program-card h3 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.3px; }
.program-card p { font-size: 0.88rem; color: #666; line-height: 1.8; margin-bottom: 20px; }
.prog-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.prog-features li { font-size: 0.83rem; color: var(--body); }
.prog-cta { display: inline-block; padding: 11px 24px; background: var(--red); color: white; font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 24px; transition: background 0.2s; }
.prog-cta:hover { background: var(--orange); }

/* SPECIALTY CARDS */
.specialty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.specialty-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; }
.spec-icon { font-size: 2.5rem; margin-bottom: 16px; }
.specialty-card h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 10px; }
.specialty-card p { font-size: 0.83rem; color: #777; line-height: 1.75; margin-bottom: 18px; }
.spec-link { font-size: 0.75rem; font-weight: 800; color: var(--red); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.spec-link:hover { text-decoration: underline; }

/* TIMELINE */
.history-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.tl-year { font-size: 0.88rem; font-weight: 900; color: var(--red); min-width: 46px; padding-top: 2px; }
.tl-text { font-size: 0.85rem; color: #666; line-height: 1.65; }
.tl-text strong { color: var(--dark); }
.mission-quote-large { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.75; color: var(--dark); font-style: italic; position: relative; padding: 0 20px; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p { font-size: 0.83rem; color: #777; line-height: 1.7; }
.contact-item a { color: var(--red); }
.social-contact h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.social-btn-large { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(196,30,58,0.08); border: 1px solid rgba(196,30,58,0.2); border-radius: 8px; color: var(--red); text-decoration: none; font-size: 0.8rem; font-weight: 700; margin-right: 10px; transition: background 0.2s; }
.social-btn-large:hover { background: var(--red); color: white; }
.social-btn-large span { font-size: 0.72rem; font-weight: 900; background: var(--red); color: white; padding: 2px 6px; border-radius: 4px; }
.social-btn-large:hover span { background: white; color: var(--red); }

.contact-form-box { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; }
.contact-form-box h3 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.cfc-contact-form .form-group { margin-bottom: 20px; }
.cfc-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfc-contact-form label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.cfc-contact-form input,
.cfc-contact-form select,
.cfc-contact-form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: white; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--body); transition: border-color 0.2s; }
.cfc-contact-form input:focus,
.cfc-contact-form select:focus,
.cfc-contact-form textarea:focus { outline: none; border-color: var(--red); }
.cfc-contact-form textarea { resize: vertical; }

/* BOARD PLACEHOLDER */
.board-placeholder { background: rgba(247,147,30,0.07); border: 1px dashed rgba(247,147,30,0.4); border-radius: 8px; padding: 24px; font-size: 0.85rem; color: #888; line-height: 1.7; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 24px 5%; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-hamburger { display: flex; }

  #site-nav { position: sticky; }

  .hero { grid-template-columns: 1fr; }
  .hero-right {
    min-height: 360px;
    padding: 60px 40px;
    margin-left: 0;
    clip-path: none;
    -webkit-clip-path: none;
  }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .mission-pillars { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-grid { grid-template-columns: 1fr; }
  .parents-grid { grid-template-columns: 1fr; }
  .news-grid, .archive-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tryouts-band, .apparel-band { flex-direction: column; text-align: center; }

  /* Inner pages mobile */
  .info-bar { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .fee-cards { grid-template-columns: 1fr 1fr; }
  .league-cards { grid-template-columns: 1fr 1fr; }
  .team-group-grid { grid-template-columns: repeat(2, 1fr); }
  .program-cards { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr 1fr; }
  .two-col-info { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cfc-contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .inner-sect { padding: 56px 5%; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 20px; }
  .info-bar { grid-template-columns: 1fr; }
  .fee-cards { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .league-cards { grid-template-columns: 1fr; }
  .gender-header { font-size: 0.95rem; }
  .team-table thead th,
  .team-table td { padding: 12px 14px; }
  .team-table { font-size: 0.85rem; }
  .tt-name { font-size: 0.88rem; }
}
