/* ===== DESIGN TOKENS ===== */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Font families */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* American MMA Brand Palette — dark, patriotic, aggressive */
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-surface-3: #222222;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.2);

  --color-text: #f0f0f0;
  --color-text-muted: #999999;
  --color-text-faint: #666666;

  /* Brand colors */
  --color-red: #c41e3a;
  --color-red-hover: #d62a48;
  --color-red-dark: #8b1528;
  --color-blue: #1a3a6c;
  --color-blue-light: #2a5298;
  --color-white: #ffffff;
  --color-gold: #c9a84c;
  --color-gold-hover: #dbb960;

  /* Accent = red (primary CTA) */
  --color-accent: var(--color-red);
  --color-accent-hover: var(--color-red-hover);

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ===== GLOBAL ===== */
body {
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  background: var(--color-red);
  color: var(--color-white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--color-red-hover);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--content-default);
  padding: var(--space-32) var(--space-4) var(--space-16);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.hero h1 span {
  color: var(--color-red);
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}

.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-header {
  text-align: left;
  margin-bottom: var(--space-12);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-red);
  margin-top: var(--space-4);
}

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.program-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}

.program-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 28px;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.program-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.program-age {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  margin-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== GOLD MEMBERSHIP ===== */
.membership {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.membership-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.membership-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.membership-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
  padding: var(--space-2) 0;
}

.membership-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

/* ===== PLANS GRID ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}

.plan-card--gold {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(160deg, #1a1810 0%, var(--color-surface) 60%);
}

.plan-card--gold:hover {
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 12px 32px rgba(201,168,76,0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-4);
  border-radius: 20px;
  white-space: nowrap;
}

.plan-icon {
  font-size: 28px;
  margin-top: var(--space-2);
}

.plan-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.plan-card--gold .plan-name {
  color: var(--color-gold);
}

.plan-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin: var(--space-1) 0;
}

.plan-price span {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: var(--space-2) 0;
}

.plan-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: 1.4;
  max-width: none;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}

.plan-card--gold .plan-features li::before {
  color: var(--color-gold);
}

.plan-scarcity {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: none;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

.plans-dropin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  text-align: center;
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.plans-dropin span {
  color: var(--color-text-muted);
}

.plans-dropin strong {
  color: var(--color-white);
}

.plans-dropin a {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: none;
}

.plans-dropin a:hover {
  color: var(--color-red-hover);
}

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

@media (max-width: 540px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OLD MEMBERSHIP ===== */
.membership-scarcity {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-4);
}

.membership-pricing {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.price-main {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.price-main span {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-weight: 400;
}

.price-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

.price-divider::before,
.price-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.price-divider span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-annual {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}

.price-annual span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 400;
}

.price-save {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.12);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.membership-pricing .btn {
  width: 100%;
  margin-top: var(--space-6);
}

/* ===== SUMMER CAMP ===== */
.camp {
  position: relative;
  overflow: hidden;
}

.camp-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.camp-flag {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camp-flag-stripes {
  position: absolute;
  inset: 0;
}

.camp-flag-stripes .stripe {
  height: 7.69%;
  width: 100%;
}

.camp-flag-stripes .stripe.red { background: var(--color-red); }
.camp-flag-stripes .stripe.white { background: #ffffff; }

.camp-flag-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 53.85%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camp-flag-stars span {
  color: white;
  font-size: var(--text-xl);
  letter-spacing: 4px;
}

.camp-flag-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camp-flag-overlay span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.3;
}

.camp-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.camp-date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.camp-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
  margin: var(--space-5) 0 var(--space-6);
}

.countdown-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.countdown-blocks {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  min-width: 72px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.countdown-unit {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: var(--space-1);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.countdown--expired .countdown-num {
  color: var(--color-text-faint);
}

@media (max-width: 480px) {
  .countdown-block {
    min-width: 58px;
    padding: var(--space-2) var(--space-3);
  }
  .countdown-num {
    font-size: var(--text-xl);
  }
}

/* ===== SCHEDULE (NEW) ===== */
.sched-section {
  position: relative;
  background: #0d0d0d;
  background-image:
    radial-gradient(ellipse at top left, rgba(196,30,58,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(26,58,108,0.15) 0%, transparent 50%);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-4);
  overflow: hidden;
}

.sched-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.sched-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
  text-align: center;
  flex-direction: column;
}

.sched-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 24px rgba(196,30,58,0.3);
}

.sched-pre {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

.sched-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(196,30,58,0.4);
}

.sched-grid-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  min-width: 720px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sched-day {
  background: var(--color-surface);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: background 0.2s ease;
}

.sched-day:hover {
  background: var(--color-surface-2);
}

.sched-day--featured {
  background: #12111a;
  border-left: 2px solid rgba(201,168,76,0.3);
  border-right: 2px solid rgba(201,168,76,0.3);
}

.sched-day-header {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-red);
  margin-bottom: var(--space-2);
}

.sched-class {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

.sched-class--gold {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}

.sched-class--motto {
  background: rgba(196,30,58,0.1);
  border-color: rgba(196,30,58,0.2);
}

.sched-class-name {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1.2;
}

.sched-class--gold .sched-class-name {
  color: var(--color-gold);
}

.sched-class--motto .sched-class-name {
  color: var(--color-red);
}

.sched-class-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sched-class--gold .sched-class-sub {
  color: rgba(201,168,76,0.6);
}

.sched-class-time {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.sched-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--content-default);
  margin: var(--space-8) auto 0;
}

.sched-footer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}

.sched-footer strong {
  color: var(--color-white);
}

.sched-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-top: var(--space-4) !important;
  text-shadow: 0 2px 12px rgba(196,30,58,0.3);
}

@media (max-width: 768px) {
  .sched-grid-wrap {
    padding-bottom: var(--space-3);
  }
  .sched-grid-wrap::after {
    content: 'Scroll to see full schedule →';
    display: block;
    text-align: center;
    font-size: var(--text-xs);
    color: var(--color-text-faint);
    margin-top: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

/* ===== OLD SCHEDULE TABLE (kept for reference) ===== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-4);
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
}

.schedule-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-red);
  font-size: var(--text-xs);
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.schedule-table tbody tr:hover {
  background: var(--color-surface);
}

.schedule-table td {
  color: var(--color-text);
}

.schedule-table .class-name {
  font-weight: 600;
  color: var(--color-white);
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.schedule-note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.15);
  border-radius: 50%;
  color: var(--color-red);
}

.schedule-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.schedule-note strong {
  color: var(--color-white);
}

/* ===== SOCIAL PROOF ===== */
.proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.proof-stat {
  padding: var(--space-4);
}

.proof-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.proof-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== LOCATION / CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-red);
  margin-top: 2px;
}

.contact-item p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-item a {
  color: var(--color-text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--color-red);
}

.contact-map {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-8) var(--space-4);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--color-red);
  color: var(--color-white);
}

/* ===== TEAM STORE ===== */
.team-store {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.store-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.store-banner {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.store-logo-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 40px rgba(196,30,58,0.3), 0 0 80px rgba(196,30,58,0.1);
}

.store-simple-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  text-align: center;
  max-width: none;
}

.store-category {
  margin-bottom: var(--space-10);
}

.store-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-red);
}

.store-cat-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.store-view-all {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-view-all:hover {
  color: var(--color-red-hover);
}

.store-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.store-product-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.store-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}

.store-product-img {
  background: #ffffff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3);
}

.store-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.store-product-card:hover .store-product-img img {
  transform: scale(1.05);
}

.store-product-info {
  padding: var(--space-3) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.store-product-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  max-width: none;
}

.store-product-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  max-width: none;
}

.store-product-was {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  text-decoration: line-through;
  font-weight: 400;
}

.store-shop-all {
  text-align: center;
  margin-top: var(--space-4);
}

@media (max-width: 900px) {
  .store-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .store-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 50%, var(--color-red-dark) 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-4);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto var(--space-6);
  max-width: 500px;
}

.cta-banner .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-banner .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-red);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-menu a:hover {
  color: var(--color-red);
}

.mobile-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2);
  color: var(--color-text);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: var(--text-2xl);
  }

  .hero-content {
    padding: var(--space-24) var(--space-4) var(--space-12);
  }

  .membership-grid {
    grid-template-columns: 1fr;
  }

  .camp-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
