/* ════════════════════════════════════════
   JAX LEGENDS — HOMEPAGE STYLES v3
   Light/Dark Split · Accent-only Colors
   ════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--surface-ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Dark atmospheric glow — teal top, subtle gold mid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(26,143,163,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 85%, rgba(184,132,28,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(26,143,163,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
}

/* Content column */
.hero-content { max-width: 900px; width: 100%; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  animation: appear 0.8s var(--ease) both;
  justify-content: center;
}
.hero-eyebrow::before { display: none; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(76px, 11vw, 160px);
  line-height: 0.88;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
  animation: appear 0.9s var(--ease) 0.1s both;
}
.hero-headline .accent-line {
  display: block;
  background: var(--grad-text-both);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: appear 0.9s var(--ease) 0.1s both, shimmer 4s ease-in-out 1.5s infinite alternate;
}

.hero-sub {
  color: rgba(245,244,240,0.85);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: appear 0.9s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  justify-content: center;
  animation: appear 0.9s var(--ease) 0.3s both;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  animation: appear 0.9s var(--ease) 0.4s both;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.hero-stat {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.09);
  position: relative;
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 1px;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,244,240,0.42);
  margin-top: 4px;
  display: block;
}

/* Right badge column */
.hero-badge-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: appear 1s var(--ease) 0.5s both;
}
.hero-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
}
.hero-badge-header {
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-athlete-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-athlete-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-athlete-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  border: 2px solid rgba(26,143,163,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.hero-athlete-info { min-width: 0; }
.hero-athlete-name {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  line-height: 1.2;
}
.hero-athlete-pos {
  font-size: 11px;
  color: rgba(245,244,240,0.42);
  margin-top: 2px;
}
.hero-badge-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(26,143,163,0.12);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-sm);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 16px;
  transition: all var(--t2) var(--ease);
  cursor: pointer;
}
.hero-badge-cta:hover { background: rgba(26,143,163,0.20); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 4;
  opacity: 0.6;
  transition: opacity var(--t1);
  animation: appear 1s var(--ease) 1s both;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-label {
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ── SERVICES SHOWCASE ──────────────────── */
.services-showcase {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.services-showcase-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.svc-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}
.svc-row:nth-child(4n) { border-right: none; }
.svc-row:nth-child(n+5) { border-top: 1px solid rgba(255,255,255,0.06); }
.svc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.svc-row:hover { background: rgba(255,255,255,0.03); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row:nth-child(even)::before { background: var(--gold-bright); }
.svc-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.svc-name {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.2s ease;
}
.svc-row:hover .svc-name { color: var(--teal-light); }
.svc-row:nth-child(even):hover .svc-name { color: var(--gold-light); }
.svc-desc {
  font-size: 12px;
  color: rgba(245,244,240,0.38);
  line-height: 1.4;
}
.svc-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.15);
  margin-top: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.svc-row:hover .svc-arrow {
  color: var(--teal-light);
  transform: translateX(4px);
}
.svc-row:nth-child(even):hover .svc-arrow { color: var(--gold-light); }

/* ── PHOTO STRIP ────────────────────────── */
.photo-strip {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 360px;
  overflow: hidden;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,14,23,0.7) 0%, rgba(11,14,23,0.1) 40%, transparent 70%);
  transition: opacity 0.4s;
}
.photo-strip-item:hover::after { opacity: 0.5; }
.photo-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  z-index: 2;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: translateY(4px);
  transition: transform 0.4s var(--ease);
}
.photo-strip-item:hover .photo-strip-caption { transform: translateY(0); }

/* ── PARTNERSHIPS BAR ───────────────────── */
.partnerships {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 44px 0;
}
.partnerships-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partnerships-label {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo svg {
  display: block;
}
.partner-logo-name {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.partner-divider {
  width: 1px;
  height: 48px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* ── ABOUT TEASER (light) ───────────────── */
.about-teaser {
  background: var(--white);
  padding: var(--sec) 0;
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo-wrap {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-photo-wrap:hover img { transform: scale(1.04); }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-dark);
  z-index: 2;
}
.about-badge-icon {
  font-size: 26px;
}
.about-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text-light);
  line-height: 1;
}
.about-badge-text span {
  font-size: 11px;
  color: var(--text-light2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-sub);
  font-weight: 600;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-text h2 em {
  font-style: normal;
  background: var(--grad-text-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p {
  color: var(--text-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}
.about-value .val-icon { font-size: 18px; flex-shrink: 0; }
.about-value .val-text {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── SERVICES GRID (off-white) ──────────── */
.services-preview {
  background: var(--off-white);
  padding: var(--sec) 0;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-header h2 .hl { color: var(--teal); }
.section-header p {
  color: var(--text-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

/* For dark-background sections */
.section-header.on-dark h2 { color: var(--text-light); }
.section-header.on-dark h2 .hl {
  background: var(--grad-text-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header.on-dark p { color: var(--text-light2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transition: transform var(--t2) var(--ease);
}
.service-card:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:nth-child(even)::after { background: var(--grad-gold); }
.service-card:nth-child(even):hover { border-color: var(--border-gold); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,143,163,0.08);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all var(--t2) var(--ease);
}
.service-card:hover .service-icon {
  background: rgba(26,143,163,0.15);
  transform: scale(1.08);
}
.service-card:nth-child(even) .service-icon {
  background: rgba(184,132,28,0.08);
  border-color: var(--border-gold);
}
.service-card:nth-child(even):hover .service-icon { background: rgba(184,132,28,0.15); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t2) var(--ease);
}
.service-link:hover { gap: 14px; }
.service-card:nth-child(even) .service-link { color: var(--gold-bright); }

/* ── ROSTER (dark navy) ─────────────────── */
.roster-section {
  background: var(--navy);
  padding: var(--sec) 0;
  overflow: hidden;
}
.roster-section .section-header h2 { color: var(--text-light); }
.roster-section .section-header p  { color: var(--text-light2); }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}
.athlete-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
  padding: 8px 0;
}
.athlete-card {
  flex: 0 0 calc(25% - 12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--t2) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.athlete-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.athlete-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(26,143,163,0.35);
  transform: translateY(-4px);
  box-shadow: var(--glow-teal);
}
.athlete-card:hover::before { transform: scaleX(1); }

.athlete-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--teal-deep), var(--ink-mid));
  border: 2px solid rgba(26,143,163,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.8);
  transition: border-color var(--t2);
}
.athlete-card:hover .athlete-avatar { border-color: var(--teal); }
.athlete-name {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.athlete-pos {
  font-size: 12px;
  color: var(--text-light3);
  margin-bottom: 10px;
}
.athlete-years {
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(245,244,240,0.7);
  transition: all var(--t2) var(--ease);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
}
.carousel-btn:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(26,143,163,0.12);
}

/* ── EVENTS TEASER (white) ──────────────── */
.events-teaser {
  background: var(--white);
  padding: var(--sec) 0;
}
.events-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.events-cta-col h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.events-cta-col h2 strong {
  display: block;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.events-cta-col p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.event-cards-col { display: flex; flex-direction: column; gap: 14px; }
.event-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--t2) var(--ease);
  cursor: pointer;
}
.event-row:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.event-date-box {
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}
.event-date-month {
  font-family: var(--font-sub);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--ink);
  display: block;
}
.event-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}
.event-row-info { flex: 1; min-width: 0; }
.event-row-info h4 {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin-bottom: 3px;
}
.event-row-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.event-row-arrow {
  font-size: 18px;
  color: var(--border-mid);
  transition: color var(--t1), transform var(--t2) var(--ease);
  flex-shrink: 0;
}
.event-row:hover .event-row-arrow {
  color: var(--teal);
  transform: translateX(4px);
}

/* ── TESTIMONIALS (dark ink) ────────────── */
.testimonials {
  background: var(--surface-ink);
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(184,132,28,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(26,143,163,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--t2) var(--ease);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,143,163,0.3);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars span { font-size: 14px; color: var(--gold-bright); }
.testimonial-text {
  color: rgba(245,244,240,0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--ink-mid));
  border: 2px solid rgba(26,143,163,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
}
.testimonial-author-role {
  font-size: 11px;
  color: var(--text-light3);
  margin-top: 2px;
}

/* ── PHOTO FEATURE BAND ─────────────────── */
.photo-feature-band {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.photo-feature-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-feature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,14,23,0.85) 0%,
    rgba(11,14,23,0.5) 50%,
    rgba(11,14,23,0.15) 100%
  );
  z-index: 1;
}
.photo-feature-band .band-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  left: 0; right: 0;
}
.photo-feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 20px;
}
.photo-feature-band h2 span {
  display: block;
  background: var(--grad-text-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.photo-feature-band p {
  color: rgba(245,244,240,0.7);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── GIVE BACK (off-white with teal accent) */
.give-teaser {
  background: var(--off-white);
  padding: var(--sec) 0;
}
.give-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.give-content h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.give-content h2 .tl {
  background: var(--grad-text-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.give-content p {
  color: var(--text-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  margin-bottom: 32px;
}
.give-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.give-stat {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--teal);
}
.give-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 1px;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.give-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.give-initiatives {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.initiative-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--t2) var(--ease);
}
.initiative-row:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.initiative-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26,143,163,0.08);
  border: 1px solid var(--border-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.initiative-text h4 {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin-bottom: 2px;
}
.initiative-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── BOOKING CTA (dark navy → gold accent) */
.booking-cta {
  background: var(--navy);
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,132,28,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(26,143,163,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.booking-cta .container { position: relative; z-index: 1; }
.booking-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.booking-cta h2 .gold-accent {
  display: block;
  background: var(--grad-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.booking-cta p {
  color: rgba(245,244,240,0.6);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.booking-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .photo-strip { height: 280px; grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge-col { display: none; }
  .hero-headline { font-size: clamp(64px, 12vw, 130px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 0; bottom: -16px; }
}
@media (max-width: 900px) {
  .athlete-card { flex: 0 0 calc(33.333% - 11px); }
  .events-split { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .give-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .photo-strip { height: 220px; grid-template-columns: repeat(2, 1fr); }
  .partnerships-inner { gap: 32px; }
  .partner-divider { display: none; }
  .hero-headline { font-size: clamp(60px, 15vw, 100px); }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .athlete-card { flex: 0 0 calc(50% - 8px); }
  .give-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .photo-feature-band { height: 360px; }
}
@media (max-width: 480px) {
  .athlete-card { flex: 0 0 calc(100% - 0px); }
}

/* ── LEGEND OF THE WEEK ─────────────────── */
.legend-week {
  background: var(--surface-ink);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.legend-week::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(26,143,163,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(184,132,28,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.lw-bg-number {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(280px, 38vw, 480px);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  letter-spacing: -10px;
}
.lw-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.lw-eyebrow {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lw-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
}
.lw-jersey-number {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 180px);
  line-height: 0.85;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--teal-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s ease;
}
.lw-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-light);
  letter-spacing: 2px;
  margin-top: 4px;
  line-height: 1.1;
  transition: all 0.4s ease;
}
.lw-meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.lw-pos {
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 600;
}
.lw-years {
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-light2);
}
.lw-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.lw-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-bright);
  line-height: 1;
}
.lw-stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light2);
  margin-top: 4px;
}
.lw-right-label {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.lw-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.88;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.lw-headline span {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lw-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light2);
  max-width: 540px;
  margin-bottom: 36px;
  transition: opacity 0.3s ease;
}
.lw-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lw-week-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.lw-week-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.lw-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.lw-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-light2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.lw-nav-btn:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(26,143,163,0.1);
}
.lw-nav-dots {
  display: flex;
  gap: 6px;
}
.lw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.lw-dot.active {
  background: var(--gold-bright);
  width: 18px;
  border-radius: 3px;
}
@media (max-width: 900px) {
  .lw-inner { grid-template-columns: 1fr; gap: 40px; }
  .lw-bg-number { display: none; }
}
@media (max-width: 640px) {
  .legend-week { padding: 64px 0; }
  .lw-stats { gap: 20px; }
}

/* ── SEMINAR PROMO ─────────────────────────────── */
.seminar-promo {
  padding: var(--sec) 0;
  background: var(--surface-dark);
}
.seminar-promo-header {
  text-align: center;
  margin-bottom: 52px;
}
.seminar-promo-header h2 { margin-bottom: 12px; }
.seminar-promo-header p { max-width: 480px; margin: 0 auto; }

.seminar-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.seminar-promo-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.seminar-promo-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.seminar-promo-card:hover img { transform: scale(1.03); }
.seminar-promo-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.seminar-promo-date {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.seminar-promo-name {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.seminar-promo-from {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.seminar-promo-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .seminar-promo-grid { grid-template-columns: 1fr; gap: 16px; }
}
