:root {
  --bg: #060606;
  --panel: #0d0d0f;
  --panel-2: #121214;
  --text: #f5f5f5;
  --muted: #9c9ca3;
  --line: rgba(255,255,255,.11);
  --red: #f0191f;
  --red-deep: #8d090d;
  --silver: #d7d7dc;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 50;
  background-image: radial-gradient(rgba(255,255,255,.07) .7px, transparent .7px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(6,6,6,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .2em;
}
.brand img { width: 48px; height: 34px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #d8d8dc;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .06em;
  transition: .2s ease;
}
.nav a:hover { color: white; }
.nav .nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(240,25,31,.6);
  background: rgba(240,25,31,.1);
  color: white;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 150px 24px 90px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.025), transparent 30%),
    radial-gradient(circle at 73% 40%, rgba(240,25,31,.12), transparent 27%),
    linear-gradient(#070707, #050505);
}
.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -230px;
  bottom: -460px;
  border: 1px solid rgba(240,25,31,.16);
  transform: rotate(45deg);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(240,25,31,.1) 42.2% 42.4%, transparent 42.7%),
    linear-gradient(65deg, transparent 0 72%, rgba(255,255,255,.06) 72.2% 72.35%, transparent 72.5%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; }
.hero-glow-one { width: 300px; height: 300px; background: rgba(240,25,31,.27); top: 14%; right: 10%; }
.hero-glow-two { width: 240px; height: 240px; background: rgba(255,255,255,.09); top: 38%; right: 32%; }

.hero-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ff4448;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .23em;
}
.hero h1,
.section-heading h2,
.location-copy h2,
.cta-section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .015em;
}
.hero h1 {
  font-size: clamp(4.7rem, 9vw, 8.4rem);
  line-height: .79;
  max-width: 690px;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px #d9d9dd;
  text-shadow: 0 0 28px rgba(255,255,255,.09);
}
.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: #b7b7bd;
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #ff2a30, #a80c11);
  box-shadow: 0 10px 30px rgba(240,25,31,.2), inset 0 1px rgba(255,255,255,.25);
}
.btn-primary:hover { box-shadow: 0 14px 38px rgba(240,25,31,.28), inset 0 1px rgba(255,255,255,.25); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.03); }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.btn.large { min-height: 56px; padding-inline: 28px; }

.hero-facts {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-facts div { display: grid; gap: 3px; }
.hero-facts strong { font-size: 1.02rem; }
.hero-facts span { color: var(--muted); font-size: .76rem; }

.hero-logo-wrap { position: relative; display: grid; place-items: center; min-height: 490px; }
.logo-halo {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,38,44,.26), rgba(255,38,44,.05) 43%, transparent 70%);
  filter: blur(12px);
}
.hero-logo {
  position: relative;
  width: min(650px, 115%);
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.45)) drop-shadow(0 0 30px rgba(240,25,31,.12));
}

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: #0a0a0b;
}
.strip-item { min-height: 118px; padding: 27px 30px; display: flex; align-items: center; gap: 20px; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: 0; }
.strip-number { color: #ee2a2f; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.strip-item div { display: grid; gap: 4px; }
.strip-item strong { font-size: .94rem; text-transform: uppercase; letter-spacing: .06em; }
.strip-item small { color: var(--muted); }

.membership { padding-block: 120px; }
.section-heading { max-width: 690px; }
.section-heading.left { max-width: 500px; }
.section-heading h2,
.location-copy h2,
.cta-section h2 { font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: .92; }
.section-heading > p:last-child,
.location-copy > p,
.cta-section > p { color: var(--muted); }

.pricing-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -75px;
  transform: rotate(45deg);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}
.price-card.featured { border-color: rgba(240,25,31,.55); box-shadow: inset 0 0 60px rgba(240,25,31,.055); }
.popular {
  margin: -30px -30px 27px;
  padding: 10px 30px;
  background: linear-gradient(90deg, #8a0a0f, #f01b20, #8a0a0f);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.price-card-top { padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.plan-badge { color: #ff454a; font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.price-card h3 { margin: 10px 0 0; font-size: 1.7rem; text-transform: uppercase; }
.price-line { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.price-line span { color: var(--muted); font-size: .83rem; }
.price-line strong { font-family: Impact, "Arial Narrow Bold", sans-serif; font-size: 2rem; letter-spacing: .03em; }
.price-link { display: inline-block; margin-top: 24px; color: #f7f7f7; font-size: .79rem; font-weight: 850; text-decoration: none; text-transform: uppercase; letter-spacing: .05em; }
.price-link:hover { color: #ff4146; }

.day-pass-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.day-pass-card {
  min-height: 185px;
  padding: 32px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 80% 50%, rgba(240,25,31,.08), transparent 35%), #0b0b0d;
}
.day-pass-card span { color: #ff4146; font-size: .74rem; font-weight: 900; letter-spacing: .17em; }
.day-pass-card strong { display: block; margin-top: 7px; font-family: Impact, "Arial Narrow Bold", sans-serif; font-size: 4.2rem; line-height: 1; }
.day-pass-card p { margin-bottom: 0; color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
  padding-block: 100px;
  border-top: 1px solid var(--line);
}
.text-link { display: inline-block; margin-top: 22px; color: #f0f0f0; font-weight: 800; font-size: .83rem; text-decoration: none; }
.text-link:hover { color: #ff3d42; }
.hours-panel { border: 1px solid var(--line); background: #0a0a0b; }
.hours-row { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 24px; padding: 34px; }
.hours-row > div { display: grid; gap: 9px; }
.hours-row strong { font-family: Impact, "Arial Narrow Bold", sans-serif; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: .02em; line-height: 1; }
.session-label { color: #ff3f44; font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.dash { color: #555; font-size: 2rem; }
.break-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; padding: 0 34px; color: #727279; font-size: .67rem; font-weight: 900; letter-spacing: .13em; }
.break-row span { height: 1px; background: var(--line); }

.location-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  padding-block: 110px;
  border-top: 1px solid var(--line);
}
.location-copy { align-self: center; }
.address { font-size: 1.05rem; line-height: 1.8; }
.contact-list { display: grid; gap: 1px; margin-top: 32px; background: var(--line); border: 1px solid var(--line); }
.contact-list a { display: grid; gap: 6px; padding: 18px 20px; background: #0b0b0c; text-decoration: none; }
.contact-list a:hover { background: #111113; }
.contact-list span { color: #ff3f44; font-size: .64rem; font-weight: 900; letter-spacing: .13em; }
.contact-list strong { font-size: .95rem; }
.map-wrap { min-height: 480px; border: 1px solid var(--line); overflow: hidden; background: #0d0d0e; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(1) invert(.92) contrast(.92); opacity: .84; }

.cta-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 70px;
  padding: 80px 24px;
  text-align: center;
  border: 1px solid rgba(240,25,31,.3);
  background:
    radial-gradient(circle at 50% 100%, rgba(240,25,31,.2), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.cta-section img { width: 150px; margin: 0 auto 25px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.45)); }
.cta-section h2 { max-width: 850px; margin: 0 auto; }
.cta-section > p:not(.eyebrow) { max-width: 610px; margin: 20px auto 30px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .03em;
  color: white;
  background: #1fbd5b;
  box-shadow: 0 12px 35px rgba(0,0,0,.4);
}

footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 120px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #77777d;
  font-size: .76rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 52px; }
.footer-brand div { display: grid; gap: 2px; }
.footer-brand strong { color: #cfcfd3; letter-spacing: .14em; }
.footer-brand span { font-size: .7rem; }

@media (max-width: 900px) {
  .site-header { height: 70px; padding-inline: 20px; }
  .brand span { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #0c0c0d;
    display: grid;
    place-content: center;
    gap: 4px;
  }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: white; }
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .nav .nav-cta { text-align: center; }

  .hero { min-height: auto; padding-top: 120px; }
  .hero-content { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { order: 2; }
  .hero-logo-wrap { order: 1; min-height: 260px; }
  .hero-logo { width: min(620px, 100%); }
  .logo-halo { width: 280px; height: 280px; }
  .hero h1 { font-size: clamp(4.3rem, 16vw, 7rem); }
  .hero-facts { gap: 18px; justify-content: space-between; }

  .intro-strip { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .day-pass-grid { grid-template-columns: 1fr; }
  .split-section, .location-section { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 600px) {
  .section, .cta-section, footer { width: min(100% - 30px, var(--max)); }
  .hero { padding-inline: 15px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(3.8rem, 19vw, 5.4rem); }
  .hero-text { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-facts div:last-child { grid-column: 1 / -1; }
  .membership { padding-block: 80px; }
  .section-heading h2, .location-copy h2, .cta-section h2 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .price-card, .day-pass-card { padding: 24px; }
  .popular { margin: -24px -24px 24px; padding-inline: 24px; }
  .split-section, .location-section { padding-block: 78px; }
  .hours-row { padding: 26px 20px; gap: 12px; }
  .hours-row strong { font-size: 2.2rem; }
  .break-row { padding-inline: 20px; gap: 10px; text-align: center; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .cta-section { padding: 60px 20px; }
  footer { align-items: flex-start; flex-direction: column; }
}
