:root {
  --bg: #0b0e12;
  --surface: #13171e;
  --surface-2: #0e1218;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f6f7;
  --text-muted: rgba(255, 255, 255, 0.62);
  --accent: #c6ff3d;
  --accent-ink: #0b0e12;
  --kakao: #fee500;
  --container: 1280px;
  --pad: clamp(18px, 4vw, 48px);
  --section: clamp(48px, 7vw, 92px);
  --radius: 8px;
  --shadow-accent: 0 16px 36px rgba(198, 255, 61, 0.28);
  --hero-image: url("../images/hero-main.png");
  --banner-image: url("../images/banner-motion.png");
  --contact-image: url("../images/contact-consultation.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: var(--section) 0;
}

.section.alt {
  background: var(--surface-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head h2,
.policy-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p,
.lead {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
}

.display {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(198, 255, 61, 0.22);
}

.btn-primary:hover {
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

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

.btn-kakao {
  color: #301d00;
  background: var(--kakao);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--bg);
  opacity: 1;
}

.js .site-loader {
  display: flex;
}

.site-loader.is-hiding {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.loader-logo {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1;
  letter-spacing: 0.06em;
  animation: pulse 1.25s ease-in-out infinite;
}

.loader-logo span {
  color: var(--accent);
}

.loader-bar {
  width: clamp(140px, 30vw, 230px);
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  animation: loaderBar 1.3s ease forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.policy-header {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 14, 18, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: clamp(64px, 8vw, 82px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(25px, 3vw, 31px);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand strong {
  color: var(--accent);
  font-weight: 400;
}

.brand small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(11, 14, 18, 0.98);
  padding: 10px var(--pad) 24px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 17px;
  font-weight: 750;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}

.hero-media,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-bg {
  inset: -6%;
  background-image: linear-gradient(90deg, rgba(11, 14, 18, 0.82), rgba(11, 14, 18, 0.34) 46%, rgba(11, 14, 18, 0.68)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 18, 0.64) 0%, rgba(11, 14, 18, 0.16) 42%, rgba(11, 14, 18, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: clamp(72px, 11vw, 140px);
}

.hero h1 {
  max-width: 1040px;
  margin: 0 0 clamp(25px, 3.4vw, 40px);
  color: #fff;
  font-size: clamp(42px, 8.4vw, 118px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #c6ff3d, #f0ff95, #66ff89, #c6ff3d);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3.2s linear infinite;
}

.hero-hours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  max-width: 920px;
  margin: calc(clamp(25px, 3.4vw, 40px) * -0.35) 0 clamp(22px, 2.7vw, 32px);
}

.hours-title,
.footer-title {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hours-title {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(198, 255, 61, 0.36);
  border-radius: 999px;
  background: rgba(11, 14, 18, 0.46);
  backdrop-filter: blur(14px);
}

.hours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.hours-list div {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(11, 14, 18, 0.52);
  backdrop-filter: blur(14px);
}

.hours-list dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.hours-list dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-cue span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
}

.intro {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.intro-copy {
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(26px, 4.4vw, 56px);
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy span {
  color: var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat-card {
  padding: clamp(28px, 3.4vw, 42px) 18px;
  background: var(--surface-2);
}

.stat-value {
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 750;
}

.pin-section {
  background: var(--bg);
}

.feature-pin-track {
  height: 300vh;
}

.program-pin-track {
  height: 520vh;
}

.pin-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vh, 58px) 0;
}

.pin-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(24px, 4vh, 42px);
}

.pin-top .eyebrow {
  margin: 0;
}

.pin-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.pin-dots {
  display: flex;
  gap: 16px;
}

.pin-dots span {
  color: rgba(255, 255, 255, 0.24);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.pin-dots span.is-active {
  color: var(--accent);
}

.feature-pin,
.program-pin {
  position: relative;
  min-height: 460px;
}

.feature-pane,
.program-pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.feature-pane.is-active,
.program-pane.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.feature-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.image-card {
  position: relative;
  min-height: clamp(300px, 45vh, 470px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  isolation: isolate;
}

.image-fill {
  position: absolute;
  inset: -7%;
  background-image: linear-gradient(180deg, rgba(11, 14, 18, 0.02), rgba(11, 14, 18, 0.32)), var(--image, var(--hero-image));
  background-size: cover;
  background-position: var(--pos, center);
  will-change: transform;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 14%, rgba(198, 255, 61, 0.12), transparent 30%), linear-gradient(0deg, rgba(11, 14, 18, 0.2), rgba(11, 14, 18, 0));
  pointer-events: none;
}

.image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.feature-copy .display,
.program-detail .display {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.14em;
}

.feature-copy h3,
.program-detail h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(27px, 3.5vw, 46px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.feature-copy p,
.program-detail p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.78;
}

.mobile-stack {
  display: none;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 1.6vw, 20px) 0;
  white-space: nowrap;
  color: var(--accent-ink);
  background: linear-gradient(90deg, #c6ff3d, #f0ff95, #66ff89, #c6ff3d);
  background-size: 200% 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -1px 0 rgba(11, 14, 18, 0.18);
  animation: textGradient 3.2s linear infinite;
}

.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.44) 18%, transparent 36%);
  background-size: 220% 100%;
  mix-blend-mode: soft-light;
  opacity: 0.85;
  pointer-events: none;
  animation: marqueeGlow 4.8s linear infinite;
}

.marquee-inner {
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: marquee 24s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 3.4vw, 40px);
  letter-spacing: 0.06em;
}

.marquee span {
  padding: 0 26px;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
}

.program-tabs {
  display: grid;
  gap: 10px;
  align-content: center;
}

.program-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.program-tab span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.program-tab span:last-child {
  font-size: 16px;
  font-weight: 800;
}

.program-tab.is-active,
.program-tab:hover {
  color: #fff;
  border-color: rgba(198, 255, 61, 0.45);
  background: rgba(198, 255, 61, 0.08);
}

.program-tab.is-active span:first-child {
  color: var(--accent);
}

.program-view {
  position: relative;
  min-height: min(54vh, 560px);
}

.program-pane {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.program-detail ul,
.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.program-detail li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.program-detail li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.trainer-grid,
.review-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trainer-card,
.review-card,
.price-card,
.contact-panel,
.contact-form,
.location-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.trainer-card {
  overflow: hidden;
}

.trainer-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
}

.trainer-photo .image-fill {
  background-position: var(--pos, center);
}

.trainer-info {
  padding: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border: 1px solid rgba(198, 255, 61, 0.38);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.trainer-info h3,
.price-card h3,
.location-card h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: zoom-in;
  outline: none;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78));
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(198, 255, 61, 0.58);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.gallery-item:hover .image-fill,
.gallery-item:focus-visible .image-fill {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.86);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gallery-lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - clamp(36px, 8vw, 96px)));
  max-height: calc(100svh - clamp(36px, 8vw, 96px));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-lightbox.is-open .lightbox-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-panel img {
  width: 100%;
  height: min(72svh, 680px);
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.lightbox-panel figcaption {
  justify-self: start;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(198, 255, 61, 0.36);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(11, 14, 18, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(19, 23, 30, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--accent);
  border-color: rgba(198, 255, 61, 0.52);
  background: rgba(19, 23, 30, 1);
}

.big-banner {
  position: relative;
  min-height: clamp(360px, 54vw, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(11, 14, 18, 0.92), rgba(11, 14, 18, 0.34), rgba(11, 14, 18, 0.94)), var(--banner-image);
  background-size: cover;
  background-position: center;
}

.banner-lines {
  width: 100%;
  display: grid;
  gap: clamp(4px, 1vw, 16px);
  font-size: clamp(54px, 13vw, 176px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

.banner-line {
  will-change: transform;
}

.banner-lime {
  width: max-content;
  color: transparent;
  background: linear-gradient(90deg, #c6ff3d, #f0ff95, #66ff89, #c6ff3d);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3.2s linear infinite;
}

.review-card {
  padding: clamp(22px, 3vw, 30px);
}

.stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.review-card blockquote {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.76;
}

.review-card cite {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-weight: 800;
}

.process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  --process-step-pad: clamp(14px, 2vw, 18px);
  --process-active-x: 0px;
  --process-active-y: 0px;
  --process-active-w: 0px;
  --process-active-h: 0px;
}

.process-wrap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(var(--process-step-pad) + 38px);
  height: 2px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 61, 0.34), transparent);
}

.process-wrap::after {
  content: "";
  position: absolute;
  left: var(--process-active-x);
  top: var(--process-active-y);
  z-index: 1;
  width: var(--process-active-w);
  height: var(--process-active-h);
  border: 1px solid rgba(198, 255, 61, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(198, 255, 61, 0.12), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 58px rgba(198, 255, 61, 0.12);
  pointer-events: none;
  transition: left 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), top 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.22s ease;
}

.process-step {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: var(--process-step-pad);
  border-radius: var(--radius);
  opacity: 0.62;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(-3px);
}

.node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.045);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.process-step.is-active .node {
  border-color: rgba(198, 255, 61, 0.72);
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(198, 255, 61, 0.12);
}

.process-step h3 {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  transition: color 0.28s ease;
}

.process-step.is-active h3 {
  color: #fff;
}

.process-step p,
.location-card p,
.trainer-info p,
.price-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-step p {
  transition: color 0.28s ease;
}

.process-step.is-active p {
  color: rgba(255, 255, 255, 0.76);
}

.price-card {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
}

.price-card.is-best {
  border-color: rgba(198, 255, 61, 0.62);
  box-shadow: 0 20px 58px rgba(198, 255, 61, 0.08);
}

.best-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 20px 0 8px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.price small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
  margin-top: 24px;
}

.pricing-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: #fff;
  text-align: left;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 850;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  transition: transform 0.24s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-muted);
  line-height: 1.72;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.location-card {
  padding: clamp(22px, 3vw, 30px);
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.info-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.info-row strong {
  color: #fff;
}

.map-box {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(198, 255, 61, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(198, 255, 61, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 58% 45%, rgba(198, 255, 61, 0.24), transparent 16%),
    #10141a;
  background-size: 54px 54px, 54px 54px, auto, auto;
  position: relative;
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 45%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(198, 255, 61, 0.12);
}

.map-box p {
  position: absolute;
  left: 24px;
  bottom: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 16px;
}

.contact-panel,
.contact-form {
  padding: clamp(22px, 3vw, 34px);
}

.contact-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-panel h2 span {
  color: var(--accent);
}

.contact-visual {
  position: relative;
  min-height: 280px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(11, 14, 18, 0), rgba(11, 14, 18, 0.74)), var(--contact-image);
  background-size: cover;
  background-position: 60% center;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.agree {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(198, 255, 61, 0.7);
  background: rgba(255, 255, 255, 0.075);
}

.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 18px;
  line-height: 1.5;
}

.agree input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--accent);
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 800;
}

.form-message.is-error {
  color: #ff6d6d;
}

.site-footer {
  padding: clamp(42px, 6vw, 70px) 0 28px;
  border-top: 1px solid var(--line);
  background: #090c10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.55fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
}

.footer-desc {
  max-width: 380px;
  color: var(--text-muted);
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  color: var(--accent);
  border-color: rgba(198, 255, 61, 0.5);
  background: rgba(198, 255, 61, 0.08);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-hours {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-hours .hours-list {
  display: grid;
  gap: 8px;
}

.footer-hours .hours-list div {
  min-height: 0;
  background: rgba(255, 255, 255, 0.045);
}

.footer-hours .hours-list dt {
  font-size: 12px;
}

.footer-hours .hours-list dd {
  font-size: 14px;
}

.business-info {
  grid-column: 1 / -1;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.business-info summary {
  width: max-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  cursor: pointer;
}

.business-lines {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.footer-policy {
  display: flex;
  gap: 14px;
}

.quick-menu {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  gap: 10px;
}

.quick-menu a,
.quick-menu button {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(19, 23, 30, 0.78);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.quick-menu svg {
  color: var(--accent);
}

.quick-menu a:hover,
.quick-menu button:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 255, 61, 0.5);
  background: rgba(198, 255, 61, 0.12);
}

.mobile-bottom-bar {
  display: none;
}

.policy-page {
  background: var(--bg);
}

.policy-main {
  padding-top: clamp(104px, 12vw, 148px);
}

.policy-hero {
  padding-bottom: 34px;
}

.policy-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.policy-card {
  padding: clamp(22px, 3vw, 34px);
}

.policy-card + .policy-card {
  margin-top: 14px;
}

.policy-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(21px, 2.8vw, 30px);
}

.policy-card h3 {
  margin: 22px 0 9px;
  color: var(--accent);
  font-size: 17px;
}

.policy-card p,
.policy-card li {
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-card p {
  margin: 0 0 12px;
}

.policy-card ul,
.policy-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.policy-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.5);
}

.policy-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.js .reveal,
.js .stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible,
.js .stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-transition {
  transition: none !important;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loaderBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

@keyframes marqueeGlow {
  from {
    background-position: 220% 50%;
  }
  to {
    background-position: -20% 50%;
  }
}

@keyframes textGradient {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .header-actions .btn {
    padding-inline: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: 74px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand small {
    display: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .scroll-cue {
    display: none;
  }

  .stats-grid,
  .trainer-grid,
  .review-grid,
  .price-grid,
  .location-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-pin-track,
  .program-pin-track {
    display: none;
  }

  .mobile-stack {
    display: grid;
    gap: 20px;
  }

  .mobile-card {
    display: grid;
    gap: 18px;
    padding: 0;
  }

  .mobile-card .image-card {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .mobile-card .feature-copy,
  .mobile-card .program-detail {
    padding-bottom: 22px;
  }

  .program-detail ul {
    margin-top: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    min-height: clamp(150px, 35vw, 230px);
  }

  .banner-lines {
    font-size: clamp(46px, 17vw, 92px);
  }

  .process-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    --process-step-pad: 14px;
  }

  .process-wrap::before {
    left: calc(var(--process-step-pad) + 38px);
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
  }

  .process-step {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    align-items: start;
  }

  .process-step.is-active {
    transform: translateX(3px);
  }

  .node {
    margin-bottom: 0;
  }

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

  .footer-bottom,
  .policy-footer .container {
    flex-direction: column;
  }

  .quick-menu {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(11, 14, 18, 0.92);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-bar a {
    min-height: 50px;
    border-radius: 999px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .hero-hours {
    align-items: flex-start;
  }

  .hero-hours .hours-list,
  .hero-hours .hours-list div {
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .gallery-grid {
    gap: 8px;
  }

  .gallery-item figcaption {
    left: 10px;
    bottom: 10px;
    font-size: 13px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .lightbox-panel {
    width: 100%;
    max-height: calc(100svh - 28px);
    gap: 10px;
  }

  .lightbox-panel img {
    height: 70svh;
    border-radius: 14px;
  }

  .lightbox-panel figcaption {
    max-width: 100%;
    font-size: 13px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .contact-panel,
  .contact-form,
  .location-card,
  .review-card,
  .price-card {
    padding: 20px;
  }

  .footer-policy {
    flex-wrap: wrap;
  }
}

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

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

  .feature-pin-track,
  .program-pin-track {
    height: auto;
  }

  .pin-stage {
    position: static;
    height: auto;
  }
}
