/* ============================================================
   SPROUT ATHLETICS — concept site
   Style study: playful youth-sports aesthetic, green system,
   rounded geometric sans, pill buttons, inset rounded sections
   ============================================================ */

:root {
  /* colors */
  --green-100: #42c652;
  --green-hover: #35b545;
  --forest-500: #2e8361;
  --forest-600: #245240;
  --deep-700: #35463f;
  --deep-800: #243c38;
  --sage-400: #6a847a;
  --mist-300: #bbc8c3;
  --cream-200: #edf6e9;
  --pale-100: #e4fada;
  --lime-200: #dbf4a9;
  --chartreuse-300: #d8e662;
  --offwhite-500: #f7f8f5;
  --white: #ffffff;

  /* type */
  --font: "Quicksand", sans-serif;
  --fs-h1: 75px;
  --fs-h2: 48px;
  --fs-h3: 32px;
  --fs-h4: 24px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-small: 14px;
  --lh-heading: 1.115;
  --lh-body: 1.5;

  /* radius */
  --br-1: 4px;
  --br-2: 8px;
  --br-3: 16px;
  --br-4: 24px;
  --br-5: 28px;
  --br-pill: 300px;

  /* layout */
  --container: 1318px;
  --gutter: 24px;
  --frame: 16px;              /* inset for hero / dark bands */
  --section-pad: 120px;

  /* motion */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --reveal-duration: 0.9s;
}

@media (max-width: 991px) {
  :root { --fs-h1: 64px; --fs-h2: 36px; --fs-h3: 28px; --section-pad: 96px; }
}
@media (max-width: 767px) {
  :root { --fs-h1: 52px; --fs-h2: 32px; --fs-h3: 24px; --fs-h4: 20px; --section-pad: 72px; }
}
@media (max-width: 479px) {
  :root { --fs-h1: 40px; --fs-h2: 30px; --section-pad: 64px; }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 500;
  color: var(--sage-400);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--forest-600);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
.text-light { color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- reveal system ---------- */
[data-reveal], [data-load-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--reveal-duration) var(--ease-out),
              transform var(--reveal-duration) var(--ease-out);
  will-change: opacity, transform;
}
[data-load-reveal] { transform: translateY(24px); }
.is-revealed { opacity: 1 !important; transform: translateY(0) !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-load-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--br-pill);
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn--green { background: var(--green-100); color: var(--white); }
.btn--green:hover { background: var(--forest-600); }
.btn--outline { border: 1px solid var(--mist-300); color: var(--forest-600); background: transparent; }
.btn--outline:hover { border-color: var(--forest-600); background: var(--cream-200); }
.btn--white { background: var(--white); color: var(--forest-600); }
.btn--white:hover { background: var(--chartreuse-300); }
.btn--ghost-light { border: 1px solid rgba(255, 255, 255, 0.55); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--white); }
.btn--muted { background: var(--forest-500); color: var(--white); }
.btn--muted:hover { background: var(--green-100); }
.btn--small { padding: 8px 18px; font-size: var(--fs-small); }
.btn--large { padding: 17px 34px; font-size: var(--fs-body-lg); }

.buttons-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.buttons-row--center { justify-content: center; margin-top: 56px; }

/* ---------- labels / tags / links ---------- */
.label {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--forest-600);
  margin-bottom: 16px;
}
.label__dash { width: 26px; height: 2px; background: var(--chartreuse-300); border-radius: 2px; }
.label--center { justify-content: center; }
.label--lime { color: var(--chartreuse-300); justify-content: center; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--offwhite-500);
  border: 1px solid var(--cream-200);
  border-radius: var(--br-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--forest-600);
}
.tag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-100); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--forest-600);
  transition: color 0.25s var(--ease-out);
}
.text-link svg { transition: transform 0.25s var(--ease-out); }
.text-link:hover { color: var(--green-100); }
.text-link:hover svg { transform: translateX(4px); }

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.arrow-circle--light { border: 1px solid rgba(255, 255, 255, 0.6); color: var(--white); }
.arrow-circle--outline { border: 1px solid var(--mist-300); color: var(--forest-600); }

/* ---------- sections ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section--overflow-hidden { overflow: hidden; }
.section--cream {
  background: var(--cream-200);
  border-radius: var(--br-4);
  margin: 0 var(--frame);
}
.section--top-tight { padding-top: 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head__text { max-width: 640px; }
.section-head__para { margin-top: 16px; max-width: 520px; }
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ---------- notification bar ---------- */
.notification-bar {
  background: var(--deep-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px var(--gutter);
  flex-wrap: wrap;
}
.notification-bar__text { font-size: var(--fs-small); font-weight: 600; }
.notification-bar__actions { display: flex; gap: 8px; }

/* ---------- header ---------- */
.header { background: var(--white); position: relative; z-index: 50; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-200);
}
.header__logo { display: inline-flex; align-items: center; gap: 10px; }
.header__logo-word {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-600);
  letter-spacing: -0.01em;
}
.header__nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-weight: 600;
  color: var(--forest-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: color 0.25s var(--ease-out);
}
.nav-link:hover { color: var(--green-100); }
.nav-link--current { color: var(--green-100); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle svg { transition: transform 0.3s var(--ease-out); }
.nav-dropdown.is-open .nav-dropdown__toggle svg { transform: rotate(180deg); }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--br-3);
  box-shadow: 0 16px 40px rgba(25, 33, 61, 0.1);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.nav-dropdown.is-open .nav-dropdown__panel,
.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--br-2);
  font-weight: 600;
  color: var(--forest-600);
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.nav-dropdown__link:hover { background: var(--cream-200); color: var(--green-100); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--forest-600);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

/* ---------- hero ---------- */
.hero { padding: var(--frame); }
.hero__frame {
  position: relative;
  border-radius: var(--br-4);
  overflow: hidden;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: flex-end;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 28, 0.62) 0%, rgba(20, 32, 28, 0.12) 45%, rgba(20, 32, 28, 0) 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 64px;
  flex-wrap: wrap;
}
.hero__title { max-width: 720px; font-weight: 500; }
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- sports ---------- */
.squiggle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.squiggle--sports {
  top: -40px;
  right: -180px;
  width: 820px;
}
.squiggle svg { width: 100%; height: auto; }
#sports .container { position: relative; z-index: 1; }

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sports-grid__stack { display: flex; flex-direction: column; gap: 24px; }

.sport-card {
  position: relative;
  border-radius: var(--br-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  isolation: isolate;
}
.sport-card--tall { min-height: 660px; }
.sport-card--short { min-height: 318px; flex: 1; }
.sport-card__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.sport-card:hover .sport-card__img { transform: scale(1.05); }
.sport-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(20, 32, 28, 0.55) 0%, rgba(20, 32, 28, 0.05) 40%),
              linear-gradient(to top, rgba(20, 32, 28, 0.35) 0%, rgba(20, 32, 28, 0) 30%);
}
.sport-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.sport-card__title { font-size: var(--fs-h3); font-weight: 600; }
.sport-card:hover .arrow-circle--light {
  background: var(--white);
  color: var(--forest-600);
  border-color: var(--white);
  transform: rotate(-45deg);
}
.sport-card__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--forest-600);
  border-radius: var(--br-2);
  padding: 9px 14px;
  font-size: var(--fs-small);
  font-weight: 600;
}
.chip__icon { color: var(--green-100); flex-shrink: 0; }

/* ---------- programs ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  border-radius: var(--br-4);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(25, 33, 61, 0.08);
}
.program-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.program-card:hover .arrow-circle--outline {
  background: var(--green-100);
  border-color: var(--green-100);
  color: var(--white);
  transform: rotate(-45deg);
}
.program-card__title { margin-bottom: 12px; }
.program-card__para { margin-bottom: 28px; }
.program-card__media {
  border-radius: var(--br-3);
  overflow: hidden;
  margin-top: auto;
  aspect-ratio: 16 / 10;
}
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.program-card:hover .program-card__media img { transform: scale(1.06); }

/* ---------- facilities ---------- */
.facilities {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 80px;
  align-items: start;
}
.facilities__para { margin: 16px 0 32px; max-width: 460px; }
.facilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 40px;
  padding-top: 8px;
}
.facility__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--lime-200);
  border-radius: 14px;
  margin-bottom: 20px;
}
.facility__title { font-size: var(--fs-h4); margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 var(--frame); }
.cta-band__inner {
  position: relative;
  background: var(--deep-800);
  border-radius: var(--br-4);
  overflow: hidden;
  padding: 140px 24px;
}
.cta-band__rings {
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 480px;
  opacity: 0.55;
  pointer-events: none;
}
.cta-band__swoosh {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 480px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-band__content h2 { margin-bottom: 20px; }
.cta-band__para { color: var(--cream-200); margin-bottom: 36px; }

/* ---------- locations ---------- */
.locations {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.location { border-bottom: 1px solid var(--cream-200); }
.location__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
}
.location__city { font-size: var(--fs-h3); transition: color 0.25s var(--ease-out); }
.location__head:hover .location__city { color: var(--green-100); }
.location__toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-200);
  flex-shrink: 0;
  transition: background-color 0.3s var(--ease-out);
}
.location__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--forest-600);
  border-radius: 2px;
  translate: -50% -50%;
  transition: transform 0.35s var(--ease-out), background-color 0.3s var(--ease-out);
}
.location__toggle span:last-child { transform: rotate(90deg); }
.location.is-open .location__toggle { background: var(--forest-600); }
.location.is-open .location__toggle span { background: var(--white); }
.location.is-open .location__toggle span:last-child { transform: rotate(0deg); }
.location__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.location.is-open .location__body { grid-template-rows: 1fr; }
.location__body-inner { overflow: hidden; }
.location__body-inner p { margin-bottom: 20px; max-width: 440px; }
.location__body-inner .text-link { display: flex; margin-bottom: 16px; }
.location__body-inner > *:last-child { margin-bottom: 32px; }

.locations__media {
  position: relative;
  border-radius: var(--br-4);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
}
.locations__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.locations__img.is-active { opacity: 1; }

/* ---------- testimonials ---------- */
.testi-slider {
  position: relative;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.testi-slider .swiper { overflow: visible; }
.testi-slide { width: min(940px, 82vw); height: auto; }
.testi-card {
  background: var(--offwhite-500);
  border-radius: var(--br-4);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 48px;
  align-items: center;
  height: 100%;
}
.testi-card__media {
  border-radius: var(--br-3);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.testi-card__media img { width: 100%; height: 100%; object-fit: cover; }
.testi-card__body { padding-right: 24px; }
.testi-card__quote { margin-bottom: 20px; font-size: var(--fs-h4); }
.testi-card__para { margin-bottom: 48px; max-width: 480px; }
.testi-card__name { font-weight: 700; color: var(--forest-600); }
.testi-card__loc {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--mist-300);
  margin-top: 4px;
}

.testi-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-600);
  box-shadow: 0 10px 30px rgba(25, 33, 61, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), opacity 0.3s;
}
.testi-arrow:hover { background: var(--green-100); color: var(--white); }
.testi-arrow--prev { left: max(12px, calc((100vw - var(--container)) / 2 - 16px)); }
.testi-arrow--next { right: 24px; }
.testi-arrow[disabled] { opacity: 0.35; pointer-events: none; }

/* ---------- instagram ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 0;
}
.insta-tile {
  border-radius: var(--br-3);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}
.insta-tile--big {
  grid-row: span 2;
  aspect-ratio: auto;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 82, 64, 0);
  transition: background-color 0.4s var(--ease-out);
}
.insta-tile:hover::after { background: rgba(36, 82, 64, 0.22); }

/* ---------- articles ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.post-card { display: flex; flex-direction: column; }
.post-card__media {
  border-radius: var(--br-4);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.post-card__date { font-size: var(--fs-small); font-weight: 600; }
.post-card__title {
  margin-bottom: 20px;
  max-width: 520px;
  transition: color 0.25s var(--ease-out);
}
.post-card:hover .post-card__title { color: var(--green-100); }

/* ---------- newsletter ---------- */
.newsletter { padding: var(--frame); }
.newsletter__inner {
  position: relative;
  background: var(--deep-800);
  border-radius: var(--br-4);
  overflow: hidden;
  padding: 96px 64px;
}
.newsletter__swoosh {
  position: absolute;
  left: -60px;
  bottom: -110px;
  width: 560px;
  opacity: 0.9;
  pointer-events: none;
}
.newsletter__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.newsletter__content h2 { max-width: 560px; }
.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__input {
  font: inherit;
  font-weight: 600;
  color: var(--forest-600);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--br-pill);
  padding: 14px 24px;
  min-width: 300px;
  outline: none;
  transition: border-color 0.25s var(--ease-out);
}
.newsletter__input::placeholder { color: var(--sage-400); }
.newsletter__input:focus { border-color: var(--green-100); }
.newsletter__form.is-success .newsletter__input { border-color: var(--green-100); }

/* ---------- footer ---------- */
.footer { padding: 96px 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 80px;
  padding-bottom: 72px;
}
.footer__para { margin: 20px 0 28px; max-width: 340px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title {
  font-weight: 700;
  color: var(--forest-600);
  margin-bottom: 8px;
}
.footer__link {
  color: var(--sage-400);
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}
.footer__link:hover { color: var(--green-100); }
.footer__bottom {
  border-top: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  flex-wrap: wrap;
}
.footer__copy { font-size: var(--fs-small); }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-200);
  color: var(--forest-600);
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.footer__social-link:hover {
  background: var(--green-100);
  border-color: var(--green-100);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .testi-slide { width: 86vw; }
}

@media (max-width: 991px) {
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px var(--gutter) 28px;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: 0 24px 40px rgba(25, 33, 61, 0.08);
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  body.nav-locked { overflow: hidden; }
  .nav-link { padding: 10px 0; font-size: 18px; }
  .nav-dropdown__panel {
    position: static;
    translate: 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown__panel { display: block; }
  .header__burger { display: flex; }
  .header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__content { padding: 40px; }
  .sports-grid { grid-template-columns: 1fr 1fr; }
  .sport-card--tall { min-height: 480px; }
  .programs-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .facilities { grid-template-columns: 1fr; gap: 56px; }
  .locations { grid-template-columns: 1fr; gap: 48px; }
  .testi-card { grid-template-columns: 1fr; gap: 28px; }
  .testi-card__media { aspect-ratio: 16 / 10; }
  .testi-card__body { padding-right: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 56px; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .insta-tile--big { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; }
}

@media (max-width: 767px) {
  .notification-bar { justify-content: space-between; text-align: left; }
  .hero__frame { min-height: 78vh; }
  .hero__content { padding: 28px; }
  .sports-grid { grid-template-columns: 1fr; }
  .sports-grid__stack { gap: 24px; }
  .sport-card--tall, .sport-card--short { min-height: 420px; }
  .section-head { margin-bottom: 40px; }
  .facilities__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band__inner { padding: 96px 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .newsletter__inner { padding: 64px 28px; }
  .newsletter__input { min-width: 0; width: 100%; }
  .newsletter__form { width: 100%; }
  .newsletter__form .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .testi-arrow { display: none; }
  .testi-slide { width: 88vw; }
}

@media (max-width: 479px) {
  .header__inner { gap: 12px; }
  .header__actions { gap: 8px; }
  .header__actions .btn { padding: 10px 16px; font-size: var(--fs-small); }
  .insta-grid { grid-template-columns: 1fr; }
  .insta-tile--big { grid-column: auto; }
  .footer__cols { grid-template-columns: 1fr; }
  .buttons-row .btn { width: 100%; }
  .notification-bar__actions .btn { width: auto; }
  .hero__buttons { width: 100%; }
  .hero__buttons .btn { width: 100%; }
}
