:root {
  --red: #ef2448;
  --red-deep: #9f1025;
  --ink: #050507;
  --graphite: #111217;
  --graphite-2: #1b1d23;
  --paper: #f5f5f3;
  --paper-soft: #e7e8ea;
  --text: #f8f8f8;
  --muted: #b8bec8;
  --dark-text: #111217;
  --dark-muted: #555b66;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(0, 0, 0, 0.12);
  --gold: #f2c24e;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(5, 5, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 48px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--red);
  color: white;
}

.btn {
  padding: 0 22px;
  min-width: 0;
  text-align: center;
  white-space: normal;
}

.btn svg,
.header-cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn:hover,
.header-cta:hover,
.btn:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(239, 36, 72, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff3155;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
  z-index: 2;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: white;
  cursor: pointer;
}

.hero {
  min-height: 84svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 58px) max(24px, calc((100vw - 1180px) / 2)) 44px;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.72) 44%, rgba(5, 5, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 7, 0.82) 0%, rgba(5, 5, 7, 0) 36%),
    url("assets/gym-floor.png") center / cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.9rem, 7.2vw, 6.6rem);
}

h2 {
  color: inherit;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.hero-lede {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics div {
  padding: 14px 18px 14px 0;
  border-right: 1px solid var(--line);
}

.hero-metrics div + div {
  padding-left: 18px;
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 0;
  color: white;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #09090c;
}

.quick-links:has(a:nth-of-type(3)) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-links a {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  color: white;
  background: rgba(239, 36, 72, 0.12);
}

.quick-links svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 auto;
}

.section {
  padding: clamp(70px, 9vw, 118px) max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.final-cta p {
  color: var(--dark-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.plans-section,
.method-section,
.gallery-section {
  background: var(--paper);
  color: var(--dark-text);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: white;
  box-shadow: 0 18px 50px rgba(14, 14, 16, 0.08);
}

.plan-card.featured {
  background:
    linear-gradient(135deg, rgba(239, 36, 72, 0.94), rgba(159, 16, 37, 0.98)),
    var(--red);
  color: white;
  border-color: transparent;
}

.plan-name {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 20px 0 18px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.9;
}

.price span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.plan-note {
  margin: 0;
  color: var(--dark-muted);
  line-height: 1.55;
}

.featured .plan-note {
  color: rgba(255, 255, 255, 0.82);
}

.fees-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.fees-row div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
  background: #fff;
}

.fees-row svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.fees-row strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.fees-row span {
  color: var(--dark-muted);
  line-height: 1.45;
}

.partner-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-left: 4px solid #16a765;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark-text);
}

.partner-note-copy {
  display: grid;
  gap: 5px;
}

.partner-note-copy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #138450;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.partner-note-copy svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}

.partner-note-copy strong {
  font-size: 1rem;
  line-height: 1.35;
}

.partner-note-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--dark-muted);
  line-height: 1.55;
}

.partner-note-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(22, 167, 101, 0.26);
  border-radius: var(--radius);
  color: #0f7044;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.partner-note-link:hover,
.partner-note-link:focus-visible {
  background: #16a765;
  color: white;
  transform: translateY(-2px);
}

.partner-note-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.split-section,
.personal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.dark-band {
  background:
    linear-gradient(140deg, rgba(239, 36, 72, 0.1), rgba(239, 36, 72, 0) 40%),
    var(--graphite);
  color: white;
}

.dark-band .split-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.benefits-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.benefits-list svg,
.method-grid svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex: 0 0 auto;
}

.image-feature {
  margin: 0;
  position: relative;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-feature.compact {
  max-width: 420px;
}

.image-feature.compact img {
  aspect-ratio: 0.55 / 1;
  object-fit: cover;
}

.image-feature figcaption,
.gallery-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.personal-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 36, 72, 0.18), transparent 32%),
    var(--ink);
}

.personal-section .split-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.method-grid div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: white;
  color: var(--dark-text);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(1.05);
}

.gallery-grid figcaption {
  color: var(--dark-muted);
}

.final-cta {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 88px 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.72), rgba(5, 5, 7, 0.96)),
    url("assets/gym-front.png") center / cover no-repeat;
}

.final-cta > div {
  width: min(760px, 100%);
}

.final-cta img {
  width: 224px;
  margin: 0 auto 22px;
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  justify-content: center;
}

address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.7;
}

address a {
  color: white;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  background: #020203;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #22c55e;
  color: #051408;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #101216;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.floating-whatsapp:hover::after,
.floating-whatsapp:focus-visible::after {
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 138px;
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 12px;
    right: 18px;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(5, 5, 7, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding: calc(var(--header-height) + 54px) 18px 40px;
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.72) 60%, rgba(5, 5, 7, 0.34) 100%),
      linear-gradient(0deg, rgba(5, 5, 7, 0.82) 0%, rgba(5, 5, 7, 0) 42%),
      url("assets/gym-floor.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(3.4rem, 13vw, 5.6rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .hero-metrics div + div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .quick-links,
  .plans-grid,
  .fees-row,
  .method-grid,
  .gallery-grid,
  .split-section,
  .personal-section {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    justify-content: flex-start;
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links a:last-child {
    border-bottom: 0;
  }

  .section {
    padding-inline: 18px;
  }

  .image-feature.compact {
    max-width: 100%;
  }

  .image-feature.compact img {
    max-height: 560px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 18px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    right: max(18px, calc(100vw - 372px));
  }

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header-height) + 32px);
  }

  .hero-lede {
    font-size: 1rem;
    max-width: 31ch;
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .hero-metrics {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .partner-note {
    display: grid;
    gap: 14px;
    padding: 17px;
  }

  .partner-note-link {
    width: 100%;
  }

  .plan-card {
    min-height: 220px;
    padding: 24px;
  }

  .method-grid div {
    min-height: 88px;
  }

  .final-cta {
    min-height: auto;
    padding-block: 74px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
