/* ========================
   ROOT & RESET
======================== */
:root {
  --bg: #ffffff;
  --bg2: #f4f8fc;
  --dark: #0d1b2a;
  --dark2: #1a3a52;
  --text: #0d1b2a;
  --text-muted: #4a6480;
  --text-light: #8aa0b4;
  --accent: #0ea5e9;
  --accent2: #38bdf8;
  --accent-dark: #0284c7;
  --accent-light: #f0f9ff;
  --accent-mid: #bae6fd;
  --green: #10b981;
  --border: #dde8f0;
  --font: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 68px;
  --shadow: 0 2px 12px rgba(13,27,42,0.07);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}

/* ========================
   NAV
======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--dark);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  font-family: var(--font);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-peak { color: white; }
.nav-logo-form { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 8px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-link:hover { color: white; }
.nav-link.active { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.nav-cta {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  background: var(--accent);
  text-decoration: none;
  padding: 9px 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent2); }

/* ========================
   PAGE SYSTEM
======================== */
.page-section {
  display: none;
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
}
.page-section.active { display: block; }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 60%, rgba(13,27,42,0.85) 100%),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
}
.hero-inner {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
}
.hero-overline {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 32px;
}
.hero-sidebar-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-sidebar-item:last-child { border-bottom: none; }
.hero-sidebar-num {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-sidebar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-bar {
  background: var(--accent);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hero-bar-sep { color: rgba(255,255,255,0.4); }

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost-white {
  display: inline-block;
  color: white;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.15s;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
}
.btn-ghost-white:hover { border-color: white; }
.btn-primary-dark {
  display: inline-block;
  background: var(--dark);
  color: white;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.15s;
}
.btn-primary-dark:hover { background: var(--dark2); }
.btn-submit {
  background: var(--accent);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.15s;
  width: 100%;
}
.btn-submit:hover { background: var(--accent-dark); }

/* ========================
   UTILS
======================== */
.section-inner-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.overline {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.overline.white { color: rgba(255,255,255,0.5); }
.section-title-lg {
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title-dark {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-title-white {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* PAGE HEADER */
.page-header {
  background: var(--dark);
  padding: 64px 48px 56px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,165,233,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-family: var(--font);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  font-weight: 300;
}

/* ========================
   SPLIT SECTIONS
======================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-section.split-reverse .split-img { order: 2; }
.split-section.split-reverse .split-content { order: 1; }
.split-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.split-img-gym {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.1) 100%),
    url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1200&q=80') center/cover no-repeat;
  min-height: 480px;
}

.split-img-training {
  background:
    linear-gradient(135deg, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.1) 100%),
    url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?w=1200&q=80') center/cover no-repeat;
  min-height: 480px;
}

.split-content {
  background: var(--bg2);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-overline {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.split-title {
  font-family: var(--font);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.split-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.split-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-list li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.split-list li::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ========================
   CLASSES STRIP
======================== */
.classes-strip {
  background: var(--dark);
  padding: 72px 0 0;
}
.classes-strip-header {
  margin-bottom: 40px;
}
.strip-title {
  font-family: var(--font);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 12px;
}
.classes-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.class-tile {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.class-tile-hiit {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?w=600&q=80') center/cover no-repeat;
}
.class-tile-yoga {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1506629082955-511b1aa562c8?w=600&q=80') center/cover no-repeat;
}
.class-tile-spin {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1520877880798-5ee004e3f11e?w=600&q=80') center/cover no-repeat;
}
.class-tile-strength {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=600&q=80') center/cover no-repeat;
}
.class-tile-boxing {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=600&q=80') center/cover no-repeat;
}
.class-tile-zumba {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=600&q=80') center/cover no-repeat;
}
.class-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: opacity 0.2s;
}
.class-tile:hover::before { opacity: 0.7; }
.class-tile-inner {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 18px;
}
.class-tile-category {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.class-tile-name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}
.class-tile-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
}
.classes-strip-footer {
  padding: 40px 48px;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
  background: var(--dark);
  padding: 72px 0;
}
.testimonials-section .section-inner-pad { margin-bottom: 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.testimonial {
  background: var(--dark);
  padding: 40px 40px;
  transition: background 0.2s;
}
.testimonial:hover { background: rgba(255,255,255,0.03); }
.testimonial-rating {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
  quotes: none;
}
.testimonial-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================
   MEMBERSHIP PREVIEW (HOME)
======================== */
.membership-preview {
  background: var(--accent);
  padding: 80px 0;
}
.membership-preview .section-inner-pad {}
.membership-preview .overline { color: rgba(255,255,255,0.5); }
.membership-preview .section-title-lg { color: white; }
.membership-preview-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 400px;
}
.membership-preview .btn-primary {
  background: var(--dark);
  color: white;
}
.membership-preview .btn-primary:hover { background: rgba(13,27,42,0.8); }

/* ========================
   SCHEDULE
======================== */
.schedule-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.schedule-table thead tr {
  background: var(--dark);
}
.schedule-table thead th {
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
  white-space: nowrap;
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--bg2); }
.schedule-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.time-col {
  font-family: var(--font);
  font-weight: 700;
  color: var(--dark) !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
}
.class-col {
  font-weight: 600 !important;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.class-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.hiit-dot { background: #e94560; }
.yoga-dot { background: #10b981; }
.spin-dot { background: #6366f1; }
.strength-dot { background: #f97316; }
.boxing-dot { background: #a855f7; }
.level-tag {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.level-tag.all { background: var(--accent-light); color: var(--accent); }
.level-tag.beginner { background: #d1fae5; color: #059669; }
.level-tag.intermediate { background: #fff7ed; color: #ea580c; }
.avail-open { color: var(--green) !important; font-weight: 600 !important; font-family: var(--font) !important; }
.avail-low { color: #f97316 !important; font-weight: 600 !important; font-family: var(--font) !important; }
.avail-full { color: #ef4444 !important; font-weight: 600 !important; font-family: var(--font) !important; }

/* CLASS TYPES LIST */
.class-types-section { border-top: 1px solid var(--border); }
.class-type-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.class-type-row:last-child { border-bottom: none; }
.class-type-row:hover { background: var(--bg2); }
.class-type-bg {
  min-height: 160px;
}
.class-type-hiit {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?w=600&q=80') center/cover no-repeat;
}
.class-type-yoga {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1506629082955-511b1aa562c8?w=600&q=80') center/cover no-repeat;
}
.class-type-spin {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1520877880798-5ee004e3f11e?w=600&q=80') center/cover no-repeat;
}
.class-type-strength {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=600&q=80') center/cover no-repeat;
}
.class-type-boxing {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=600&q=80') center/cover no-repeat;
}
.class-type-zumba {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=600&q=80') center/cover no-repeat;
}
.class-type-content {
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.class-type-num {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 4px;
}
.class-type-content h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.class-type-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}
.class-type-tags {
  display: flex;
  gap: 8px;
}
.class-type-tags span {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 3px 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CTA STRIP */
.cta-strip {
  background: var(--dark);
  padding: 64px 0;
}
.cta-strip h2 {
  font-family: var(--font);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-weight: 300;
}

/* ========================
   MEMBERSHIP
======================== */
.membership-section { padding: 64px 0; }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.membership-card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: background 0.15s;
}
.membership-card:hover { background: var(--bg2); }
.membership-featured {
  background: var(--dark);
}
.membership-featured:hover { background: var(--dark2); }
.membership-popular-label {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: white;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.membership-tier {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.membership-featured .membership-tier { color: rgba(255,255,255,0.3); }
.membership-price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.membership-dollar {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}
.membership-featured .membership-dollar { color: white; }
.membership-amount {
  font-family: var(--font);
  font-size: 72px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -3px;
  line-height: 1;
}
.membership-featured .membership-amount { color: white; }
.membership-period {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  align-self: flex-end;
  margin-bottom: 8px;
}
.membership-featured .membership-period { color: rgba(255,255,255,0.35); }
.membership-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  font-weight: 300;
}
.membership-featured .membership-desc { color: rgba(255,255,255,0.45); }
.membership-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.membership-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.membership-featured .membership-list li { color: rgba(255,255,255,0.55); }
.membership-list li::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.btn-membership {
  display: block;
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.15s;
  border: 1.5px solid var(--border);
  color: var(--dark);
  background: transparent;
}
.btn-membership:hover { border-color: var(--accent); color: var(--accent); }
.btn-membership-blue {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn-membership-blue:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: white; }

/* FREE TRIAL STRIP */
.free-trial-strip {
  background: var(--accent);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.free-trial-content h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.free-trial-content p { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 300; }
.free-trial-strip .btn-primary { background: var(--dark); white-space: nowrap; }
.free-trial-strip .btn-primary:hover { background: rgba(13,27,42,0.85); }

/* FAQ */
.faq-section { margin-top: 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.faq-item {
  background: var(--bg);
  padding: 28px 32px;
  transition: background 0.15s;
}
.faq-item:hover { background: var(--bg2); }
.faq-q {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ========================
   ABOUT
======================== */
.about-story-section {
  padding: 80px 0;
  background: var(--bg);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.about-stats-col { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--border); }
.about-stat-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.about-stat-item:last-child { border-bottom: none; }
.about-stat-num {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* TRAINERS */
.trainers-section {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.trainers-section .section-inner-pad { margin-bottom: 40px; }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: calc(1280px - 96px);
  margin: 0 auto;
  margin-left: 48px;
  margin-right: 48px;
}
.trainer-card {
  background: white;
  padding: 32px 28px;
  transition: background 0.15s;
}
.trainer-card:hover { background: var(--accent-light); }
.trainer-initials {
  width: 56px; height: 56px;
  background: var(--dark);
  color: white;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.trainer-name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.trainer-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
}
.trainer-certs {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* AMENITIES */
.amenities-dark {
  background: var(--dark);
  padding: 72px 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.amenity-item {
  padding: 22px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--dark);
  transition: background 0.15s, color 0.15s;
}
.amenity-item:hover { background: rgba(255,255,255,0.04); color: white; }

/* ========================
   CONTACT
======================== */
.contact-section { padding: 72px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-info-row {}
.contact-info-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.contact-info-val a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-hours { border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 28px; }
.contact-hours-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.contact-hours-row:last-child { border-bottom: none; }
.free-trial-callout {
  background: var(--accent);
  padding: 20px 24px;
}
.free-trial-callout strong {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.free-trial-callout p { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 300; }
.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.form-group label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0c4d8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }
.success-msg {
  padding: 20px 24px;
  background: #f0fdf4;
  border-left: 4px solid var(--green);
  color: #065f46;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: none;
}

/* ========================
   FOOTER
======================== */
footer { background: var(--dark); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 400;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-logo strong { color: var(--accent); font-weight: 900; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 16px;
  font-weight: 300;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 300;
}
.footer-col ul li a:hover { color: white; }
.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: var(--accent); text-decoration: none; }
.demo-badge {
  background: var(--accent);
  color: white;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  letter-spacing: 1px;
  margin-right: 6px;
  text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-section.active > * { animation: fadeUp 0.3s ease forwards; }

/* ========================
   MOBILE
======================== */
@media (max-width: 1024px) {
  .classes-scroll { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-section.split-reverse .split-img { order: 1; }
  .split-section.split-reverse .split-content { order: 2; }
  .split-img { min-height: 280px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  #navbar .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 56px 20px 48px; }
  .hero-sidebar { display: none; }
  .hero-bar { padding: 14px 20px; gap: 12px; font-size: 11px; }
  .page-header { padding: 48px 20px 40px; }
  .section-inner-pad { padding: 0 20px; }
  .classes-scroll { grid-template-columns: repeat(2, 1fr); }
  .classes-strip-footer { padding: 32px 20px; }
  .classes-strip-header { padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats-col { border-left: none; border-top: 1px solid var(--border); flex-direction: row; flex-wrap: wrap; }
  .about-stat-item { flex: 1; min-width: 140px; }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); margin: 0 20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 6px; }
  .free-trial-strip { flex-direction: column; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
  .class-type-row { grid-template-columns: 1fr; }
  .class-type-bg { min-height: 120px; }
}
@media (max-width: 600px) {
  .classes-scroll { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: 1fr; margin: 0 20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .membership-grid { background: none; gap: 16px; }
  .hero-title { font-size: clamp(60px, 18vw, 100px); }
}