:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --accent: #e8c84a;
  --accent-dim: #b89b2e;
  --white: #f5f3ee;
  --muted: #8f8a81;
  --light-gray: #d7d1c7;
  --section-gray: #f0ede8;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Barlow", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
  background: var(--black);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a,
.nav-cta,
.menu-link,
.btn-primary,
.btn-ghost,
.btn-outline,
.plan-btn,
.mini-link {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--black);
  padding: 12px 26px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-ghost,
.btn-outline,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  padding: 12px 26px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn-ghost:hover,
.btn-outline:hover,
.mini-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(10, 10, 10, 0.98);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.menu-link {
  color: var(--white);
  font-size: 24px;
}

.menu-link.menu-cta {
  color: var(--black);
  background: var(--accent);
  padding: 14px 28px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 38%, #0f0f0f 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 200, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-athlete,
.page-hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.hero-content,
.page-hero-content {
  position: relative;
  padding: 0 48px 80px;
  max-width: 660px;
  z-index: 2;
}

.hero-eyebrow,
.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-eyebrow {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1,
.page-hero h1,
.big-heading,
.section-title {
  font-family: var(--font-display);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(82px, 12vw, 148px);
  margin-bottom: 28px;
}

.hero h1 em,
.page-hero h1 em,
.section-title em,
.big-heading em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub,
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--light-gray);
  max-width: 420px;
  margin-bottom: 38px;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

.hero-pill {
  position: absolute;
  top: 120px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--light-gray);
}

.play-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 2px;
}

.marquee-section {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 32px;
}

.marquee-track .sep {
  color: rgba(0, 0, 0, 0.32);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-dark,
.why-section,
.coaches-section,
.gallery-section,
.faq-section,
.contact-section {
  background: var(--off-black);
  padding: 100px 48px;
}

.section-light,
.services-section,
.contact-panel {
  background: var(--section-gray);
  color: var(--black);
}

.section-shell,
.narrow-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.narrow-shell {
  max-width: 860px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.section-light .section-eyebrow {
  color: #8a6f1a;
}

.section-light .section-eyebrow::before,
.section-light .section-eyebrow::after {
  background: #8a6f1a;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  text-align: center;
}

.section-copy,
.intro-copy {
  font-size: 18px;
  line-height: 1.7;
  color: var(--light-gray);
}

.intro-copy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.intro-copy strong {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.why-grid,
.stats-grid,
.cards-grid,
.gallery-grid,
.plans-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 2px;
}

.why-grid,
.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-card,
.info-card,
.plan-card,
.story-card,
.faq-item {
  background: var(--dark);
  padding: 42px 34px;
  border-top: 2px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.why-card:hover,
.info-card:hover,
.story-card:hover {
  border-top-color: var(--accent);
  background: #212121;
  transform: translateY(-4px);
}

.icon-box {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 200, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 18px;
}

.why-card h3,
.info-card h3,
.story-card h3,
.service-copy h3,
.plan-name,
.contact-card h3,
.faq-question {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.why-card p,
.info-card p,
.story-card p,
.service-copy p,
.plan-features li,
.contact-card p,
.faq-answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.commitment-bar {
  text-align: center;
  margin-top: 64px;
  overflow: hidden;
}

.commitment-bar p {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 60px);
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}

.services-section {
  padding: 100px 48px;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  overflow: hidden;
}

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    transform 0.6s ease,
    opacity 0.3s ease;
}

.service-row:hover .service-image img {
  transform: scale(1.04);
  opacity: 1;
}

.service-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.08);
}

.service-copy {
  background: var(--black);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-copy h3 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: none;
}

.coaches-header,
.gallery-header,
.page-header {
  margin-bottom: 52px;
}

.coaches-header h2,
.gallery-header h2,
.page-header h1,
.big-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 2px;
  line-height: 1;
}

.coaches-header p,
.gallery-header p,
.page-header p {
  font-size: 14px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.8;
}

.coaches-list,
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.2s ease;
}

.coach-row:hover {
  padding-left: 12px;
}

.coach-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.coach-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(232, 200, 74, 0.25);
  background: var(--mid);
  flex-shrink: 0;
}

.coach-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
}

.coach-title,
.coach-spec {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.coach-link {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232, 200, 74, 0.3);
  padding: 9px 18px;
}

.coach-link:hover {
  background: var(--accent);
  color: var(--black);
}

.stats-section {
  background: var(--black);
  padding: 80px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
}

.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--dark);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.gallery-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, transparent 100%);
}

.gallery-card-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1;
}

.membership-section {
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  background: var(--black);
  text-align: center;
}

.membership-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(90px, 16vw, 200px);
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

.membership-content {
  position: relative;
  z-index: 2;
}

.membership-content h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.membership-content p {
  max-width: 440px;
  margin: 0 auto 46px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.plans-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  margin: 0 auto 52px;
}

.plan-card {
  text-align: left;
}

.plan-card.featured {
  background: var(--accent);
}

.plan-card.featured .plan-name,
.plan-card.featured .plan-price {
  color: var(--black);
}

.plan-card.featured .plan-period,
.plan-card.featured .plan-features li {
  color: rgba(0, 0, 0, 0.66);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.plan-card.featured .plan-badge {
  background: rgba(0, 0, 0, 0.12);
  color: var(--black);
}

.plan-name {
  margin-bottom: 4px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  vertical-align: super;
}

.plan-period {
  margin-bottom: 24px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232, 200, 74, 0.15);
  border: 1px solid rgba(232, 200, 74, 0.4);
  flex-shrink: 0;
}

.plan-card.featured .plan-features li::before {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
}

.plan-card.featured .plan-btn {
  background: var(--black);
  border-color: var(--black);
  color: var(--accent);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--off-black);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #17120e 42%, #0f0f0f 100%);
}

.page-hero .hero-grid-overlay {
  opacity: 0.8;
}

.page-hero-content {
  padding-top: 160px;
}

.page-hero h1 {
  font-size: clamp(62px, 9vw, 112px);
  margin-bottom: 22px;
}

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.story-card {
  padding: 42px 40px;
}

.quote-block {
  padding: 42px 40px;
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.12), rgba(232, 200, 74, 0.03));
  border: 1px solid rgba(232, 200, 74, 0.18);
}

.quote-block p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--white);
}

.quote-block strong {
  color: var(--accent);
  font-weight: 600;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.split-visual {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.split-copy {
  background: var(--dark);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: 46px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 18px;
}

.split-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}

.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.process-card,
.contact-card {
  background: var(--dark);
  padding: 38px 32px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: rgba(232, 200, 74, 0.28);
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-answer {
  display: none;
  padding-top: 16px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item i {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.is-open i {
  transform: rotate(45deg);
}

.contact-section {
  padding-top: 140px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card {
  border-top: 2px solid transparent;
}

.contact-form-wrap {
  background: var(--section-gray);
  color: var(--black);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.form-group label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6e665a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  outline: none;
}

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

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #17120e 42%, #0f0f0f 100%);
}

.thank-you-card {
  max-width: 760px;
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 44px;
  text-align: center;
}

.thank-you-card h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.thank-you-card p {
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-gray);
}

.footer {
  background: #070707;
  padding: 72px 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 4px;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p,
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a:hover,
.social-link:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
  color: var(--accent);
}

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

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

@media (max-width: 900px) {
  .site-nav,
  .hero-content,
  .page-hero-content,
  .why-section,
  .coaches-section,
  .gallery-section,
  .membership-section,
  .services-section,
  .section-dark,
  .faq-section,
  .contact-section,
  .footer,
  .stats-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-nav {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-athlete,
  .page-hero-image {
    width: 100%;
    opacity: 0.22;
  }

  .hero-pill {
    left: 24px;
    top: 94px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .why-grid,
  .cards-grid,
  .stats-grid,
  .gallery-grid,
  .plans-grid,
  .story-grid,
  .process-grid,
  .contact-grid,
  .form-grid,
  .footer-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row:nth-child(even) {
    direction: ltr;
  }

  .gallery-header,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .coach-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }
}
