/* ── VARIABLES ── */
:root {
  --red: #C8102E;
  --red-dark: #9B0020;
  --blue: #002868;
  --blue-light: #1a3f8f;
  --white: #F5F5F5;
  --off-white: #e8e8e8;
  --dark: #0a0a0a;
  --gray: #888;
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--white);
  text-decoration: none; letter-spacing: 2px; line-height: 1;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--off-white); text-decoration: none;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

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

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-bottom: 2px solid var(--red);
  padding: 24px; z-index: 999;
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 2px;
  border-bottom: 1px solid #222; padding-bottom: 16px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

/* ── HERO SLIDESHOW ── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--blue), var(--red), var(--blue));
  z-index: 3;
}
.hero-content {
  max-width: 820px; padding: 40px 24px;
  animation: fadeUp 0.9s ease both;
  position: relative; z-index: 2;
}
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--red); transform: scale(1.3); }
.hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 16px; z-index: 3; pointer-events: none;
}
.hero-arrow {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  font-size: 1.1rem; transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--red); }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 11vw, 5rem);
  line-height: 0.9; letter-spacing: 3px; color: var(--white); margin-bottom: 8px;
}
.hero h1 .accent { color: var(--red); }
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 4px; color: rgba(255,255,255,0.55);
  margin-bottom: 4px; text-transform: uppercase;
}
.hero-verse {
  font-style: italic; font-size: 0.9rem;
  color: rgba(255,255,255,0.5); margin: 16px 0 32px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
  background: var(--red); color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }

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

/* ── COMMON ── */
section { padding: 80px 24px; }
.section-label {
  font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 2px; line-height: 1; margin-bottom: 16px;
}
.section-body { color: #aaa; font-size: 1.05rem; line-height: 1.7; max-width: 620px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ── STRIPE ── */
.stripe { height: 6px; background: linear-gradient(to right, var(--blue) 33%, var(--white) 33% 66%, var(--red) 66%); }

/* ── ABOUT ── */
.about { background: #0f0f0f; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-left: 4px solid var(--red); }
.verse-block {
  border-left: 3px solid var(--red);
  padding: 16px 20px; margin: 24px 0;
  background: rgba(200,16,46,0.06);
}
.verse-block p { font-style: italic; color: #ccc; line-height: 1.7; font-size: 0.95rem; }
.verse-block cite { font-size: 0.8rem; color: var(--red); letter-spacing: 1px; margin-top: 8px; display: block; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat { padding: 18px; border: 1px solid #222; border-top: 3px solid var(--red); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--white); letter-spacing: 1px; }
.stat-label { font-size: 0.78rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* ── SCHEDULE ── */
.schedule { background: var(--dark); }
.schedule-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px;
  margin-top: 48px;
}
.day-card { border: 1px solid #1e1e1e; border-top: 3px solid var(--blue); padding: 20px 16px; }
.day-card.saturday { border-top-color: var(--red); }
.day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 12px; color: var(--white);
}
.time-slot {
  font-size: 0.85rem; color: #aaa; padding: 6px 0;
  border-bottom: 1px solid #1a1a1a; line-height: 1.3;
}
.time-slot:last-child { border-bottom: none; }
.open-gym-note {
  margin-top: 28px; padding: 16px 20px;
  background: rgba(0,40,104,0.3); border: 1px solid rgba(0,40,104,0.6);
  font-size: 0.9rem; color: #aaa;
}
.open-gym-note strong { color: var(--white); }

/* ── COACHES ── */
.coaches { background: #0f0f0f; }
.coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.coach-card { text-align: center; }
.coach-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-bottom: 3px solid var(--red); margin-bottom: 16px; }
.coach-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; }
.coach-role { font-size: 0.8rem; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.coach-bio { font-size: 0.85rem; color: #888; margin-top: 8px; line-height: 1.5; }

/* ── PRICING ── */
.pricing { background: var(--dark); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.plan-card { border: 1px solid #222; padding: 32px 24px; position: relative; transition: border-color 0.2s; }
.plan-card:hover { border-color: var(--red); }
.plan-card.featured { border-color: var(--red); background: #0d0009; }
.plan-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--red); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px;
}
.plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 6px; }
.plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; line-height: 1; color: var(--white); }
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 6px; }
.plan-period { font-size: 0.8rem; color: var(--gray); margin-bottom: 22px; }
.plan-features { list-style: none; margin-bottom: 26px; }
.plan-features li {
  padding: 8px 0; border-bottom: 1px solid #1a1a1a;
  font-size: 0.88rem; color: #bbb;
  display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--red); font-weight: 700; }
.wodify-note { margin-top: 32px; text-align: center; font-size: 0.85rem; color: #666; font-style: italic; }
.wodify-note a { color: var(--red); }

/* ── DROP-INS ── */
.dropins { background: var(--blue); padding: 60px 24px; }
.dropins .section-label { color: #8ab4ff; }
.dropins-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px; }
.dropins p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 1rem; margin-bottom: 20px; }

/* ── CONTACT ── */
.contact { background: #0f0f0f; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info p { color: #999; line-height: 1.8; margin-bottom: 24px; font-size: 1rem; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-icon { color: var(--red); font-size: 1.2rem; margin-top: 2px; }
.contact-detail span { color: #bbb; font-size: 0.95rem; line-height: 1.5; }
.contact-detail a { color: #bbb; text-decoration: none; }
.contact-detail a:hover { color: var(--red); }
.social-links { display: flex; gap: 14px; margin-top: 24px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.social-btn.fb { background: #1877F2; color: #fff; }
.social-btn.ig { background: #E1306C; color: #fff; }
.social-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-secondary {
  background: var(--blue);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }
.contact-actions {
  display: flex; flex-direction: column;
  gap: 16px; justify-content: center; height: 100%;
}
.contact-actions-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: 3px;
  color: var(--white); line-height: 1; margin-bottom: 0;
}
.contact-actions-sub {
  color: #666; font-size: 0.9rem;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.contact-cta {
  text-align: center; font-size: 1rem;
  padding: 18px 32px; letter-spacing: 2px;
}

/* ── FOOTER ── */
footer { background: #000; border-top: 3px solid var(--red); padding: 48px 24px; text-align: center; }
.footer-tagline { font-size: 0.78rem; color: #444; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.footer-links { display: flex; gap: 24px; justify-content: center; list-style: none; margin: 16px 0 24px; flex-wrap: wrap; }
.footer-links a { color: #555; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; letter-spacing: 1px; text-transform: uppercase; }
.footer-links a:hover { color: var(--red); }
footer address { font-style: normal; color: #444; font-size: 0.82rem; line-height: 1.8; margin-bottom: 16px; }
footer small { color: #333; font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid,
  .contact-grid,
  .dropins-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 20px; }
}
@media (max-width: 700px) {
  .ig-slide { flex: 0 0 calc(50% - 6px); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-slide { flex: 0 0 calc(80% - 6px); }
}
