/* ============================================================
   BASELINE BASKETBALL CLUB — styles.css
   Brand: Big Shoulders Display 800 / Inter 400-600
   Colors: Ink #1A1D2E · Cream #F4EFE6 · Signal #F25F28
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --ink:     #1A1D2E;
  --cream:   #F4EFE6;
  --signal:  #F25F28;
  --ink-dim: rgba(26, 29, 46, 0.55);
  --cream-dim: rgba(244, 239, 230, 0.55);
  --nav-h: 72px;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

p {
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Shared section spacing ---- */
.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.section--xl { padding: 140px 0; }

/* ---- Brand Rule (orange underline motif) ---- */
.brand-rule {
  display: block;
  height: 3px;
  background: var(--signal);
  margin-top: 10px;
}

.brand-rule--wide {
  width: 100%;
}

.brand-rule--short {
  width: 48px;
}

/* ---- Color surfaces ---- */
.bg-ink    { background: var(--ink); color: var(--cream); }
.bg-cream  { background: var(--cream); color: var(--ink); }
.bg-signal { background: var(--signal); color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
}

/* ---- Text-based wordmark — header ---- */
.header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  padding: 4px 0;
}

.bl-wordmark {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.005em;
  color: #F4EFE6;
  line-height: 1;
}

.bl-rule {
  display: block;
  height: 3px;
  background: #F25F28;
  width: 108%;
  margin-top: 6px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  transition: opacity 0.18s ease;
  position: relative;
  padding-bottom: 3px;
}

.nav__links a:hover { opacity: 1; }

.nav__links a.active {
  opacity: 1;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--signal);
}

.nav__cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--signal);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 10px 20px !important;
  transition: background 0.18s ease !important;
}

.nav__cta:hover { background: #d94e1f; }
.nav__cta::after { display: none !important; }

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.2s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
}

.btn--signal {
  background: var(--signal);
  color: var(--cream);
}

.btn--signal:hover {
  background: #d94e1f;
  color: var(--cream);
}

.btn--outline-cream {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}

.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn--outline-ink {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn--outline-ink:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================================
   HERO (used on home and interior pages)
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero--full {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--signal);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(80px, 13vw, 180px);
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Interior hero (smaller) */
.hero--interior {
  padding: 80px 0 72px;
}

.hero--interior .hero__headline {
  font-size: clamp(52px, 8vw, 100px);
}

/* Decorative court lines */
.hero__deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  opacity: 0.04;
  pointer-events: none;
}

.hero__deco svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--signal);
  padding: 20px 0;
  overflow: hidden;
}

.stat-strip__inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-strip__item {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 36px;
  border-right: 1px solid rgba(244, 239, 230, 0.3);
  white-space: nowrap;
}

.stat-strip__item:first-child { padding-left: 0; }
.stat-strip__item:last-child { border-right: none; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 20px;
}

.section-label--signal { color: var(--signal); opacity: 1; }

/* ============================================================
   SECTION HEADLINE
   ============================================================ */
.section-headline {
  font-size: clamp(42px, 6vw, 80px);
  margin-bottom: 12px;
}

.section-headline--sm {
  font-size: clamp(32px, 4vw, 52px);
}

/* ============================================================
   PILLAR GRID (3-column value props)
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-dim);
  border: 1px solid var(--ink-dim);
  margin-top: 64px;
}

.pillar {
  background: var(--cream);
  padding: 48px 36px;
}

.pillar__number {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--signal);
  margin-bottom: 20px;
}

.pillar__title {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.pillar__body {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* Dark pillars */
.bg-ink .pillar-grid {
  background: rgba(244, 239, 230, 0.1);
  border-color: rgba(244, 239, 230, 0.1);
}

.bg-ink .pillar {
  background: var(--ink);
  color: var(--cream);
}

.bg-ink .pillar__body { color: var(--cream-dim); }

/* ============================================================
   NOT-LIST ("What Baseline isn't")
   ============================================================ */
.not-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.12);
  margin-top: 48px;
}

.not-list__item {
  background: var(--ink);
  padding: 36px 40px;
}

.not-list__item h4 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.not-list__item h4::before {
  content: '×';
  color: var(--signal);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.not-list__item p {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
  margin-top: 48px;
}

.team-card {
  background: var(--cream);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
  cursor: default;
}

.team-card:hover {
  background: var(--ink);
  color: var(--cream);
}

.team-card__grade {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--signal);
  letter-spacing: -0.02em;
}

.team-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.team-card__title {
  font-size: 24px;
  line-height: 1;
}

.team-card__body {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.6;
  margin-top: 4px;
}

.team-card:hover .team-card__label,
.team-card:hover .team-card__body {
  color: var(--cream);
}

/* ============================================================
   SEASON STRIP
   ============================================================ */
.season-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.12);
  border: 1px solid rgba(244, 239, 230, 0.12);
  margin-top: 48px;
}

.season-item {
  background: var(--ink);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.season-item:hover {
  border-top-color: var(--signal);
}

.season-item__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}

.season-item__detail {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote {
  border-left: 3px solid var(--signal);
  padding: 8px 0 8px 32px;
}

.pullquote__text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 16px;
}

.pullquote__attr {
  font-size: 13px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}

/* ============================================================
   TWO-COLUMN SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--60-40 { grid-template-columns: 3fr 2fr; }
.split--40-60 { grid-template-columns: 2fr 3fr; }

/* ============================================================
   CAMPS CARDS
   ============================================================ */
.camp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.camp-card {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.camp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--signal);
}

.camp-card__age {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 16px;
}

.camp-card__title {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
}

.camp-card__body {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ============================================================
   PRICING ROWS
   ============================================================ */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
  border: 1px solid rgba(244, 239, 230, 0.1);
  margin-top: 48px;
}

.pricing-row {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px 36px;
  gap: 24px;
}

.pricing-row__left {}

.pricing-row__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-row__detail {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

.pricing-row__right {
  text-align: right;
  flex-shrink: 0;
}

.pricing-row__price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-row__unit {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
}

.pricing-row__sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--cream-dim);
  display: block;
  margin-top: 2px;
}

/* Pricing badge */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-top: 8px;
}

.badge--signal {
  background: var(--signal);
  color: var(--cream);
}

.badge--outline {
  border: 1px solid rgba(244, 239, 230, 0.3);
  color: var(--cream-dim);
}

/* Inline price callout — for use inside cream sections */
.price-callout {
  background: var(--ink);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.price-callout__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}

.price-callout__headline {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-callout__unit {
  font-size: 14px;
  color: var(--cream-dim);
  margin-top: 6px;
}

.price-callout__includes {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 360px;
}

/* ============================================================
   TRAINING CARDS
   ============================================================ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
  border: 1px solid rgba(244, 239, 230, 0.1);
  margin-top: 48px;
}

.training-card {
  background: var(--ink);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.training-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--signal);
}

.training-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}

.training-card__title {
  font-size: 32px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.training-card__body {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 32px;
}

.training-card__pricing {
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.training-card__price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.training-card__price-detail {
  font-size: 12px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   SKILLS LIST
   ============================================================ */
.skills-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.12);
  margin-top: 32px;
}

.skills-list__item {
  background: var(--ink);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills-list__item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ink-dim);
  border: 1px solid var(--ink-dim);
  margin-top: 48px;
}

.value-item {
  background: var(--cream);
  padding: 36px 24px;
}

.value-item__label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.value-item__body {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  padding: 80px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band__headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  flex: 1;
  min-width: 260px;
}

.cta-band__sub {
  font-size: 15px;
  color: var(--cream-dim);
  margin-top: 12px;
  max-width: 360px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.2);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--signal);
}

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

.form-group select option {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

/* ---- Text-based wordmark — footer ---- */
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 24px;
}

.bl-wordmark-lg {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.005em;
  color: #F4EFE6;
  line-height: 1;
}

.bl-rule-lg {
  display: block;
  height: 4px;
  background: #F25F28;
  width: 108%;
  margin-top: 10px;
}

.bl-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #F4EFE6;
  text-transform: uppercase;
  margin-top: 14px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.65;
  max-width: 260px;
}

.footer__mantra {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--signal);
  margin-top: 20px;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.18s;
}

.footer__links a:hover { opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--cream-dim);
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 0.06em;
  transition: opacity 0.18s;
}

.footer__social a:hover { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__toggle { display: flex; }

  .nav.nav--open .nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 24px 24px 32px;
    gap: 0;
    border-top: 1px solid rgba(244, 239, 230, 0.1);
  }

  .nav.nav--open .nav__links li { width: 100%; }

  .nav.nav--open .nav__links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.08);
    font-size: 14px;
  }

  .nav.nav--open .nav__links .nav__cta {
    margin-top: 16px;
    display: block;
    text-align: center;
    padding: 14px 20px !important;
  }

  .training-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; padding: 24px; }
  .pricing-row__right { text-align: left; }
  .price-callout { flex-direction: column; align-items: flex-start; }

  /* Mobile wordmark sizing */
  .bl-wordmark { font-size: 28px; }
  .bl-rule { height: 2.5px; margin-top: 5px; }
  .bl-wordmark-lg { font-size: 44px; }
  .bl-rule-lg { height: 3px; margin-top: 8px; }
  .bl-subtitle { font-size: 9px; letter-spacing: 0.28em; margin-top: 10px; }

  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .section--xl { padding: 80px 0; }

  .hero { padding: 72px 0 64px; }
  .hero--full { min-height: auto; padding: 80px 0 72px; }

  .pillar-grid { grid-template-columns: 1fr; }
  .not-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .season-row { grid-template-columns: repeat(2, 1fr); }
  .camp-grid { grid-template-columns: 1fr; }
  .split, .split--60-40, .split--40-60 { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .stat-strip__inner { flex-direction: column; gap: 8px; }
  .stat-strip__item { padding: 4px 0; border-right: none; border-bottom: 1px solid rgba(244,239,230,0.2); width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .season-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .skills-list { grid-template-columns: 1fr; }
}
