.elementor-6 .elementor-element.elementor-element-e544289{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-83b73fa *//* ============================================================
   PUMP REPUBLIC — Homepage Styles
   Modern Industrial Strength Aesthetic
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #D42B2B;
  --red-bright: #FF2D2D;
  --red-dark:   #9A1A1A;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark-2:     #1A1A1A;
  --dark-3:     #242424;
  --grey:       #888888;
  --grey-light: #CCCCCC;
  --white:      #FFFFFF;
  --off-white:  #F0EDEA;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.accent { color: var(--red); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,0.4);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
}

/* --- SECTION LABELS / HEADERS --- */
.section-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .section-sub { margin: 0 auto; }

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--black);
}

/* Scratched metal texture via CSS */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    ),
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,43,43,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(50,50,50,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Red accent line left edge */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vh, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(212,43,43,0.3);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease 0.1s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
  overflow: hidden;
}

.hero__title-line {
  display: block;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.line1 { animation-delay: 0.2s; }
.line2 {
  animation-delay: 0.35s;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero__sub {
  font-family: var(--font-cond);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.hero__tagline em {
  font-style: normal;
  color: var(--red);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.75s both;
}

/* Stat bar */
.hero__stat-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  max-width: 100%;
  animation: fadeIn 1s ease 1s both;
}

.stat {
  flex: 1;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--red);
}
.stat__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.25rem;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--grey);
  animation: fadeIn 1s ease 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--grey), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--red);
  padding: 0.85rem 0;
  position: relative;
  z-index: 10;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee__track .dot {
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--dark);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__text p {
  color: var(--grey-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__text strong.accent {
  font-weight: 700;
}

.about__text .btn {
  margin-top: 0.75rem;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.about__card:hover {
  border-color: rgba(212,43,43,0.4);
  transform: translateY(-3px);
}

.about__card--accent {
  background: var(--red-dark);
  border-color: var(--red);
}

.about__card--dark {
  background: var(--dark-3);
}

.about__card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.about__card h3 {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.about__card p {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* ============================================================
   TRAINING PROGRAMS
   ============================================================ */
.training {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.training__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 30rem);
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.program {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.program:hover {
  border-color: rgba(212,43,43,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.program--featured {
  background: var(--dark-3);
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(212,43,43,0.3), 0 20px 60px rgba(212,43,43,0.1);
}

.program__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.program__number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 1rem; left: 1.5rem;
  pointer-events: none;
}

.program__content {
  position: relative;
  z-index: 1;
}

.program__content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-top: 2.5rem;
}

.program__content p {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.program__content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.program__content ul li {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  padding-left: 1.2rem;
  position: relative;
}
.program__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ============================================================
   PERSONAL TRAINING
   ============================================================ */
.pt-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--dark);
}

.pt-section__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.pt-section__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.pt-badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: spinSlow 12s linear infinite;
  letter-spacing: 0.05em;
}
.pt-badge span:last-child { font-size: 1rem; }

.pt-section__graphic {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 280px;
  width: 100%;
  padding: 2rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}

.pt-graphic-bar {
  flex: 1;
  background: linear-gradient(to top, var(--red-dark), var(--red));
  border-radius: 2px 2px 0 0;
  animation: barGrow 1.5s cubic-bezier(0.16,1,0.3,1) both;
  opacity: 0.85;
}
.pt-graphic-bar:nth-child(1) { animation-delay: 0.2s; }
.pt-graphic-bar:nth-child(2) { animation-delay: 0.35s; }
.pt-graphic-bar:nth-child(3) { animation-delay: 0.5s; }
.pt-graphic-bar:nth-child(4) { animation-delay: 0.65s; }
.pt-graphic-bar:nth-child(5) { animation-delay: 0.8s; }

.pt-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.pt-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--grey-light);
}

.pt-feature__check {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--black);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.location-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.location-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.location-card--new {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--dark-2), rgba(212,43,43,0.06));
  box-shadow: 0 0 0 1px rgba(212,43,43,0.2), 0 20px 60px rgba(212,43,43,0.08);
}

.location-card__label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.new-label { color: var(--red) !important; }

.location-card h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.location-card__city {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.location-card__hours {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--grey-light);
}

.location-single {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  background: var(--dark-2);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212,43,43,0.2), 0 20px 60px rgba(212,43,43,0.08);
}

.location-single__info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-single__info h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.location-single__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.location-single__map {
  min-height: 360px;
  background: var(--dark-3);
}

@media (max-width: 768px) {
  .location-single {
    grid-template-columns: 1fr;
  }
  .location-single__map {
    min-height: 260px;
  }
}

.hours-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--red-dark);
  padding: clamp(4rem, 8vh, 7rem) 0;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.08) 3px,
      rgba(0,0,0,0.08) 6px
    );
  pointer-events: none;
}

.cta-band__noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,43,43,0.3) 0%, rgba(100,0,0,0.6) 100%);
  pointer-events: none;
}

.cta-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-band__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-band__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--dark);
}

.membership__cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 3rem;
  flex-wrap: wrap;
}

.membership__cta-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.membership__cta-text p {
  color: var(--grey-light);
  font-size: 1rem;
  max-width: 480px;
}

.membership__cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

.footer__tagline {
  margin-top: 0.75rem !important;
  color: var(--red) !important;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links ul li a {
  font-size: 0.95rem;
  color: var(--grey-light);
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: var(--red); }

.footer__contact p {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-bottom: 1.25rem;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .about__layout,
  .pt-section__layout {
    grid-template-columns: 1fr;
  }

  .pt-section__visual { min-height: 260px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

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

  .nav__hamburger { display: flex; }

  .hero__title {
    font-size: clamp(5rem, 22vw, 10rem);
  }

  .hero__stat-bar {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .stat__divider { display: none; }
  .stat { flex: 0 0 calc(50% - 0.5rem); }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }

  .membership__cta-box {
    flex-direction: column;
    text-align: center;
  }
  .membership__cta-text p { max-width: 100%; }
  .membership__cta-actions { justify-content: center; }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn { width: 100%; }
}
html, body {
  background-color: #080808 !important;
}/* End custom CSS */