/* ═══════════════════════════════════════════════
   COACH LAULAU — HYROX COACHING
   Design: Light, Warm & Personal
═══════════════════════════════════════════════ */

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

:root {
  /* ── Palette Brand ── */
  --coral:         #E8456A;
  --coral-hover:   #CF3459;
  --coral-light:   #FF7096;
  --coral-ultra:   #FDF0F4;
  --coral-dim:     rgba(232,69,106,0.13);
  --coral-shadow:  rgba(232,69,106,0.25);

  --blue:          #5B8BF5;
  --blue-hover:    #4275E0;
  --blue-ultra:    #EEF3FF;
  --blue-shadow:   rgba(91,139,245,0.25);

  --rose:          #FFB3C6;
  --peach:         #FFD6C0;

  /* ── Fonds ── */
  --white:         #FFFFFF;
  --cream:         #FDF9F6;
  --light:         #F6F2F8;
  --light-2:       #EDE8F2;

  /* ── Textes ── */
  --navy:          #1A1826;
  --grey:          #6A6680;
  --grey-light:    #ADA8BF;

  /* ── Bordures ── */
  --border:        rgba(26,24,38,0.09);
  --border-coral:  rgba(232,69,106,0.22);

  /* ── Misc ── */
  --radius:        18px;
  --radius-sm:     10px;
  --shadow-sm:     0 2px 16px rgba(26,24,38,0.07);
  --shadow-md:     0 8px 40px rgba(26,24,38,0.11);
  --shadow-coral:  0 12px 48px rgba(232,69,106,0.22);
  --shadow-blue:   0 12px 48px rgba(91,139,245,0.22);
  --transition:    0.3s ease;
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

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

/* ── Utils ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.accent      { color: var(--coral); }
.accent-blue { color: var(--blue); }

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--navy);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(26,24,38,0.07);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--navy);
}
.nav__logo span { color: var(--coral); }

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

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--navy); }

.nav__cta {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
  color: #fff !important;
}
.nav__cta:hover {
  background: var(--coral-hover) !important;
  box-shadow: var(--shadow-coral) !important;
  transform: translateY(-2px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile a:hover { color: var(--coral); background: var(--coral-ultra); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--cream);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Blob décoratif */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,69,106,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,139,245,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__content { padding: 60px 0; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-ultra);
  border: 1px solid var(--border-coral);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__sub strong { color: var(--navy); }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--coral);
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--coral);
}
.stat__label {
  display: block;
  font-size: 11px;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* Hero colonne photo */
.hero__photo-col {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo-bg {
  position: absolute;
  inset: 20px 0 0 0;
  background: linear-gradient(145deg, var(--coral-ultra) 0%, var(--blue-ultra) 100%);
  border-radius: 40px 40px 0 40px;
  overflow: hidden;
}

.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.hero__photo-tag {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  z-index: 2;
}
.hero__photo-tag-icon { font-size: 1.8rem; }
.hero__photo-tag-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.hero__photo-tag-text span {
  font-size: 12px;
  color: var(--grey);
}

.hero__photo-badge {
  position: absolute;
  top: 36px;
  right: -14px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: white;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-coral);
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}

/* ═══════════════════ BOUTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  line-height: 1;
}

.btn--primary {
  background: var(--coral);
  color: white;
}
.btn--primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

.btn--blue {
  background: var(--blue);
  color: white;
}
.btn--blue:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-ultra);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn--outline:hover {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-coral);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ═══════════════════ ABOUT ═══════════════════ */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* Stack de photos */
.about__img-stack { position: relative; }

.about__img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about__img-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 46%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about__badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-coral);
  line-height: 1.3;
}
.about__badge-icon { font-size: 22px; }

/* Name tag */
.about__name-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--coral-ultra);
  border: 1.5px solid var(--border-coral);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 20px;
}

.about__name-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--coral);
}

.about__name-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.about__name-info span {
  font-size: 12px;
  color: var(--grey);
}

.about__text p {
  color: var(--grey);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about__text p strong { color: var(--navy); }

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.pill {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  background: var(--light);
  transition: all var(--transition);
}
.pill:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-ultra);
  transform: translateY(-2px);
}

/* ═══════════════════ HYROX ═══════════════════ */
.hyrox {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Watermark */
.hyrox::before {
  content: 'HYROX';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18vw;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hyrox .container { position: relative; z-index: 1; }
.hyrox .section__eyebrow { color: var(--coral); }
.hyrox .section__eyebrow::before { background: var(--coral); }
.hyrox .section__title { color: white; }

.hyrox__header { text-align: center; margin-bottom: 48px; }

.hyrox__intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Photo strip */
.hyrox__photo-strip {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  border-radius: 20px;
  overflow: hidden;
}

.hyrox__strip-img {
  flex: 1;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  opacity: 0.75;
  transition: all var(--transition);
  filter: saturate(0.8);
}
.hyrox__strip-img:hover {
  opacity: 1;
  transform: scale(1.02);
  filter: saturate(1.1);
}
.hyrox__strip-img.tall {
  flex: 1.3;
  height: 260px;
  object-position: top;
}

/* Stations */
.hyrox__stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.station {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.station:hover {
  background: rgba(232,69,106,0.1);
  border-color: rgba(232,69,106,0.35);
  transform: translateY(-4px);
}

.station::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--blue));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.station:hover::before { transform: scaleX(1); }

.station__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
}

.station__icon { font-size: 1.8rem; margin-bottom: 10px; }
.station h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: white; }
.station p { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.5; }

/* ═══════════════════ PROGRAMS ═══════════════════ */
.programs { background: var(--cream); }

.programs__header { text-align: center; margin-bottom: 60px; }

.programs__intro {
  font-size: 1rem;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto;
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.program-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,69,106,0.3);
}

.program-card--featured {
  border-color: var(--coral);
  background: linear-gradient(160deg, #FFF0F4 0%, var(--white) 55%);
  transform: scale(1.04);
  box-shadow: var(--shadow-coral);
}
.program-card--featured:hover { transform: scale(1.04) translateY(-6px); }

.program-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--light);
  color: var(--grey);
  margin-bottom: 20px;
}
.program-card__tag--hot { background: var(--coral); color: white; }
.program-card__tag--elite { background: linear-gradient(90deg,#b8860b,#ffd700); color: #1a1826; }

.program-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.1;
  color: var(--navy);
}

.program-card__price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
}
.program-card__price span { font-size: 1rem; font-weight: 400; color: var(--grey-light); }

.program-card__desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.65;
}

.program-card__features { margin-bottom: 28px; }

.program-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.program-card__features li.disabled { color: var(--grey-light); }

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral-ultra);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══════════════════ RESULTS ═══════════════════ */
.results { background: var(--white); }

.results__header { text-align: center; margin-bottom: 60px; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: rgba(232,69,106,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial--accent {
  background: linear-gradient(160deg, #FFF0F4 0%, var(--cream) 70%);
  border-color: var(--border-coral);
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: var(--coral);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial__text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: white;
  flex-shrink: 0;
}

.testimonial__author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial__author span { font-size: 12px; color: var(--grey-light); }

/* PR Card */
.results__pr { display: flex; justify-content: center; }

.pr-card {
  background: linear-gradient(135deg, var(--coral) 0%, #C03060 100%);
  border-radius: 24px;
  padding: 48px 80px;
  text-align: center;
  box-shadow: var(--shadow-coral);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: white;
}

.pr-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.pr-card__value {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
}

.pr-card__sub { font-size: 14px; opacity: 0.75; }

/* ═══════════════════ SOCIAL ═══════════════════ */
.social { background: var(--light); }

.social__inner { text-align: center; }

.social__sub {
  font-size: 1rem;
  color: var(--grey);
  margin-top: 8px;
}

.social__platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.social__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 180px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.social__card:hover {
  border-color: var(--coral);
  transform: translateY(-6px);
  box-shadow: var(--shadow-coral);
}

.social__icon { font-size: 2.2rem; margin-bottom: 4px; }
.social__name { font-weight: 700; font-size: 15px; color: var(--navy); }
.social__handle { font-size: 13px; color: var(--coral); font-weight: 600; }
.social__followers { font-size: 12px; color: var(--grey-light); }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(91,139,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,69,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__text p {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Photo + bulle */
.contact__photo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--coral);
  box-shadow: var(--shadow-coral);
  flex-shrink: 0;
}

.contact__photo-bubble {
  background: var(--white);
  border: 1.5px solid var(--border-coral);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--grey);
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}
.contact__photo-bubble strong { color: var(--navy); }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--grey);
}
.contact__info-icon { font-size: 1.2rem; }

.contact__form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--navy);
  font-family: var(--font-body);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--grey-light); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,69,106,0.1);
  background: var(--white);
}

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

.contact__success {
  text-align: center;
  padding: 48px 24px;
}
.contact__success span { font-size: 3rem; display: block; margin-bottom: 16px; }
.contact__success h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.contact__success p { color: var(--grey); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  color: white;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer .nav__logo { color: white; }
.footer .nav__logo span { color: var(--coral); }

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
  line-height: 1.65;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--coral); }

.footer__social { display: flex; gap: 14px; font-size: 1.6rem; }
.footer__social a { transition: transform var(--transition); }
.footer__social a:hover { transform: scale(1.2); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.22); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo-col { min-height: 420px; }
  .hero__photo-bg { border-radius: 24px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-stack { max-width: 340px; margin: 0 auto; }
  .hyrox__stations { grid-template-columns: repeat(2, 1fr); }
  .programs__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .program-card--featured { transform: none; }
  .program-card--featured:hover { transform: translateY(-6px); }
  .testimonials { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero__content { padding: 40px 0; }
  .hero__photo-col { min-height: 360px; }
  .hyrox__stations { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hyrox__photo-strip { overflow-x: auto; }
  .hyrox__strip-img { min-width: 200px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats { gap: 20px; }
  .pr-card { padding: 36px 36px; }
  .pr-card__value { font-size: 4rem; }
  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .social__platforms { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hyrox__stations { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__divider { width: 40px; height: 1px; }
  .contact__form-wrap { padding: 24px; }
  .about__img-secondary { display: none; }
  .hero__photo-badge { display: none; }
  .hero__photo-tag { left: 0; right: 0; bottom: 16px; margin: 0 16px; }
}
