/* ==========================================================================
   SkyGym — Design System
   ========================================================================== */

:root {
  --color-black: #0a0a0a;
  --color-black-soft: #121212;
  --color-black-card: #161616;
  --color-red: #e31e24;
  --color-red-dark: #a5151a;
  --color-red-glow: rgba(227, 30, 36, 0.35);
  --color-white: #f5f5f5;
  --color-grey: #9a9a9a;
  --color-grey-line: #2a2a2a;

  --font-display: "Anton", "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1240px;
  --clip: 22px;
  --header-h: 92px;
  --header-h-shrink: 68px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-red);
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-head p { color: var(--color-grey); margin-top: 16px; font-size: 1.02rem; }

section { position: relative; padding: 110px 0; }
.section-tight { padding: 70px 0; }

/* subtle bg texture */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(227,30,36,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,30,36,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: 0.5;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(.7,0,.2,1);
}
.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 0 0 rgba(227,30,36,0);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-primary::before { background: var(--color-red-dark); }
.btn-primary:hover { box-shadow: 0 6px 30px var(--color-red-glow); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(245,245,245,0.35);
}
.btn-outline::before { background: var(--color-red); }
.btn-outline:hover { border-color: var(--color-red); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline span, .btn-primary span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px;}

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, height 0.35s ease, box-shadow 0.35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: var(--header-h-shrink);
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--color-grey-line);
  box-shadow: 0 12px 40px -18px var(--color-red-glow);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; display: block; transition: height .35s ease; }
.site-header.scrolled .logo img { height: 36px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--color-red); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 2px; font-family: var(--font-body); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.04em; }
.lang-switch a { padding: 5px 8px; color: var(--color-grey); }
.lang-switch a.active { color: var(--color-red); }
.lang-switch a:hover { color: var(--color-white); }
.lang-switch span { color: var(--color-grey-line); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--color-grey-line);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
}
.burger span { width: 18px; height: 2px; background: var(--color-white); transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .4s ease, transform .4s ease; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; color: var(--color-white); }
.mobile-nav a.active { color: var(--color-red); }
.mobile-nav .lang-switch { margin-top: 20px; font-size: 1rem; }
.mobile-nav .lang-switch a { padding: 12px 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: hidden;
  background: radial-gradient(120% 90% at 78% 30%, #1a0d0d 0%, var(--color-black) 60%);
}
.hero-spotlight {
  position: absolute;
  top: 10%; right: 5%;
  width: 55vw; height: 55vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, var(--color-red-glow) 0%, transparent 68%);
  filter: blur(10px);
  animation: driftGlow 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes driftGlow {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-4%, 6%) scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}
.hero-left { position: relative; z-index: 3; max-width: 480px; flex-shrink: 0; }
.hero-content h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
}
.hero-content h1 .line { display: block; overflow: hidden; padding-top: 0.15em; margin-top: -0.15em; }
.hero-content h1 .line span { display: inline-block; transform: translateY(110%); }
.hero-content h1 .line.accent { color: var(--color-red); text-shadow: 0 0 34px var(--color-red-glow); }
.hero-sub {
  margin-top: 22px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-grey);
  font-size: 0.95rem;
}
.hero-cta { margin-top: 40px; display: flex; gap: 18px; flex-wrap: wrap; }

.hero-visual {
  position: absolute;
  top: 0; bottom: 0; right: -4%;
  width: 92%;
  z-index: 1;
}
.hero-diagonal {
  position: absolute;
  top: 6%; right: -8%;
  width: 80%; height: 104%;
  background: linear-gradient(160deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%; height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-red-glow) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.gorilla-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: contain;
  object-position: 100% 0%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
  transition: transform 0.2s ease-out;
}

.hero-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--color-grey-line);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
}
.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  border-right: 1px solid var(--color-grey-line);
}
.strip-item:last-child { border-right: none; }
.strip-item .ic { color: var(--color-red); flex-shrink: 0; }
.strip-item strong { display: block; font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.04em; }
.strip-item span { display: block; color: var(--color-grey); font-size: 0.8rem; margin-top: 3px; }

/* ---------- Diagonal-cut Card system ---------- */
.cut-card {
  position: relative;
  background: linear-gradient(155deg, var(--color-black-card), var(--color-black-soft));
  border: 1px solid rgba(227,30,36,0.28);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip)), calc(100% - var(--clip)) 100%, 0 100%);
  padding: 40px 32px 44px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
}
.cut-card::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: var(--clip); height: var(--clip);
  background: rgba(227,30,36,0.4);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transition: background .4s ease;
}
.cut-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-red);
  box-shadow: 0 24px 50px -22px var(--color-red-glow);
}
.cut-card:hover::after { background: var(--color-red); }
.cut-card .ic {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, rgba(227,30,36,0.14), rgba(227,30,36,0.02));
  border: 1.5px solid var(--color-red);
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  color: var(--color-red);
  margin-bottom: 24px;
  transition: background .3s ease, transform .3s ease;
}
.cut-card:hover .ic { background: linear-gradient(155deg, rgba(227,30,36,0.3), rgba(227,30,36,0.05)); transform: scale(1.06); }
.cut-card h3 { font-size: 1.28rem; margin-bottom: 12px; letter-spacing: 0.02em; }
.cut-card p { color: var(--color-grey); font-size: 0.94rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
.about-grid .lede { color: var(--color-grey); font-size: 1.05rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.perk-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }
.perk {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px;
  border-left: 2px solid var(--color-red);
  background: var(--color-black-soft);
}
.perk .ic { color: var(--color-red); flex-shrink: 0; margin-top: 2px; }
.perk strong { display: block; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.perk span { color: var(--color-grey); font-size: 0.86rem; }

/* ---------- Zones gallery ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.zone-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.zone-card .ph {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #1c1414, #0a0a0a);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.zone-card:hover .ph { transform: scale(1.08); }
.zone-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.zone-card .zc-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 18px;
  z-index: 2;
  transition: transform .4s ease;
}
.zone-card:hover .zc-content { transform: translateY(-6px); }
.zone-card .ic { color: var(--color-red); margin-bottom: 10px; }
.zone-card h3 { font-size: 1rem; margin-bottom: 6px; letter-spacing: 0.02em; }
.zone-card p { color: var(--color-grey); font-size: 0.78rem; line-height: 1.4; }

.zone-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 100px;
}
.zone-detail:nth-child(even) .zd-photo { order: 2; }
.zone-detail .zd-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  background: linear-gradient(155deg, #1c1414, #0a0a0a);
  border: 1px solid var(--color-grey-line);
}
.zone-detail .zd-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.zone-detail .zd-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.zone-detail .zd-photo .num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: rgba(227,30,36,0.75);
  text-shadow: 0 2px 14px rgba(0,0,0,0.8);
  z-index: 2;
}
.zone-detail h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 18px; }
.zone-detail p { color: var(--color-grey); margin-bottom: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  padding: 9px 16px;
  border: 1px solid var(--color-grey-line);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex; align-items: center; gap: 8px;
}
.tag-list li::before { content: ""; width: 6px; height: 6px; background: var(--color-red); flex-shrink: 0; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-grid.pg-7 { grid-template-columns: repeat(3, 1fr); }
.price-card {
  position: relative;
  background: linear-gradient(155deg, var(--color-black-card), var(--color-black-soft));
  border: 1px solid var(--color-grey-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  padding: 40px 34px 44px;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, opacity .4s ease;
}
.pricing-grid:hover .price-card:not(:hover) { opacity: 0.55; transform: scale(0.98); }
.price-card.popular {
  background: linear-gradient(155deg, var(--color-red-dark), #6e0f13);
  border-color: var(--color-red);
  transform: scale(1.045);
  z-index: 2;
  box-shadow: 0 30px 60px -22px var(--color-red-glow);
}
.pricing-grid:hover .price-card.popular:hover { transform: scale(1.045); }
.price-card .badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--color-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 9px 14px 8px;
  text-align: center;
  text-transform: uppercase;
}
.price-card.popular .badge { background: var(--color-white); color: var(--color-red-dark); }
.price-card.popular { padding-top: 78px; }
.price-card .plan-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; }
.price-card .plan-tag { color: var(--color-grey); font-size: 0.85rem; margin-top: 6px; }
.price-card.popular .plan-tag { color: rgba(255,255,255,0.75); }
.price-card .price { margin: 26px 0 26px; display: flex; align-items: baseline; gap: 6px; }
.price-card .price .num { font-family: var(--font-display); font-size: 3.2rem; }
.price-card .price .per { color: var(--color-grey); font-size: 0.9rem; }
.price-card.popular .price .per { color: rgba(255,255,255,0.75); }
.price-card .plan-feats { flex: 1; margin-bottom: 30px; }
.price-card .plan-feats li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.price-card .plan-feats li:last-child { border-bottom: none; }
.price-card .plan-feats li .check { color: var(--color-red); flex-shrink: 0; margin-top: 2px; }
.price-card.popular .plan-feats li .check { color: #fff; }
.price-card .note { color: var(--color-grey); font-size: 0.78rem; margin-top: -14px; margin-bottom: 20px; line-height: 1.5; }
.price-card.popular .note { color: rgba(255,255,255,0.7); }
.price-card.popular .btn-outline { border-color: rgba(255,255,255,0.5); }
.price-card.popular .btn-outline::before { background: #fff; }
.price-card.popular .btn-outline:hover { color: var(--color-red-dark); }

.pricing-top-note {
  border: 1px solid var(--color-grey-line);
  border-left: 3px solid var(--color-red);
  background: var(--color-black-soft);
  padding: 26px 30px;
  margin-bottom: 60px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pricing-top-note .ic { color: var(--color-red); flex-shrink: 0; margin-top: 3px;}
.pricing-top-note strong { display: block; margin-bottom: 6px; }
.pricing-top-note span { color: var(--color-grey); font-size: 0.92rem; }

/* ---------- Trainers ---------- */
.trainers-wrap { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 60px; align-items: center; }
.trainers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 300px)); gap: 18px; justify-content: center; }
.trainer-card { position: relative; aspect-ratio: 3/4; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%); }
.trainer-card .ph,
.trainer-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  background: linear-gradient(160deg, #1c1414, #0a0a0a);
  filter: grayscale(1) contrast(1.05);
  transition: filter .5s ease, transform .5s ease;
}
.trainer-card:hover .ph,
.trainer-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.trainer-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 15%, transparent 55%);
  z-index: 1;
}
.trainer-card .tc-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; z-index: 2; transition: transform .35s ease; }
.trainer-card:hover .tc-info { transform: translateY(-4px); }
.trainer-card .tc-info strong { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.02em; }
.trainer-card .tc-info span { display: block; color: var(--color-red); font-size: 0.78rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--color-black-soft);
  border: 1px solid var(--color-grey-line);
  border-top: 3px solid var(--color-red);
  padding: 32px 30px;
}
.stars { display: flex; gap: 4px; color: var(--color-red); margin-bottom: 18px; }
.testi-card p.quote { font-size: 1rem; margin-bottom: 26px; color: #e8e8e8; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(160deg, #2a1414, #0a0a0a); border: 1px solid var(--color-grey-line); flex-shrink: 0; }
.testi-person strong { display: block; font-size: 0.92rem; }
.testi-person span { display: block; color: var(--color-red); font-size: 0.8rem; margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(160deg, #1a0d0d, var(--color-black));
  border-top: 1px solid var(--color-grey-line);
  border-bottom: 1px solid var(--color-grey-line);
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 26px; }
.cta-banner .btn { margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #060606; border-top: 1px solid var(--color-grey-line); padding-top: 80px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--color-red), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--color-grey-line); }
.footer-brand p { color: var(--color-grey); margin-top: 18px; font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 22px; color: var(--color-white); }
.footer-col ul li { margin-bottom: 12px; font-size: 0.9rem; color: var(--color-grey); }
.footer-col ul li a:hover { color: var(--color-red); }
.footer-col.hours li { display: flex; justify-content: space-between; gap: 12px; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-grey-line);
  color: var(--color-white);
  transition: border-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.social-row a:hover { border-color: var(--color-red); color: var(--color-red); box-shadow: 0 0 20px var(--color-red-glow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 10px; color: var(--color-grey); font-size: 0.82rem; }
.footer-bottom a { color: var(--color-grey); }
.footer-bottom a:hover { color: var(--color-red); }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--color-red); box-shadow: 0 0 12px var(--color-red-glow); z-index: 200; width: 0%; }

/* ---------- Custom cursor (dumbbell) ---------- */
.custom-cursor, .custom-cursor a, .custom-cursor button, .custom-cursor .btn { cursor: none; }
.cursor-dumbbell {
  position: fixed;
  top: 0; left: -100px;
  width: 46px; height: 46px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease-out, filter .2s ease;
  filter: drop-shadow(0 4px 10px rgba(227,30,36,0.45));
}
.cursor-dumbbell img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cursor-dumbbell.active {
  transform: translate(-50%, -50%) scale(1.25);
  filter: drop-shadow(0 4px 18px rgba(227,30,36,0.85));
}

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader .logo img { height: 72px; width: auto; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: radial-gradient(120% 100% at 80% 0%, #1a0d0d 0%, var(--color-black) 55%);
  border-bottom: 1px solid var(--color-grey-line);
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero .lede { color: var(--color-grey); margin-top: 18px; max-width: 620px; font-size: 1.02rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--color-grey); font-size: 0.82rem; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--color-red); }
.breadcrumb .sep { color: var(--color-grey-line); }
.breadcrumb .cur { color: var(--color-red); }

/* ---------- Rules accordion ---------- */
.rules-intro { max-width: 780px; margin: 0 auto 60px; text-align: center; color: var(--color-grey); }
.rules-intro strong { color: var(--color-white); }
.accordion { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--color-grey-line); }
.acc-item { border-bottom: 1px solid var(--color-grey-line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  text-align: left;
  background: none;
}
.acc-head .idx { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-red); width: 50px; flex-shrink: 0; }
.acc-head .t { flex: 1; font-weight: 600; font-size: 1rem; }
.acc-head .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.acc-head .plus::before, .acc-head .plus::after { content: ""; position: absolute; background: var(--color-white); transition: transform .35s ease; }
.acc-head .plus::before { left: 0; top: 50%; width: 100%; height: 2px; margin-top: -1px; }
.acc-head .plus::after { top: 0; left: 50%; height: 100%; width: 2px; margin-left: -1px; }
.acc-item.open .acc-head .plus::after { transform: rotate(90deg); opacity: 0; }
.acc-item.open .acc-head .t { color: var(--color-red); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.8,.2,1); }
.acc-body-inner { padding: 0 8px 30px 74px; color: var(--color-grey); font-size: 0.94rem; line-height: 1.75; }
.acc-body-inner ul { margin-top: 12px; }
.acc-body-inner ul li { padding-left: 18px; position: relative; margin-bottom: 8px; }
.acc-body-inner ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--color-red); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-cards { display: grid; gap: 16px; margin-bottom: 30px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--color-black-soft); border: 1px solid var(--color-grey-line); border-left: 3px solid var(--color-red); }
.contact-card .ic { color: var(--color-red); flex-shrink: 0; }
.contact-card strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.contact-card span, .contact-card p { color: var(--color-grey); font-size: 0.9rem; }
.contact-card a:hover { color: var(--color-red); }

/* ---------- Plan selection modal ---------- */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.plan-modal.open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
.plan-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.plan-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--color-black-card);
  border: 1px solid var(--color-grey-line);
  border-top: 3px solid var(--color-red);
  padding: 44px 40px 40px;
  transform: translateY(20px) scale(0.97);
  transition: transform .3s ease;
}
.plan-modal.open .plan-modal-dialog { transform: translateY(0) scale(1); }
.plan-modal-dialog h3 { font-size: 1.5rem; margin-bottom: 14px; }
.plan-modal-dialog > p { color: var(--color-grey); margin-bottom: 26px; }
.plan-modal-info { display: grid; gap: 14px; }
.plan-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: 1px solid var(--color-grey-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
  color: var(--color-grey);
  transition: border-color .3s ease, color .3s ease;
}
.plan-modal-close:hover { border-color: var(--color-red); color: var(--color-red); }
@media (max-width: 640px) {
  .plan-modal-dialog { padding: 40px 22px 28px; }
}

.form-wrap { background: var(--color-black-card); border: 1px solid var(--color-grey-line); padding: 40px; }
.form-wrap h3 { font-size: 1.4rem; margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-grey); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  background: var(--color-black-soft);
  border: 1px solid var(--color-grey-line);
  color: var(--color-white);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-red); box-shadow: 0 0 0 3px var(--color-red-glow); }
.field textarea { resize: vertical; min-height: 130px; }
.form-msg { margin-top: 16px; padding: 14px 16px; border-left: 3px solid var(--color-red); background: rgba(227,30,36,0.08); font-size: 0.88rem; display: none; }
.form-msg.show { display: block; animation: fadeInUp .4s ease; }

.map-wrap { margin-top: 60px; }
.map-frame { position: relative; aspect-ratio: 21/8; border: 1px solid var(--color-grey-line); filter: grayscale(0.4) invert(0.92) contrast(0.92); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-note { color: var(--color-grey); font-size: 0.88rem; margin-top: 16px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Reveal utility (fallback if GSAP not loaded) ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-content { flex: none; flex-direction: column-reverse; text-align: center; padding-top: 50px; gap: 14px; }
  .hero-left { max-width: 100%; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; aspect-ratio: 3/2; z-index: 1; }
  .about-grid, .contact-grid, .trainers-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-grid, .trainers-wrap { text-align: center; }
  .about-grid .eyebrow, .trainers-wrap .eyebrow { justify-content: center; }
  .cards-4, .perk-row { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .pricing-grid.pg-7 { grid-template-columns: repeat(2, 1fr); }
  .zone-detail { grid-template-columns: 1fr; gap: 30px; }
  .zone-detail:nth-child(even) .zd-photo { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav, .header-actions .lang-switch, .header-actions .btn { display: none; }
  .burger { display: flex; }
  .hero-strip .container { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item { border-bottom: 1px solid var(--color-grey-line); }
  .testi-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .pricing-grid.pg-7 { grid-template-columns: 1fr; }
  .price-card.popular { transform: scale(1); }
}
@media (max-width: 640px) {
  section { padding: 74px 0; }
  .cards-4, .perk-row { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-strip .container { grid-template-columns: 1fr; }
  .strip-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .acc-body-inner { padding-left: 8px; }
  .acc-head .idx { width: 36px; font-size: 1.4rem; }
  .form-wrap { padding: 26px 22px; }
  .map-frame { aspect-ratio: 4/3; }
}
