/* ============================================
   HOME PAGE
   ============================================ */

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.38;
  transform: scale(1.06);
  animation: hero-drift 22s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.06) translate(0,0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.65) 45%, var(--void) 100%),
    linear-gradient(100deg, var(--void) 0%, rgba(10,10,10,0.25) 38%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 100px;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--bone);
  margin-bottom: 8px;
}
.hero h1 .strike {
  color: var(--zeus-red);
  position: relative;
  display: inline-block;
}
.hero-lede {
  max-width: 520px;
  margin-bottom: 38px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bone);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat .num .unit { font-size: 0.45em; color: var(--thunder-gold); }
.hero-stat .label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--steel-light);
  margin-top: 4px;
}

.bolt-strike {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.bolt-strike svg path { fill: var(--thunder-gold); }
.bolt-strike.b1 { top: 12%; right: 12%; width: 64px; opacity: 0.85; animation: flicker 4s ease-in-out infinite; }
.bolt-strike.b2 { bottom: 18%; right: 28%; width: 38px; opacity: 0.5; animation: flicker 5.5s ease-in-out infinite 1.2s; }
@keyframes flicker {
  0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 0px var(--thunder-gold)); }
  48% { opacity: 0.3; }
  50% { opacity: 1; filter: drop-shadow(0 0 14px var(--thunder-gold)); }
  52% { opacity: 0.4; }
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  color: var(--steel-light);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.scroll-cue .line { width: 1px; height: 36px; background: linear-gradient(var(--thunder-gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--bone);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop { to { top: 100%; } }

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero { min-height: 0; flex-direction: column; padding-bottom: 90px; }
  .hero-content { padding-top: 120px; }
  .scroll-cue { position: relative; bottom: auto; margin-top: 48px; }
}

/* ---------- MARQUEE ---------- */
.marquee-band {
  background: var(--zeus-red);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--bone);
  text-transform: uppercase;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}
.marquee-track span::after { content: '⚡'; font-size: 0.8em; color: var(--void); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT / INTRO ---------- */
.about-section { background: var(--void); }
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media .frame-main {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  overflow: hidden;
  position: relative;
}
.about-media .frame-main img { width: 100%; height: 480px; object-fit: cover; }
.about-media .frame-accent {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 46%;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0% 100%);
  border: 4px solid var(--void);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-media .frame-accent img { height: 180px; object-fit: cover; }

.about-copy p { margin-bottom: 20px; font-size: 1.08rem; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.pillar {
  border-top: 2px solid var(--zeus-red);
  padding-top: 14px;
}
.pillar .pillar-num {
  font-family: var(--font-accent);
  color: var(--steel-light);
  font-size: 0.9rem;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 6px 0 8px;
  text-transform: uppercase;
}
.pillar p { font-size: 0.92rem; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media .frame-accent { display: none; }
}

/* ---------- ZONES (equipment zones) ---------- */
.zones-section { background: var(--void-soft); position: relative; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.zone-card {
  position: relative;
  overflow: hidden;
  background: var(--char);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.45s var(--ease-power), border-color 0.4s ease;
}
.zone-card:hover { transform: translateY(-8px); border-color: var(--zeus-red); }
.zone-card .zone-img { height: 240px; overflow: hidden; position: relative; }
.zone-card .zone-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-power);
}
.zone-card:hover .zone-img img { transform: scale(1.08); }
.zone-card .zone-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}
.zone-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--zeus-red);
  color: var(--bone);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  z-index: 2;
}
.zone-body { padding: 22px 24px 28px; }
.zone-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.zone-body p { font-size: 0.92rem; }

@media (max-width: 980px) {
  .zones-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* ---------- PROGRAMS STRIP ---------- */
.programs-section { background: var(--void); }
.programs-list { display: flex; flex-direction: column; }
.program-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.program-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: rgba(216,31,38,0.08);
  transition: width 0.5s var(--ease-power);
  z-index: 0;
}
.program-row:hover::before { width: 100%; }
.program-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--steel);
  position: relative; z-index: 1;
  transition: color 0.4s ease;
}
.program-row:hover .program-num { color: var(--zeus-red); }
.program-info { position: relative; z-index: 1; }
.program-info h3 { font-size: 1.5rem; margin-bottom: 6px; }
.program-info p { max-width: 480px; font-size: 0.95rem; }
.program-meta {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--thunder-gold);
  font-size: 0.95rem;
  white-space: nowrap;
}
.program-meta svg { width: 22px; height: 22px; transition: transform 0.4s var(--ease-power); }
.program-row:hover .program-meta svg { transform: translateX(6px); }

@media (max-width: 700px) {
  .program-row { grid-template-columns: 50px 1fr; }
  .program-meta { display: none; }
}

/* ---------- TRAINERS PREVIEW ---------- */
.trainers-section { background: var(--void-soft); }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.trainer-card {
  background: var(--char);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-power), border-color 0.4s ease;
}
.trainer-card:hover { transform: translateY(-6px); border-color: var(--thunder-gold); }
.trainer-avatar {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zeus-red), var(--zeus-red-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--bone);
  position: relative;
}
.trainer-avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--thunder-gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: spin-slow 18s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.trainer-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.trainer-role { font-family: var(--font-accent); color: var(--thunder-gold); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; margin-bottom: 14px; }
.trainer-card p { font-size: 0.9rem; }

@media (max-width: 880px) {
  .trainers-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--void); }
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.testi-card {
  background: var(--char);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--zeus-red);
  padding: 32px;
  width: 380px;
  flex-shrink: 0;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-stars svg path { fill: var(--thunder-gold); }
.testi-card p { font-size: 1rem; color: var(--bone-dim); margin-bottom: 22px; min-height: 95px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--bone);
  font-size: 0.95rem;
}
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--bone); }
.testi-sub { font-size: 0.8rem; color: var(--steel-light); }

.review-summary-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.review-score {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--thunder-gold);
  line-height: 1;
}
.review-score-meta { display: flex; flex-direction: column; gap: 6px; }
.review-score-meta .stars-row { display: flex; gap: 4px; }
.review-score-meta .stars-row svg { width: 18px; height: 18px; }
.review-score-meta .stars-row svg path { fill: var(--thunder-gold); }
.review-score-meta .count { font-size: 0.9rem; color: var(--steel-light); }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  background: var(--zeus-red);
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.08) 0 2px, transparent 2px 26px);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta-inner h2 { color: var(--void); max-width: 760px; }
.cta-inner p { color: rgba(10,10,10,0.7); font-size: 1.15rem; max-width: 480px; }
.cta-band .btn-primary {
  background: var(--void);
  color: var(--bone);
}
.cta-band .btn-primary::before { background: var(--bone); }
.cta-band .btn-primary:hover { color: var(--zeus-red); }
.cta-bolt {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
}
.cta-bolt path { fill: var(--void); }
.cta-bolt.left { top: -10%; left: -4%; width: 220px; transform: rotate(-15deg); }
.cta-bolt.right { bottom: -14%; right: -3%; width: 260px; transform: rotate(8deg); }

/* ---------- HOURS / LOCATION ---------- */
.hours-section { background: var(--void-soft); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table td { padding: 14px 0; font-family: var(--font-accent); font-size: 1.05rem; }
.hours-table td:first-child { color: var(--bone); text-transform: uppercase; letter-spacing: 0.05em; }
.hours-table td:last-child { text-align: right; color: var(--thunder-gold); }
.hours-table tr.today td { color: var(--bone); }
.hours-table tr.today td:last-child { color: var(--thunder-gold-bright); font-weight: 700; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(216,31,38,0.12);
  border: 1px solid var(--zeus-red);
  padding: 10px 20px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--zeus-red); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.contact-card { background: var(--char); border: 1px solid rgba(255,255,255,0.07); padding: 36px; }
.contact-card .addr { font-size: 1.05rem; color: var(--bone); margin-bottom: 22px; line-height: 1.6; }
.contact-card .contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-card .contact-row svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-card .contact-row svg path { fill: var(--thunder-gold); }
.contact-card .contact-row a, .contact-card .contact-row span { font-size: 0.98rem; }

@media (max-width: 880px) {
  .hours-grid { grid-template-columns: 1fr; gap: 36px; }
}
