/* ============================================
   IMMACULATE BASEBALL — GLOBAL STYLES
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #111e35;
  --blue: #1a3a6e;
  --blue-bright: #1e5cad;
  --blue-light: #2e7dd1;
  --gold: #d4a843;
  --gold-light: #eacc6a;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray-light: #e8ecf4;
  --gray-mid: #8a9bb5;
  --gray-dark: #3a4a6b;
  --text-body: #d0daf0;
  --text-muted: #7a8bab;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Impact', sans-serif;

  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.45);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.75;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

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

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue-bright);
  color: var(--white);
  border-color: var(--blue-bright);
}
.btn-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,92,173,0.4);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__logo-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Labeled menu pill button */
.nav__toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.nav__toggle:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}

/* ============================================
   NAV DRAWER (slide-in from right, mobile)
   ============================================ */

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: #0d1e38;
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.nav__drawer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__drawer-close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: transparent;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all var(--transition);
}

.nav__drawer-close:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.nav__drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex: 1;
}

.nav__drawer-link {
  display: block;
  padding: 0.875rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav__drawer-link:last-child {
  border-bottom: none;
}

.nav__drawer-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  padding-left: 1.125rem;
}

.nav__drawer-cta {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__drawer-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.26;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.96) 0%,
    rgba(10,22,40,0.72) 45%,
    rgba(26,58,110,0.55) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem 6rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 2rem;
  padding: 0.375rem 1.125rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 1.75rem;
  max-width: 800px;
  text-transform: uppercase;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero__stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trustbar {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}

.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.trustbar__icon {
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ============================================
   ABOUT / PHILOSOPHY
   ============================================ */

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about__visual {
  position: relative;
}

.about__logo-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
}

.about__logo-bg {
  position: absolute;
  inset: -1.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,92,173,0.18) 0%, transparent 70%);
}

.about__logo-img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(30,92,173,0.3), 0 0 140px rgba(212,168,67,0.07);
  border: 2px solid rgba(255,255,255,0.07);
}

.about__logo-ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.14);
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about__text .section-sub {
  margin-bottom: 2.5rem;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.pillar:hover {
  background: rgba(30,92,173,0.08);
  border-color: rgba(30,92,173,0.25);
  transform: translateX(4px);
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}

.pillar__title {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.pillar__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about__quote {
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(212,168,67,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   PROGRAMS
   ============================================ */

.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.program-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.program-card:hover {
  background: rgba(30,92,173,0.07);
  border-color: rgba(30,92,173,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card__tier-accent {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.program-card__tier-accent--1    { background: var(--blue-light); }
.program-card__tier-accent--2    { background: var(--gold); }
.program-card__tier-accent--3    { background: #e05050; }
.program-card__tier-accent--pitch   { background: #32c864; }
.program-card__tier-accent--hit     { background: #a050dc; }
.program-card__tier-accent--defense { background: #14bede; }
.program-card__tier-accent--cond    { background: #f07828; }

.program-card__level {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.program-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.program-card__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(46,125,209,0.08);
  border: 1px solid rgba(46,125,209,0.18);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}

/* ============================================
   TRAINING MODEL
   ============================================ */

.training-model {
  position: relative;
  overflow: hidden;
}

.training-model__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(26,58,110,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.training-model__header {
  text-align: center;
  margin-bottom: 4rem;
}

.training-model__header .section-sub {
  margin: 0 auto;
}

.progression {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.progression__step {
  flex: 1;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: all var(--transition);
}

.progression__step:last-child { border-right: none; }

.progression__step:hover {
  background: rgba(30,92,173,0.08);
}

.progression__step--active {
  background: rgba(30,92,173,0.1);
}

.progression__step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,168,67,0.13);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.progression__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.progression__step-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.progression__step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.progression__arrow {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid var(--navy-mid);
  z-index: 1;
}

.training-model__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.principle {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.principle:hover {
  background: rgba(30,92,173,0.07);
  border-color: rgba(30,92,173,0.2);
}

.principle__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.principle__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.principle__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SCHEDULE
   ============================================ */

.schedule__header {
  text-align: center;
  margin-bottom: 3rem;
}

.schedule__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.schedule__tab {
  padding: 0.625rem 1.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.schedule__tab:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.schedule__tab--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.schedule-grid {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table th {
  padding: 1rem 0.875rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: left;
}

.schedule-table th:first-child {
  width: 90px;
  color: var(--text-muted);
}

.schedule-table td {
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
  font-size: 0.82rem;
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table .time-col {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.73rem;
  white-space: nowrap;
  padding-top: 1rem;
}

.sched-class {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.sched-class--fundamentals  { background: rgba(46,125,209,0.12);  border-left: 2px solid var(--blue-light); color: #82bfff; }
.sched-class--developmental { background: rgba(212,168,67,0.1);   border-left: 2px solid var(--gold);       color: var(--gold-light); }
.sched-class--advanced      { background: rgba(220,50,50,0.1);    border-left: 2px solid #dc3232;           color: #ff8f8f; }
.sched-class--pitching      { background: rgba(50,200,100,0.08);  border-left: 2px solid #32c864;           color: #7dffa8; }
.sched-class--hitting       { background: rgba(160,80,220,0.08);  border-left: 2px solid #a050dc;           color: #d48fff; }
.sched-class--conditioning  { background: rgba(240,120,40,0.08);  border-left: 2px solid #f07828;           color: #ffb87d; }
.sched-class--defense       { background: rgba(20,190,220,0.08);  border-left: 2px solid #14bede;           color: #7aeeff; }

.sched-class__name  { font-weight: 700; margin-bottom: 0.2rem; }
.sched-class__coach { font-size: 0.68rem; opacity: 0.7; font-weight: 400; }

/* ============================================
   MEMBERSHIP
   ============================================ */

.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}

.membership-card--featured {
  background: linear-gradient(145deg, rgba(26,58,110,0.5), rgba(30,92,173,0.25));
  border-color: rgba(212,168,67,0.35);
  transform: scale(1.04);
}

.membership-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.membership-card:not(.membership-card--featured):hover {
  border-color: rgba(30,92,173,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.membership-card__tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.membership-card__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.membership-card__price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
}

.price__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.price__period {
  font-size: 0.8rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.membership-card__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.membership-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.membership-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.membership-feature__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.52rem;
  color: var(--gold);
}

/* ============================================
   SERVICES
   ============================================ */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}

.service-card:hover {
  background: rgba(30,92,173,0.08);
  border-color: rgba(30,92,173,0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(30,92,173,0.12);
  border: 1px solid rgba(30,92,173,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--blue-light);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   FACILITY
   ============================================ */

.facility {
  position: relative;
  overflow: hidden;
}

.facility__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,110,0.4), transparent 70%);
  pointer-events: none;
}

.facility__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.facility__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.facility-feature {
  padding: 1.375rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.facility-feature:hover {
  background: rgba(30,92,173,0.08);
  border-color: rgba(30,92,173,0.22);
}

.facility-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(30,92,173,0.1);
  border: 1px solid rgba(30,92,173,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--blue-light);
}

.facility-feature__title {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.facility-feature__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.facility__visual {
  position: relative;
}

.facility__img-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26,58,110,0.8) 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,0.07);
}

.facility__img-frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem;
}

.facility__logo {
  width: 130px;
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: 0 0 60px rgba(30,92,173,0.4);
}

.facility__tagline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
}

.facility__tagline em {
  font-style: normal;
  color: var(--gold);
}

.facility__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.facility__img-corner {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.125rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   STORE
   ============================================ */

.store__header {
  text-align: center;
  margin-bottom: 3rem;
}

.store__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.store-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.store-item:hover {
  border-color: rgba(30,92,173,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.store-item__img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(26,58,110,0.5) 0%, rgba(10,22,40,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.store-item__body {
  padding: 1.25rem;
}

.store-item__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.store-item__sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.store-item__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.store__coming-soon {
  text-align: center;
  padding: 1.25rem 2rem;
  background: rgba(212,168,67,0.05);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(30,92,173,0.12);
  border: 1px solid rgba(30,92,173,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.contact__form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  transition: all var(--transition);
  width: 100%;
  min-height: 44px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(122,139,171,0.7); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: rgba(30,92,173,0.07);
  box-shadow: 0 0 0 3px rgba(46,125,209,0.1);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #060e1c;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__upper {
  padding: 4.5rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand .nav__logo {
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.footer__social {
  display: flex;
  gap: 0.625rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(30,92,173,0.15);
  border-color: rgba(30,92,173,0.35);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--white); }

.footer__lower {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--white); }

/* ============================================
   DIVIDERS & DECORATIVES
   ============================================ */

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
  border-radius: 1px;
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .membership__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .membership-card--featured { transform: scale(1); }
  .membership-card--featured:hover { transform: translateY(-4px); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .store__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .grid-2, .about__content, .facility__content, .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3, .training-model__principles { grid-template-columns: 1fr 1fr; }
  .progression { flex-direction: column; }
  .progression__step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .progression__step:last-child { border-bottom: none; }
  .progression__arrow { display: none; }
  .about__logo-wrap { max-width: 240px; margin: 0 auto; }
  .section { padding: 5rem 0; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .grid-3, .training-model__principles, .services__grid { grid-template-columns: 1fr; }
  .store__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.75rem; }
  .trustbar__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .trustbar__inner::-webkit-scrollbar { display: none; }
  .trustbar__item { flex-shrink: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .facility__features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .store__grid { grid-template-columns: 1fr; }
  .footer__lower { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}
