/*
Theme Name: Bear Gridiron Club
Theme URI: https://beargridironclub.com
Author: Bear Gridiron Club
Description: Official theme for the Cambridge Football Bear Gridiron Club
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: bgc
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bgc-navy:       #0d1b2a;
  --bgc-navy-mid:   #152338;
  --bgc-navy-light: #1e3252;
  --bgc-blue:       #5b9bd5;
  --bgc-blue-light: #7db8e8;
  --bgc-gold:       #c9a84c;
  --bgc-gold-light: #e2c472;
  --bgc-white:      #f5f7fa;
  --bgc-gray:       #8a9bb0;
  --bgc-gray-light: #c4cdd8;
  --bgc-max-width:  1200px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--bgc-navy);
  color: var(--bgc-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--bgc-blue-light); transition: color 0.2s; }
a:hover { color: var(--bgc-white); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--bgc-white);
}

h1 { font-size: clamp(48px, 7vw, 86px); }
h2 { font-size: clamp(36px, 5vw, 60px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 22px; }

p { color: var(--bgc-gray-light); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Layout Helpers ─── */
.bgc-container {
  max-width: var(--bgc-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.bgc-section {
  padding: 80px 0;
}

.bgc-section--dark    { background: var(--bgc-navy); }
.bgc-section--mid     { background: var(--bgc-navy-mid); }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 68px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 155, 213, 0.15);
  display: flex;
  align-items: center;
}

.site-header .bgc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-branding__icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--bgc-blue), var(--bgc-navy-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(91,155,213,0.3);
  flex-shrink: 0;
}

.site-branding__text { line-height: 1.2; }

.site-branding__name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--bgc-white);
  text-transform: uppercase;
}

.site-branding__sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--bgc-blue-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Primary Navigation */
.primary-navigation { display: flex; align-items: center; }

.primary-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-navigation a {
  display: block;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bgc-gray-light);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--bgc-white);
  background: rgba(91, 155, 213, 0.12);
}

.primary-navigation .menu-item--cta > a {
  background: var(--bgc-gold);
  color: var(--bgc-navy) !important;
  padding: 8px 18px;
}

.primary-navigation .menu-item--cta > a:hover {
  background: var(--bgc-gold-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bgc-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── FOOTER ─── */
.site-footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(91,155,213,0.1);
  padding: 48px 0;
  text-align: center;
}

.site-footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 6px;
}

.site-footer__sub {
  font-size: 12px;
  color: var(--bgc-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.site-footer__nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 28px;
}

.site-footer__nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bgc-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__nav a:hover { color: var(--bgc-blue-light); }

.site-footer__copy {
  font-size: 12px;
  color: var(--bgc-gray);
  opacity: 0.6;
}

/* ─── MAIN CONTENT AREA ─── */
.site-main {
  padding-top: 68px; /* offset for fixed header */
  min-height: 70vh;
}

/* ─── BLOCK EDITOR SUPPORT ─── */
.wp-block-group { box-sizing: border-box; }

/* Make the editor background match */
.editor-styles-wrapper {
  background-color: var(--bgc-navy) !important;
  color: var(--bgc-white) !important;
  font-family: 'Barlow', sans-serif !important;
}

/* ─── BGC COMPONENT CLASSES ─── */
/* Used inside Custom HTML blocks for consistent styling */

.bgc-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bgc-blue-light);
  display: block;
  margin-bottom: 12px;
}

.bgc-hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(91,155,213,0.1) 0%, transparent 70%),
              var(--bgc-navy);
  position: relative;
  overflow: hidden;
}

.bgc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,155,213,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,155,213,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.bgc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bgc-h1-gradient {
  background: linear-gradient(135deg, var(--bgc-blue-light), var(--bgc-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.bgc-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--bgc-gray-light);
  margin-bottom: 32px;
}

.bgc-btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.bgc-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.bgc-btn--primary {
  background: var(--bgc-gold);
  color: var(--bgc-navy);
}
.bgc-btn--primary:hover {
  background: var(--bgc-gold-light);
  color: var(--bgc-navy);
  transform: translateY(-1px);
}

.bgc-btn--secondary {
  background: transparent;
  color: var(--bgc-white);
  border: 1px solid rgba(91,155,213,0.4);
}
.bgc-btn--secondary:hover {
  background: rgba(91,155,213,0.1);
  border-color: var(--bgc-blue-light);
  color: var(--bgc-white);
}

/* Stat Cards */
.bgc-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.bgc-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,155,213,0.18);
  border-radius: 12px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}

.bgc-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bgc-blue), transparent);
}

.bgc-stat-card--gold { border-color: rgba(201,168,76,0.2); }
.bgc-stat-card--gold::before { background: linear-gradient(90deg, var(--bgc-gold), transparent); }

.bgc-stat-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--bgc-blue-light);
  line-height: 1;
  margin-bottom: 4px;
}

.bgc-stat-card--gold .bgc-stat-card__num { color: var(--bgc-gold-light); }

.bgc-stat-card__label {
  font-size: 12px;
  color: var(--bgc-gray);
  font-weight: 500;
}

/* Info Badge */
.bgc-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,155,213,0.15);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.bgc-badge__icon { font-size: 28px; flex-shrink: 0; }

.bgc-badge__title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--bgc-gold-light);
  margin-bottom: 2px;
  text-transform: none;
}

.bgc-badge__sub { font-size: 13px; color: var(--bgc-gray); }

/* Card Grid */
.bgc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.bgc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.12);
  border-radius: 14px;
  padding: 30px 26px;
  transition: all 0.3s;
}

.bgc-card:hover {
  border-color: rgba(91,155,213,0.28);
  background: rgba(91,155,213,0.04);
  transform: translateY(-3px);
}

.bgc-card__icon { font-size: 34px; margin-bottom: 14px; display: block; }

.bgc-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 8px;
}

.bgc-card__text { font-size: 14px; color: var(--bgc-gray-light); line-height: 1.6; }

/* CTA Bar */
.bgc-cta-bar {
  background: linear-gradient(135deg, var(--bgc-navy-mid), var(--bgc-navy-light));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bgc-cta-bar__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 6px;
}

.bgc-cta-bar__text { font-size: 15px; color: var(--bgc-gray-light); margin: 0; }

/* Section Divider */
.bgc-divider {
  border: none;
  border-top: 1px solid rgba(91,155,213,0.1);
  margin: 0;
}

/* Membership Tiers */
.bgc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.bgc-tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.15);
  border-radius: 16px;
  padding: 38px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s;
}

.bgc-tier:hover { transform: translateY(-4px); }

.bgc-tier--featured {
  border: 2px solid var(--bgc-gold);
  background: rgba(201,168,76,0.05);
}

.bgc-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bgc-gold);
  color: var(--bgc-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.bgc-tier__icon { font-size: 38px; margin-bottom: 10px; }

.bgc-tier__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 4px;
}

.bgc-tier__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 50px;
  font-weight: 900;
  color: var(--bgc-gold-light);
  line-height: 1;
  margin-bottom: 22px;
}

.bgc-tier--featured .bgc-tier__price { color: var(--bgc-gold); }

.bgc-tier__features {
  list-style: none;
  flex: 1;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bgc-tier__features li {
  font-size: 14px;
  color: var(--bgc-gray-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.bgc-tier__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bgc-blue-light);
  font-weight: 700;
}

.bgc-tier--featured .bgc-tier__features li::before { color: var(--bgc-gold-light); }

.bgc-tier__btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(91,155,213,0.4);
  background: transparent;
  color: var(--bgc-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.bgc-tier__btn:hover {
  background: rgba(91,155,213,0.1);
  border-color: var(--bgc-blue-light);
  color: var(--bgc-white);
}

.bgc-tier--featured .bgc-tier__btn {
  background: var(--bgc-gold);
  border-color: var(--bgc-gold);
  color: var(--bgc-navy);
}

.bgc-tier--featured .bgc-tier__btn:hover {
  background: var(--bgc-gold-light);
  color: var(--bgc-navy);
}

/* Goal / Budget Table */
.bgc-budget-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.15);
  border-radius: 16px;
  padding: 32px;
}

.bgc-budget-card--gold {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.3);
}

.bgc-budget-card__tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(91,155,213,0.15);
  color: var(--bgc-blue-light);
}

.bgc-budget-card--gold .bgc-budget-card__tag {
  background: rgba(201,168,76,0.15);
  color: var(--bgc-gold-light);
}

.bgc-budget-card__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--bgc-blue-light);
  line-height: 1;
  margin-bottom: 8px;
}

.bgc-budget-card--gold .bgc-budget-card__amount { color: var(--bgc-gold-light); }

.bgc-budget-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 16px;
}

.bgc-line-items { list-style: none; }

.bgc-line-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--bgc-gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(91,155,213,0.08);
}

.bgc-budget-card--gold .bgc-line-items li { border-color: rgba(201,168,76,0.08); }

.bgc-line-items li:last-child { border-bottom: none; }

.bgc-line-items li strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: var(--bgc-white);
}

/* Three M-cards (Mission page) */
.bgc-m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bgc-m-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.15);
  border-radius: 14px;
  padding: 38px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bgc-m-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bgc-blue), var(--bgc-blue-light));
  border-radius: 14px 14px 0 0;
}

.bgc-m-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(91,155,213,0.1);
  line-height: 1;
  margin-bottom: -8px;
}

.bgc-m-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 10px;
}

.bgc-m-card__text { font-size: 14px; color: var(--bgc-gray-light); line-height: 1.6; }

/* Board Grid */
.bgc-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.bgc-board-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.12);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}

.bgc-board-card__avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--bgc-navy-light), var(--bgc-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  border: 2px solid rgba(91,155,213,0.3);
}

.bgc-board-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 4px;
}

.bgc-board-card__role {
  font-size: 11px;
  color: var(--bgc-gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Pillar boxes */
.bgc-pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.bgc-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.15);
  border-radius: 12px;
  padding: 22px;
}

.bgc-pillar__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bgc-blue-light);
  margin-bottom: 12px;
}

.bgc-pillar ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.bgc-pillar ul li {
  font-size: 13px;
  color: var(--bgc-gray-light);
  padding-left: 14px;
  position: relative;
}

.bgc-pillar ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--bgc-gold);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

/* Coach section */
.bgc-coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.bgc-coach-photo {
  background: linear-gradient(160deg, var(--bgc-navy-light), var(--bgc-navy-mid));
  border-radius: 16px;
  border: 1px solid rgba(91,155,213,0.2);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.bgc-coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Steps */
.bgc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bgc-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,155,213,0.12);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
}

.bgc-step__icon { font-size: 34px; margin-bottom: 12px; }

.bgc-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bgc-white);
  margin-bottom: 8px;
}

.bgc-step__text { font-size: 13px; color: var(--bgc-gray-light); line-height: 1.6; }

/* Quote block */
.bgc-quote {
  text-align: center;
  padding: 60px 0;
}

.bgc-quote__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--bgc-white);
  max-width: 800px;
  margin: 0 auto 16px;
  text-transform: none;
}

.bgc-quote__text em { font-style: normal; color: var(--bgc-blue-light); }

.bgc-quote__attribution { font-size: 14px; color: var(--bgc-gray); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .bgc-hero__grid,
  .bgc-coach-grid { grid-template-columns: 1fr; gap: 40px; }
  .bgc-tiers,
  .bgc-m-grid { grid-template-columns: 1fr; }
  .bgc-steps { grid-template-columns: 1fr; }
  .bgc-pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bgc-container { padding: 0 20px; }
  .bgc-section { padding: 60px 0; }
  .bgc-card-grid { grid-template-columns: 1fr; }
  .bgc-stat-grid { grid-template-columns: 1fr 1fr; }
  .bgc-cta-bar { flex-direction: column; text-align: center; }
  .bgc-btn-group { justify-content: center; }

  .primary-navigation { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bgc-navy-mid); border-bottom: 1px solid rgba(91,155,213,0.15); padding: 16px; }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation ul { flex-direction: column; width: 100%; }
  .primary-navigation a { width: 100%; }
  .nav-toggle { display: flex; }

  .bgc-tiers { grid-template-columns: 1fr; }
  .bgc-board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .bgc-stat-grid { grid-template-columns: 1fr; }
  .bgc-board-grid { grid-template-columns: 1fr; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bgc-navy-mid); }
::-webkit-scrollbar-thumb { background: var(--bgc-navy-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bgc-blue); }

/* ═══════════════════════════════════════════════
   SPLIT NAV HEADER (v1.1)
   ═══════════════════════════════════════════════ */

/* ─── Header inner layout: left-nav | logo | right-nav ─── */
.bgc-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ─── Centered Logo ─── */
.site-branding {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 24px;
}

.site-branding__logo {
  width: 84px;
  height: 84px;
  background-image: url('https://beargridironclub.com/wp-content/uploads/2026/05/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.site-branding:hover .site-branding__logo {
  opacity: 0.85;
  transform: scale(1.03);
}

/* ─── Left nav ─── */
.primary-navigation--left {
  grid-column: 1;
  display: flex;
  justify-content: flex-end;
}

.primary-navigation--left ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-end;
}

/* ─── Right nav ─── */
.primary-navigation--right {
  grid-column: 3;
  display: flex;
  justify-content: flex-start;
}

.primary-navigation--right ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-start;
}

/* ─── Shared nav link styles ─── */
.primary-navigation--left a,
.primary-navigation--right a {
  display: block;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bgc-gray-light);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.primary-navigation--left a:hover,
.primary-navigation--right a:hover,
.primary-navigation--left .current-menu-item > a,
.primary-navigation--right .current-menu-item > a {
  color: var(--bgc-white);
  background: rgba(91, 155, 213, 0.12);
}

/* Join button — CTA style */
.primary-navigation--right .menu-item--cta > a {
  background: var(--bgc-gold);
  color: var(--bgc-navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
}

.primary-navigation--right .menu-item--cta > a:hover {
  background: var(--bgc-gold-light);
}

/* ─── Mobile toggle ─── */
.nav-toggle {
  display: none;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bgc-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Mobile full-width nav ─── */
.mobile-nav {
  display: none;
  background: var(--bgc-navy-mid);
  border-top: 1px solid rgba(91,155,213,0.15);
  padding: 12px 20px;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav a {
  display: block;
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bgc-gray-light);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.mobile-nav a:hover { color: var(--bgc-white); background: rgba(91,155,213,0.12); }

/* ─── Site main offset ─── */
.site-main { padding-top: 90px; }

/* ─── Footer logo ─── */
.site-footer__logo {
  font-size: 0;
  display: block;
  width: 110px;
  height: 110px;
  background-image: url('https://beargridironclub.com/wp-content/uploads/2026/05/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 16px;
}

.site-footer__sub { display: none; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .bgc-header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    height: 70px;
  }

  .primary-navigation--left,
  .primary-navigation--right { display: none; }

  .site-branding { grid-column: 1; padding: 0; }
  .site-branding__logo { width: 58px; height: 58px; }

  .nav-toggle { display: flex; position: static; transform: none; }

  .site-main { padding-top: 70px; }
}
