/* FitZone — shared styles */

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

:root {
  --lime: #b8ff00;
  --lime-dim: #8fcc00;
  --lime-glow: rgba(184, 255, 0, 0.35);
  --lime-soft: rgba(184, 255, 0, 0.1);
  --lime-border: rgba(184, 255, 0, 0.18);
  --bg: #0a0a0a;
  --card: #141414;
  --raised: #1a1a1a;
  --muted: #666;
  --text: #a0a0a8;
  --text-bright: #e8e8ec;
  --white: #fff;
  --border: rgba(255, 255, 255, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1280px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(184, 255, 0, 0.25); color: var(--white); }

/* ---- keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse-line {
  0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes scan {
  0% { top: 0; opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { top: 100%; opacity: 0.6; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(184, 255, 0, 0.25); }
  50% { box-shadow: 0 0 48px rgba(184, 255, 0, 0.45); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- layout ---- */
.wrap { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

section { padding: clamp(64px, 10vw, 100px) 0; }

/* ---- nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--lime-border);
  transition: height 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}

.nav.is-scrolled {
  height: 60px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 34px);
  letter-spacing: 0.08em;
  color: var(--white);
  z-index: 102;
}

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

.nav__links {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--lime); }

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 102;
}

.nav__cta { display: inline-flex; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--lime);
  transition: transform 0.3s, opacity 0.3s;
}

.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(10, 10, 10, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.nav.is-open .nav__mobile {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.25s;
}

.nav__mobile a:hover,
.nav__mobile a.is-active { color: var(--lime); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--lime {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 32px var(--lime-glow);
}

.btn--lime:hover { box-shadow: 0 0 48px rgba(184, 255, 0, 0.5); }

.btn--lime--pulse { animation: glow-pulse 2.5s ease-in-out infinite; }

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

.btn--outline:hover { background: var(--lime-soft); }

.btn--ghost {
  background: transparent;
  color: var(--text-bright);
  border: 1px solid var(--border);
}

.btn--ghost:hover { border-color: var(--lime-border); color: var(--lime); }

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

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero--page {
  min-height: 50vh;
  align-items: center;
  padding-bottom: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 35%, rgba(10, 10, 10, 0.4) 70%, rgba(10, 10, 10, 0.6));
}

.hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.5;
  animation: scan 4s linear infinite;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 20px var(--lime-glow);
}

.hero__scan::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(184, 255, 0, 0.06), transparent);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero__tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 128px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero__title span { color: var(--lime); display: block; }

.hero__title em {
  font-style: normal;
  color: var(--lime);
  -webkit-text-stroke: 1px var(--lime);
  color: transparent;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 42ch;
  margin-bottom: 32px;
  color: var(--text);
}

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

.hero__stats {
  display: flex;
  gap: clamp(24px, 5vw, 48px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--lime-border);
}

.hero__stat b {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--lime);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero__stat span { font-size: 13px; color: var(--muted); }

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint__line {
  width: 48px;
  height: 1px;
  background: var(--lime);
  animation: pulse-line 2s ease-in-out infinite;
  transform-origin: left;
}

/* ---- ticker ---- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--lime-border);
  border-bottom: 1px solid var(--lime-border);
  background: var(--card);
  padding: 14px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--lime);
  padding: 0 32px;
  white-space: nowrap;
}

.ticker__track span::after {
  content: '◆';
  margin-left: 32px;
  opacity: 0.4;
}

/* ---- section head ---- */
.section-head { margin-bottom: 48px; }

.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section-head p { color: var(--muted); max-width: 50ch; }

.section-head__line {
  width: 80px;
  height: 2px;
  background: var(--lime);
  margin-top: 16px;
  animation: pulse-line 2s ease-in-out infinite;
  transform-origin: left;
}

.section-head--center { text-align: center; }
.section-head--center p { margin: 0 auto; }
.section-head--center .section-head__line { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ---- cards grid ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime-border);
}

.feature-card__icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.feature-card p { font-size: 14px; }

/* ---- plans ---- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s;
  position: relative;
}

.plan:hover { transform: translateY(-6px); border-color: var(--lime-border); }

.plan--hot {
  border-color: var(--lime);
  box-shadow: 0 0 60px rgba(184, 255, 0, 0.12);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.plan h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.plan__desc { font-size: 13px; color: var(--muted); margin: 8px 0 16px; }

.plan__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

.plan__price small {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.plan__period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

.plan ul { flex: 1; margin-bottom: 28px; }

.plan li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan li::before {
  content: '▸';
  color: var(--lime);
  flex-shrink: 0;
}

.plan li.is-no { opacity: 0.4; }
.plan li.is-no::before { content: '✕'; color: var(--muted); }

/* ---- comparison table ---- */
.compare-wrap {
  overflow-x: auto;
  margin-bottom: 64px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--card);
}

.compare th,
.compare td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare th:first-child,
.compare td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-bright);
}

.compare thead th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  padding-top: 24px;
}

.compare thead th.is-hot { color: var(--lime); }

.compare .check { color: var(--lime); font-weight: 700; }
.compare .cross { color: var(--muted); opacity: 0.5; }

/* ---- FAQ ---- */
.faq { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.25s;
}

.faq-item__q:hover { color: var(--lime); }

.faq-item__q::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  font-size: 14px;
  color: var(--text);
}

.faq-item.is-open .faq-item__a {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ---- schedule tabs ---- */
.schedule-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.schedule-tab {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.25s;
}

.schedule-tab:hover { border-color: var(--lime-border); color: var(--white); }

.schedule-tab.is-active {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}

.schedule-panel { display: none; }
.schedule-panel.is-active { display: block; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.class-card {
  background: var(--card);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
  transition: border-color 0.3s, transform 0.3s;
}

.class-card:hover {
  border-color: var(--lime-border);
  transform: translateX(4px);
}

.class-card__time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--lime);
  line-height: 1;
}

.class-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

.class-card__type--crossfit { background: rgba(184, 255, 0, 0.15); color: var(--lime); }
.class-card__type--yoga { background: rgba(100, 200, 255, 0.12); color: #64c8ff; }
.class-card__type--hiit { background: rgba(255, 100, 80, 0.12); color: #ff6450; }
.class-card__type--boxing { background: rgba(255, 180, 50, 0.12); color: #ffb432; }

.class-card h3 { color: var(--white); font-size: 16px; margin: 10px 0 4px; }
.class-card p { font-size: 13px; color: var(--muted); }

.schedule-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.schedule-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.schedule-legend span::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

/* ---- trainers ---- */
.trainers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.trainer {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  transition: border-color 0.35s;
}

.trainer:hover { border-color: var(--lime-border); }

.trainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 0.4s, transform 0.5s var(--ease);
}

.trainer:hover img {
  filter: none;
  transform: scale(1.05);
}

.trainer__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.trainer__info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.trainer__role { font-size: 13px; color: var(--lime); margin: 4px 0 8px; }

.trainer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trainer__tags span {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-bright);
}

/* ---- gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.4s;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--lime);
}

/* ---- lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(184, 255, 0, 0.15);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--lime-border);
  border-radius: 50%;
  color: var(--lime);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.lightbox__close:hover { background: var(--lime-soft); }

/* ---- CTA band ---- */
.cta-band {
  background: var(--card);
  border-top: 1px solid var(--lime-border);
  border-bottom: 1px solid var(--lime-border);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.cta-band p { color: var(--muted); margin-bottom: 28px; max-width: 48ch; margin-left: auto; margin-right: auto; }

/* ---- footer ---- */
.footer {
  background: #060606;
  border-top: 1px solid var(--lime-border);
  padding: 64px 0 32px;
}

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

.footer__brand .logo { display: inline-block; margin-bottom: 16px; }

.footer__brand p {
  font-size: 14px;
  max-width: 32ch;
  margin-bottom: 20px;
}

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

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.25s, color 0.25s;
}

.footer__social a:hover { border-color: var(--lime); color: var(--lime); }

.footer__col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 14px;
  transition: color 0.25s;
}

.footer__col a:hover { color: var(--lime); }

.footer__contact li {
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.footer__contact li strong { color: var(--text-bright); min-width: 70px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a:hover { color: var(--lime); }

/* ---- reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].visible { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal-stagger].visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].visible > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].visible > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-stagger].visible > *:nth-child(6) { transition-delay: 0.4s; }

[data-reveal-stagger].visible > * {
  opacity: 1;
  transform: none;
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .grid-3, .plans, .trainers { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .grid-3, .grid-2, .plans, .trainers { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
