@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===================================================
   ROOT VARIABLES
=================================================== */
:root {
  --accent: #ff2d00;
  --accent-dim: rgba(255,45,0,0.15);
  --black: #070707;
  --dark1: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #272727;
  --gray: #6b6b6b;
  --muted: #9a9a9a;
  --light: #d4d4d4;
  --white: #f2f2f2;
  --display: 'Bebas Neue', sans-serif;
  --heading: 'Oswald', sans-serif;
  --body: 'DM Sans', sans-serif;
  --nav-h: 76px;
}

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--body); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ===================================================
   UTILITIES
=================================================== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 110px 0; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--heading); font-size: 12px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--accent);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.95; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 18px;
}
.section-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.75; max-width: 520px; margin-bottom: 52px;
}
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .eyebrow { display: flex; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading); font-size: 14px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 38px; border-radius: 1px; transition: all 0.22s;
  border: 2px solid transparent;
}
.btn-red { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-red:hover { background: transparent; color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--white); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.navbar.stuck {
  background: rgba(7,7,7,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,45,0,0.25);
}
.logo {
  font-family: var(--display); font-size: 30px;
  letter-spacing: 0.06em; color: var(--white);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--heading); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--accent); transition: right 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta {
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 10px 26px; border-radius: 1px;
  transition: background 0.2s; flex-shrink: 0;
}
.nav-cta:hover { background: #cc2400; color: #fff !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.28s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
=================================================== */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  padding-bottom: 80px; position: relative; overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1800&q=85') center/cover no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,7,7,0.96) 38%, rgba(7,7,7,0.5) 75%, rgba(255,45,0,0.04) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.85) 0%, transparent 55%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 0 5%; max-width: 820px;
}
.hero-kicker {
  font-family: var(--heading); font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.9s 0.1s both;
}
.hero-kicker span { display: block; width: 36px; height: 1px; background: var(--accent); }
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(80px, 13vw, 158px);
  line-height: 0.88; letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: fadeUp 0.9s 0.2s both;
}
.hero-h1 em { color: var(--accent); font-style: normal; display: block; }
.hero-desc {
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 460px;
  margin: 28px 0 44px;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.9s 0.45s both; }

.hero-stats {
  position: absolute; right: 5%; bottom: 80px; z-index: 1;
  display: flex; flex-direction: column; gap: 32px; text-align: right;
  animation: fadeUp 0.9s 0.6s both;
}
.hstat-num {
  font-family: var(--display); font-size: 52px;
  line-height: 1; color: var(--white);
}
.hstat-num b { color: var(--accent); }
.hstat-label {
  font-family: var(--heading); font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   TICKER
=================================================== */
.ticker-wrap {
  background: var(--accent); overflow: hidden; height: 46px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; padding: 0 36px;
}
.ticker-track span::after { content: '//'; margin-left: 36px; opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================
   WHY SECTION
=================================================== */
.why-bg { background: var(--dark1); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 64px;
}
.why-card {
  background: var(--dark2); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.why-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover { transform: translateY(-5px); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { font-size: 32px; margin-bottom: 22px; display: block; }
.why-card h3 {
  font-family: var(--heading); font-size: 19px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 12px; color: var(--white);
}
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* ===================================================
   CLASSES
=================================================== */
.classes-bg { background: var(--black); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; gap: 3px;
}
.class-card {
  position: relative; overflow: hidden;
  height: 320px; cursor: pointer;
}
.class-card.tall { height: 400px; }
.class-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
  transition: transform 0.65s ease, filter 0.4s;
}
.class-card:hover img { transform: scale(1.07); filter: brightness(0.35) saturate(0.6); }
.class-over {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 26px;
  background: linear-gradient(to top, rgba(7,7,7,0.88) 0%, transparent 60%);
}
.class-tag {
  font-family: var(--heading); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.class-name {
  font-family: var(--display); font-size: 28px; text-transform: uppercase;
}
.class-more {
  font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5;
  max-height: 0; overflow: hidden; transition: max-height 0.4s;
}
.class-card:hover .class-more { max-height: 60px; }

/* ===================================================
   TIMETABLE
=================================================== */
.tt-bg { background: var(--dark1); }
.tt-scroll { overflow-x: auto; margin-top: 56px; }
.tt-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.tt-table th {
  font-family: var(--heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); padding: 14px 10px;
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.tt-table td { border: 1px solid rgba(255,255,255,0.04); padding: 0; vertical-align: top; }
.tt-slot {
  background: var(--dark2); padding: 12px 10px; text-align: center;
  transition: background 0.2s; min-height: 76px;
}
.tt-slot:hover { background: var(--dark3); }
.tt-time-label { font-family: var(--heading); font-size: 11px; font-weight: 600; color: var(--gray); }
.tt-cname { font-size: 12px; font-weight: 600; display: block; margin-top: 4px; }
.tt-trainer { font-size: 11px; color: var(--gray); display: block; margin-top: 2px; }
.tt-pill {
  display: inline-block; font-family: var(--heading); font-size: 9px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 20px; margin-top: 4px;
}
.tt-pill.s { background: rgba(255,45,0,0.15); color: var(--accent); }
.tt-pill.c { background: rgba(59,130,246,0.15); color: #60a5fa; }
.tt-pill.g { background: rgba(34,197,94,0.15); color: #4ade80; }
.tt-pill.y { background: rgba(168,85,247,0.15); color: #c084fc; }
.tt-pill.h { background: rgba(251,191,36,0.15); color: #fbbf24; }
.tt-empty { background: var(--black); }
.tt-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.tt-leg-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.tt-leg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ===================================================
   BMI CALCULATOR
=================================================== */
.bmi-bg { background: var(--black); }
.bmi-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  margin-top: 60px;
}
.bmi-form-box { background: var(--dark2); padding: 52px; }
.bmi-result-box { background: var(--dark3); padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.form-label {
  font-family: var(--heading); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); display: block; margin-bottom: 8px;
}
.form-input {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); font-family: var(--body); font-size: 15px;
  padding: 13px 16px; outline: none; border-radius: 1px;
  transition: border-color 0.2s; margin-bottom: 18px;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input option { background: var(--dark3); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bmi-num {
  font-family: var(--display); font-size: 104px; line-height: 1;
  color: var(--accent); margin: 20px 0 6px;
  transition: color 0.4s;
}
.bmi-status {
  font-family: var(--heading); font-size: 30px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 24px;
  transition: color 0.4s;
}
.bmi-prog { background: var(--dark4); height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 36px; }
.bmi-fill { height: 100%; border-radius: 3px; width: 0; transition: width 0.8s cubic-bezier(.4,0,.2,1), background 0.4s; }
.bmi-ref { width: 100%; border-collapse: collapse; }
.bmi-ref th { font-family: var(--heading); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); padding: 10px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bmi-ref td { font-size: 13px; color: var(--light); padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }

/* ===================================================
   CALORIE CALCULATOR
=================================================== */
.cal-bg { background: var(--dark1); }
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 60px; }
.cal-form-box { background: var(--dark2); padding: 52px; }
.cal-result-box { background: var(--dark3); padding: 52px; }
.gender-row { display: flex; gap: 12px; margin-bottom: 18px; }
.gender-btn {
  flex: 1; padding: 12px; background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.07); color: var(--muted);
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s; border-radius: 1px;
}
.gender-btn.active { background: var(--accent-dim); border-color: var(--accent); color: var(--white); }
.cal-total {
  font-family: var(--display); font-size: 80px; line-height: 1;
  color: var(--accent); margin: 20px 0 6px;
}
.cal-unit { font-family: var(--heading); font-size: 16px; font-weight: 500; color: var(--gray); margin-bottom: 28px; }
.macro-row { display: flex; flex-direction: column; gap: 14px; }
.macro-item { }
.macro-label {
  font-family: var(--heading); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
  display: flex; justify-content: space-between; margin-bottom: 6px;
}
.macro-val { color: var(--white); }
.macro-bar { height: 4px; background: var(--dark4); border-radius: 2px; overflow: hidden; }
.macro-fill { height: 100%; border-radius: 2px; transition: width 0.7s ease; }

/* ===================================================
   PRICING
=================================================== */
.pricing-bg { background: var(--black); }
.branch-tabs { display: flex; gap: 3px; margin-bottom: 48px; }
.branch-tab {
  flex: 1; padding: 14px; background: var(--dark2);
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
  border: none; transition: all 0.2s; border-bottom: 2px solid transparent;
}
.branch-tab.active { background: var(--dark3); color: var(--white); border-bottom-color: var(--accent); }
.pricing-panel { display: none; }
.pricing-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.price-card {
  background: var(--dark2); padding: 44px 36px;
  position: relative; border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: rgba(255,45,0,0.3); transform: translateY(-5px); }
.price-card.hot { background: var(--dark3); border-color: var(--accent); }
.hot-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: var(--heading);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 18px; white-space: nowrap;
}
.plan-label {
  font-family: var(--heading); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px;
}
.plan-amt {
  font-family: var(--display); font-size: 60px; line-height: 1; color: var(--white);
}
.plan-amt sup { font-size: 22px; vertical-align: top; margin-top: 12px; color: var(--accent); }
.plan-per { font-size: 13px; color: var(--gray); margin-bottom: 30px; margin-top: 4px; }
.plan-feats { margin-bottom: 32px; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; color: var(--light); font-weight: 300; line-height: 1.4;
}
.plan-feats li::before { content: '+'; color: var(--accent); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; padding: 15px;
  font-family: var(--heading); font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s; text-align: center;
}
.plan-btn:hover, .price-card.hot .plan-btn { background: var(--accent); border-color: var(--accent); }

/* ===================================================
   TRAINERS
=================================================== */
.trainers-bg { background: var(--dark1); }
.trainers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 60px; }
.trainer-card { position: relative; overflow: hidden; }
.trainer-img { height: 360px; overflow: hidden; }
.trainer-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: transform 0.55s ease, filter 0.4s; }
.trainer-card:hover .trainer-img img { transform: scale(1.06); filter: grayscale(0%); }
.trainer-body { padding: 24px 26px; background: var(--dark2); }
.trainer-name { font-family: var(--heading); font-size: 20px; font-weight: 600; text-transform: uppercase; }
.trainer-spec { font-size: 12px; color: var(--accent); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.trainer-bio { font-size: 13px; color: var(--gray); margin-top: 10px; line-height: 1.65; font-weight: 300; }

/* ===================================================
   TESTIMONIALS
=================================================== */
.testi-bg { background: var(--black); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 60px; }
.testi-card { background: var(--dark2); padding: 36px; position: relative; overflow: hidden; }
.testi-card::before {
  content: '"'; font-family: var(--display);
  font-size: 160px; color: rgba(255,45,0,0.06);
  position: absolute; top: -20px; right: 10px;
  line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--light); line-height: 1.75; font-style: italic; font-weight: 300; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 20px; flex-shrink: 0;
}
.testi-name { font-family: var(--heading); font-size: 15px; font-weight: 600; text-transform: uppercase; }
.testi-meta { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ===================================================
   CTA BAND
=================================================== */
.cta-band {
  background:
    linear-gradient(100deg, rgba(7,7,7,0.93) 40%, rgba(255,45,0,0.12) 100%),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1400&q=80') center/cover no-repeat;
  padding: 120px 5%; text-align: center;
}
.cta-band h2 { font-family: var(--display); font-size: clamp(44px, 7vw, 88px); text-transform: uppercase; line-height: 0.95; margin-bottom: 20px; }
.cta-band p { font-size: 16px; color: var(--muted); max-width: 460px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }

/* ===================================================
   CONTACT
=================================================== */
.contact-bg { background: var(--dark1); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3px; }
.contact-info-box { background: var(--dark2); padding: 56px; }
.contact-info-box h3 {
  font-family: var(--heading); font-size: 20px; font-weight: 600;
  text-transform: uppercase; margin: 32px 0 14px; color: var(--white);
}
.contact-info-box h3:first-child { margin-top: 0; }
.c-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.c-icon { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.c-row p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.c-row a { color: var(--muted); transition: color 0.2s; }
.c-row a:hover { color: var(--accent); }
.contact-form-box { background: var(--dark2); padding: 56px; }
.contact-form-box h3 { font-family: var(--display); font-size: 36px; text-transform: uppercase; margin-bottom: 32px; }
.f-group { margin-bottom: 16px; }
.f-group input, .f-group textarea, .f-group select {
  width: 100%; background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  color: var(--white); font-family: var(--body); font-size: 14px;
  padding: 13px 16px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus { border-color: var(--accent); }
.f-group textarea { resize: vertical; min-height: 110px; }
.f-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===================================================
   FOOTER
=================================================== */
footer { background: var(--dark1); border-top: 1px solid rgba(255,255,255,0.04); }
.foot-top { padding: 72px 0 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand .logo { font-size: 34px; margin-bottom: 16px; }
.foot-brand p { font-size: 13px; color: var(--gray); line-height: 1.75; font-weight: 300; max-width: 260px; }
.foot-socials { display: flex; gap: 10px; margin-top: 22px; }
.fsoc {
  width: 38px; height: 38px; background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray); transition: all 0.2s; cursor: pointer;
}
.fsoc:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.foot-col h4 {
  font-family: var(--heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px;
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { font-size: 13px; color: var(--gray); transition: color 0.2s; font-weight: 300; }
.foot-col ul li a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.foot-bottom p { font-size: 12px; color: var(--gray); font-weight: 300; }

/* ===================================================
   PAGE HEADER (inner pages)
=================================================== */
.page-header {
  padding: 160px 0 80px; position: relative; overflow: hidden; background: var(--dark1);
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.07;
}
.page-header-inner { position: relative; z-index: 1; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(7,7,7,0.98); flex-direction: column;
    gap: 0; padding: 12px 0 20px;
    transform: translateY(-110%); transition: transform 0.3s;
    border-bottom: 1px solid var(--accent);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 5%; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 5%; display: block; text-align: center; }
  .bmi-wrap, .cal-wrap, .contact-grid, .pricing-panel.active { grid-template-columns: 1fr; }
  .testi-grid, .trainers-grid, .classes-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .form-row-2, .f-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .branch-tabs { flex-direction: column; }
  .pricing-panel.active { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 68px; }
}
