/* ============================================================
   Transform Fitness — style.v11.css ("Make it epic" build)
   Dark, cinematic, high-energy, warm. No frameworks, no libs.
   ============================================================ */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--warm-white);
  color: #2E2D2B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

::selection { background: #3DD472; color: #1a2530; }

/* === Design Tokens === */
:root {
  --green:         #3DD472;
  --green-dark:    #2BB85A;
  --green-light:   rgba(61,212,114,0.12);
  --green-glow:    rgba(61,212,114,0.35);
  --charcoal:      #2a3540;
  --charcoal-mid:  #354455;
  --navy:          #1a2530;
  --navy-deep:     #141d26;
  --warm-white:    #FDFCFA;
  --gray-50:       #F7F6F4;
  --gray-100:      #EDECE9;
  --gray-200:      #DDDBD8;
  --gray-400:      #9B9A97;
  --gray-600:      #595855;
  --gray-700:      #3D3C3A;
  --gray-800:      #2E2D2B;

  --line:          rgba(255,255,255,0.09);   /* 1px borders on dark cards */
  --ink-line:      rgba(42,53,64,0.10);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);

  --ease: 200ms ease;
  --ease-slow: 400ms cubic-bezier(0.22,1,0.36,1);

  --max-w: 1200px;
  --header-h: 72px;

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === Scroll progress bar === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 12px var(--green-glow);
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

/* === Typography === */
h1, h2, h3, h4 {
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.2; }
.label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  color: var(--gray-600);
}
/* Green highlight sweep for emphasis words */
.hl {
  background-image: linear-gradient(120deg, rgba(61,212,114,0.35), rgba(61,212,114,0.35));
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 88%;
  padding-inline: 0.08em;
}
/* Outlined display text */
.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
}

/* Huge watermark text behind sections */
.wm {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-line);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-transform: uppercase;
}
.wm-light { -webkit-text-stroke-color: rgba(255,255,255,0.07); }
.wm-top { top: 1.5rem; }
.wm-bottom { bottom: 1rem; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn .arr { display: inline-block; transition: transform var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--green); color: var(--navy); border-color: var(--green); }
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--green-glow);
}
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.btn-white { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover { background: var(--gray-100); border-color: var(--gray-100); transform: translateY(-2px); }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--ease-slow), box-shadow var(--ease-slow);
}
.header-dark { background: var(--charcoal); box-shadow: 0 1px 0 var(--line); }
.header-scrolled {
  background: rgba(26,37,48,0.88) !important;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}
.site-header:not(.header-scrolled).header-dark { background: var(--charcoal) !important; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.75rem; right: 0.75rem; bottom: 2px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-cta { font-size: 0.875rem; padding: 0.625rem 1.25rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  gap: 0.25rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  visibility: hidden;
}
.nav-mobile.open { transform: translateY(0); visibility: visible; }
.nav-mobile-link {
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--line);
  transition: all var(--ease);
}
.nav-mobile-link:last-of-type { border-bottom: none; }
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--green); }
.nav-mobile-cta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: url('/images/gym-community.webp') center/cover no-repeat var(--navy);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(61,212,114,0.14), transparent 60%),
    linear-gradient(180deg, rgba(20,29,38,0.88) 0%, rgba(20,29,38,0.82) 55%, rgba(20,29,38,0.94) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(61,212,114,0.12);
  border: 1px solid rgba(61,212,114,0.4);
  color: var(--green);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.9rem, 7.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero-accent { color: var(--green); text-shadow: 0 0 40px var(--green-glow); }
.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* One-time entrance cascade */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: heroUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3) { animation-delay: 0.34s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }

/* Scroll-down indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-scroll svg { animation: scrollNudge 2s ease-in-out infinite; }
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* === TICKER (skewed divider) === */
.ticker-wrap {
  background: var(--navy);
  border-top: 1px solid rgba(61,212,114,0.25);
  border-bottom: 1px solid rgba(61,212,114,0.25);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  transform: skewY(-1.2deg);
  margin-block: -0.75rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 30px rgba(0,0,0,0.35);
}
.ticker-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.ticker-track .sep { color: rgba(61,212,114,0.4); font-weight: 400; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === STATS === */
.stats-section {
  background: var(--charcoal);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; padding: 1rem 3rem; flex: 1; min-width: 120px; }
.stat-val {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.45rem;
  text-shadow: 0 0 30px rgba(61,212,114,0.25);
}
.stat-suffix { font-size: 0.8em; font-weight: 800; }
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stat-div { width: 1px; height: 44px; background: var(--line); flex-shrink: 0; }

/* === Sections === */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; position: relative; z-index: 1; }
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--charcoal); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .label { color: var(--green); }
.section-dark .section-header p, .section-dark .lead { color: rgba(255,255,255,0.65); }
.rel { position: relative; overflow: hidden; }

/* Noise + glow utilities (dark sections) */
.noise::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.glow::after {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,212,114,0.16), transparent 65%);
  top: -220px; right: -180px;
  pointer-events: none;
  z-index: 0;
}
.glow-left::after { right: auto; left: -180px; top: auto; bottom: -220px; }

/* === REVEAL ON SCROLL (variants) === */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* === Why cards === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(42,53,64,0.16);
  border-color: rgba(61,212,114,0.45);
}
.why-icon {
  width: 54px; height: 54px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
}
.why-card h3 { margin-bottom: 0.625rem; }
.why-card p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.65; }

/* === HYROX section === */
.hyrox-section {
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(61,212,114,0.13), transparent 60%),
    var(--navy);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hyrox-ribbon {
  position: absolute;
  top: 2.4rem; left: -5%;
  width: 110%;
  transform: rotate(-2deg);
  background: var(--green);
  padding: 0.55rem 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 30px var(--green-glow);
}
.hyrox-ribbon .ticker-track { animation-duration: 22s; }
/* WCAG 2.2.2: moving content pauses on hover/focus */
.ticker-wrap:hover .ticker-track,
.ticker-wrap:focus-within .ticker-track,
.hyrox-ribbon:hover .ticker-track { animation-play-state: paused; }
.hyrox-ribbon span { color: var(--navy); font-size: 0.8rem; }
.hyrox-ribbon .sep { color: rgba(26,37,48,0.45); }
.hyrox-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hyrox-text h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.02;
}
.hyrox-text p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hyrox-label { color: var(--green); }
.hyrox-stats { display: flex; gap: 2.25rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.hs-val {
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hs-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}
.hyrox-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(61,212,114,0.12);
  border: 1px solid var(--line);
  transform: perspective(1000px) rotateY(-4deg);
  transition: transform 0.6s ease;
}
.hyrox-image:hover { transform: perspective(1000px) rotateY(0deg); }
.hyrox-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* === Masonry gallery === */
.gallery-section {
  background: var(--navy);
  padding: 5.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.gallery-section .section-header { margin-bottom: 2.5rem; }
.gallery-section .section-header h2 { color: #fff; }
.gallery-section .section-header p { color: rgba(255,255,255,0.62); }
.gallery-section .label { color: var(--green); }
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  margin: 0 8px;
  position: relative;
  z-index: 1;
}
.m-item {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.m-item.m-tall { grid-row: span 2; }
.m-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
}
.m-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,212,114,0) 40%, rgba(43,184,90,0.85) 130%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.m-cap {
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.75rem;
  z-index: 2;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.m-item:hover img { transform: scale(1.06); filter: saturate(1.15); }
.m-item:hover::after { opacity: 1; }
.m-item:hover .m-cap { opacity: 1; transform: translateY(0); }
@media (min-width: 1024px) {
  .m-item:nth-child(3n)  { transform: rotate(0.7deg); }
  .m-item:nth-child(4n)  { transform: rotate(-0.7deg); }
  .m-item:hover { transform: rotate(0) scale(1.01); z-index: 2; transition: transform 0.35s ease; }
}
.gallery-cta { text-align: center; margin-top: 2.5rem; padding-bottom: 1rem; position: relative; z-index: 1; }

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform var(--ease-slow), box-shadow var(--ease-slow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(42,53,64,0.16); }
.plan-badge {
  display: inline-block;
  align-self: center;
  background: var(--green);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 20px var(--green-glow);
}
.plan-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.plan-price span { font-size: 1.1rem; font-weight: 500; color: var(--gray-400); letter-spacing: 0; }
.plan-features {
  text-align: left;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.plan-features li { font-size: 0.9375rem; color: var(--gray-700); padding-left: 0.25rem; }
.plan-features li::before { content: '✓ '; color: var(--green-dark); font-weight: 800; }

/* Featured card — animated gradient border */
.pricing-featured {
  background: var(--charcoal);
  overflow: hidden;
  z-index: 0;
  border: none;
  box-shadow: 0 16px 50px rgba(61,212,114,0.22);
}
.pricing-featured::before {
  content: '';
  position: absolute;
  inset: -120%;
  background: conic-gradient(from 0deg,
    transparent 0deg 60deg, var(--green) 110deg, rgba(61,212,114,0.15) 160deg,
    transparent 200deg 240deg, var(--green) 290deg, rgba(61,212,114,0.15) 340deg, transparent 360deg);
  animation: borderSpin 5s linear infinite;
  z-index: -2;
}
.pricing-featured::after {
  content: '';
  position: absolute;
  inset: 2px;
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(61,212,114,0.14), transparent 60%),
    var(--charcoal);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: -1;
}
@keyframes borderSpin { to { transform: rotate(360deg); } }
.pricing-featured:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 60px rgba(61,212,114,0.3); }
.pricing-featured .plan-name { color: rgba(255,255,255,0.7); }
.pricing-featured .plan-price { color: #fff; }
.pricing-featured .plan-price span { color: rgba(255,255,255,0.55); }
.pricing-featured .plan-features li { color: rgba(255,255,255,0.82); }
.pricing-featured .plan-features li::before { color: var(--green); }
.plan-note { text-align: center; margin-top: 1.75rem; color: var(--gray-600); font-size: 0.9rem; position: relative; z-index: 1; }
.plan-note a { color: var(--green-dark); font-weight: 700; }

/* Day pass callout */
.daypass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  position: relative;
  overflow: hidden;
}
.daypass::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,212,114,0.18), transparent 65%);
  right: -80px; top: -120px;
  pointer-events: none;
}
.daypass h3 { color: #fff; margin-bottom: 0.3rem; }
.daypass p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.daypass .dp-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Comparison table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; position: relative; z-index: 1; }
.compare-table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table th, .compare-table td { padding: 0.95rem 1.25rem; text-align: center; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); }
.compare-table th { background: var(--charcoal); color: #fff; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-table th.feat-col, .compare-table td.feat-col { text-align: left; font-weight: 600; }
.compare-table td.feat-col { color: var(--gray-700); }
.compare-table th.hot { background: var(--green); color: var(--navy); }
.compare-table td.hot { background: rgba(61,212,114,0.08); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--green-dark); font-weight: 800; }
.compare-table .no { color: var(--gray-200); }

/* === Timetable (homepage) === */
.timetable-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}
.timetable-day {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--ease), box-shadow var(--ease);
}
.timetable-day-header {
  background: var(--charcoal);
  color: #fff;
  padding: 0.625rem 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timetable-day.is-today {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), 0 10px 28px rgba(61,212,114,0.28);
  transform: translateY(-3px);
}
.timetable-day.is-today .timetable-day-header { background: var(--green); color: var(--navy); }
.timetable-day.is-today .timetable-day-header::after { content: ' · TODAY'; }
.timetable-classes { padding: 0.5rem; display: flex; flex-direction: column; gap: 0.375rem; }
.timetable-class {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
}
.timetable-class-name { font-size: 0.7rem; font-weight: 800; color: var(--charcoal); line-height: 1.2; }
.timetable-class-time { font-size: 0.65rem; color: var(--gray-600); margin-top: 0.15rem; }
.timetable-class.strength { background: rgba(59,130,246,0.1); border-left-color: #3b82f6; }
.timetable-class.yoga { background: rgba(168,85,247,0.1); border-left-color: #a855f7; }
.timetable-class.pilates { background: rgba(236,72,153,0.1); border-left-color: #ec4899; }
.timetable-class.foundations { background: rgba(245,158,11,0.1); border-left-color: #f59e0b; }
.timetable-class.hiit { background: rgba(239,68,68,0.1); border-left-color: #ef4444; }
.timetable-footer { text-align: center; margin-top: 2.5rem; position: relative; z-index: 1; }
.timetable-footer p { color: var(--gray-600); margin-bottom: 1.25rem; }

/* === Trial banner === */
.trial-banner {
  background: linear-gradient(135deg, #3DD472, #2BB85A, #1a9944);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.trial-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.06;
  pointer-events: none;
}
.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.trial-text h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}
.trial-text p { color: rgba(26,37,48,0.8); font-size: 1.1rem; max-width: 520px; font-weight: 500; }

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(42,53,64,0.14);
  border-color: rgba(61,212,114,0.4);
}
.testimonial-stars { color: var(--green-dark); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9375rem; line-height: 1.7; color: var(--gray-700); flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--charcoal);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; color: var(--charcoal); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

.google-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.google-cta span { font-size: 1rem; font-weight: 800; color: var(--charcoal); }
.google-cta a { color: var(--green-dark); font-weight: 700; font-size: 0.95rem; transition: opacity var(--ease); }
.google-cta a:hover { opacity: 0.75; }

/* === Info strip === */
.info-strip {
  background: var(--charcoal-mid);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(61,212,114,0.14);
  border: 1px solid rgba(61,212,114,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.info-text .info-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
  display: block;
}
.info-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.info-text a { color: rgba(255,255,255,0.75); transition: color var(--ease); }
.info-text a:hover { color: var(--green); }
.info-cta-item { display: flex; justify-content: flex-end; }

/* === Footer === */
.site-footer {
  background: var(--navy-deep);
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.footer-brand img { height: 38px; width: auto; }
.footer-brand p { margin-top: 1rem; line-height: 1.65; font-size: 0.9rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--navy); transform: translateY(-2px); }
.footer-heading {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--ease); padding: 0.1rem 0; }
.footer-links a:hover { color: var(--green); }
.footer-join { color: var(--green) !important; font-weight: 800; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: 0.825rem; }
.footer-staff { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-staff:hover { color: rgba(255,255,255,0.85); }

/* === Sticky mobile CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(26,37,48,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.sticky-cta strong { color: #fff; }
@media (min-width: 768px) { .sticky-cta { display: none !important; } }

/* === Inner page hero === */
.page-hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-h) + 5rem) 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 115%, rgba(61,212,114,0.14), transparent 60%),
    rgba(20,29,38,0.86);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .label { color: var(--green); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.page-hero p { color: rgba(255,255,255,0.72); max-width: 620px; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.7; }
.page-hero .hero-btns { margin-top: 2rem; }

/* === Class cards (group training) === */
.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.class-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-slow), box-shadow var(--ease-slow), border-color var(--ease-slow);
  display: flex;
  flex-direction: column;
}
.class-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--green));
}
.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, var(--green));
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}
.class-card h3 { color: #fff; margin-bottom: 0.6rem; }
.class-card p { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.65; flex: 1; }
.class-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.type-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--accent, var(--green)) 18%, transparent);
  color: var(--accent, var(--green));
  border: 1px solid color-mix(in srgb, var(--accent, var(--green)) 40%, transparent);
}
.ac-circuits    { --accent: #3DD472; }
.ac-strength    { --accent: #60a5fa; }
.ac-hiit        { --accent: #f87171; }
.ac-yoga        { --accent: #c084fc; }
.ac-pilates     { --accent: #f472b6; }
.ac-foundations { --accent: #fbbf24; }
.ac-hyrox       { --accent: #3DD472; }

/* Wide feature card (HYROX / open-to-all) */
.class-card-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 2rem; flex-wrap: wrap; }
.class-card-wide > div { flex: 1; min-width: 240px; }

/* === Journey (numbered steps) === */
.journey { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin-inline: auto; position: relative; z-index: 1; }
.journey-step { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2.25rem; }
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
  content: '';
  position: absolute;
  left: 23px; top: 52px; bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(61,212,114,0.12));
}
.journey-step:last-child::before { display: none; }
.journey-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.section-dark .journey-num { background: rgba(61,212,114,0.14); color: var(--green); }
.journey-content h3 { margin-bottom: 0.4rem; }
.journey-content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.65; }
.section-dark .journey-content p { color: rgba(255,255,255,0.68); }

/* === Pull quote === */
.pullquote-section {
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(61,212,114,0.12), transparent 60%),
    var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.pullquote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pull-mark {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 0.5;
  display: block;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px var(--green-glow);
}
.pullquote blockquote {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.pull-author { color: var(--green); font-weight: 700; font-size: 0.95rem; }
.pull-author small { color: rgba(255,255,255,0.5); font-weight: 500; display: block; margin-top: 0.2rem; }

/* === Values / story (about) === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.split-start { align-items: flex-start; }
.value-item { display: flex; gap: 1.25rem; padding: 1.4rem 0; border-bottom: 1px solid var(--gray-100); }
.value-item:last-child { border-bottom: none; }
.section-dark .value-item { border-color: var(--line); }
.value-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-dark .value-icon { background: rgba(61,212,114,0.14); color: var(--green); }
.value-item h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.value-item p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.65; }
.section-dark .value-item p { color: rgba(255,255,255,0.68); }

.story-copy p { color: var(--gray-600); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1rem; }
.story-copy p:last-of-type { margin-bottom: 0; }
.section-dark .story-copy p { color: rgba(255,255,255,0.72); }

.photo-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-line);
  position: relative;
}
.section-dark .photo-frame, .pullquote-section .photo-frame { border-color: var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-cap {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(20,29,38,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}
.photo-cap small { display: block; color: rgba(255,255,255,0.6); font-weight: 500; font-size: 0.78rem; }

/* Big statement (about) */
.statement-section {
  background: var(--charcoal);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}
.statement .outline { -webkit-text-stroke-color: var(--green); }

/* === Contact === */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--ease-slow), border-color var(--ease-slow), box-shadow var(--ease-slow);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(61,212,114,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.cc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(61,212,114,0.14);
  border: 1px solid rgba(61,212,114,0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.cc-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.cc-value { color: #fff; font-weight: 800; font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.35rem; }
.cc-value a:hover { color: var(--green); }
.cc-hint { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }
.cc-hint a { color: var(--green); font-weight: 700; }

/* Contact form */
.contact-form { position: relative; z-index: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.45rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(61,212,114,0.18); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { color: var(--gray-600); font-size: 0.8125rem; text-align: center; margin-top: 0.875rem; }
.form-success {
  display: none;
  margin-top: 1.5rem;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* === FAQ === */
.faq-list { position: relative; z-index: 1; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item.open { border-color: rgba(61,212,114,0.5); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform 0.3s ease, background var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 1.4rem 1.25rem; color: var(--gray-600); font-size: 0.93rem; line-height: 1.7; }

/* === Schedule page === */
.sched-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 1;
}
.legend-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--accent, var(--green));
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.legend-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.legend-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; }

.sched-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.sched-day {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.sched-day-hdr {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 0.625rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sched-day.is-today {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), 0 12px 30px rgba(61,212,114,0.26);
  transform: translateY(-3px);
}
.sched-day.is-today .sched-day-hdr { background: var(--green); color: var(--navy); }
.sched-day.is-today .sched-day-hdr::after { content: ' · TODAY'; }
.sched-class {
  padding: 0.5rem 0.625rem;
  margin: 0.375rem;
  border-radius: 6px;
  border-left: 3px solid var(--accent, var(--green));
  background: color-mix(in srgb, var(--accent, var(--green)) 10%, #fff);
}
.sched-time {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}
.sched-name { font-size: 0.74rem; font-weight: 800; color: var(--charcoal); line-height: 1.2; }
.sched-rest { padding: 1rem 0.625rem; text-align: center; color: var(--gray-400); font-size: 0.72rem; font-weight: 600; }

.sched-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--accent, var(--green));
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.sched-note p { font-size: 0.9375rem; color: var(--gray-700); }
.sched-book-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.sched-book-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,212,114,0.15), transparent 65%);
  right: -120px; top: -160px;
  pointer-events: none;
}
.sched-book-cta h3 { color: #fff; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.sched-book-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.sched-book-cta .btn { position: relative; z-index: 1; }

/* === Utility === */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.content-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hyrox-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hyrox-image { transform: none; }
  .timetable-grid { grid-template-columns: repeat(4, 1fr); }
  .sched-grid { grid-template-columns: repeat(4, 1fr); }
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .sched-legend { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .masonry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .section { padding: 4rem 0; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; padding: 1rem 1.25rem; }
  .stat-div { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .timetable-grid { grid-template-columns: repeat(2, 1fr); }
  .sched-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .info-cta-item { grid-column: 1 / -1; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trial-inner { flex-direction: column; text-align: center; }
  .trial-text p { margin: 0 auto; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 340px; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .google-cta { flex-direction: column; text-align: center; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .sched-legend { grid-template-columns: 1fr; }
  .daypass { flex-direction: column; text-align: center; }
  .hyrox-stats { justify-content: center; }
  .hyrox-section { padding: 7rem 0 4.5rem; }
  .wm { display: none; }
}

@media (max-width: 479px) {
  .stat { flex: 1 1 100%; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .timetable-grid { grid-template-columns: 1fr; }
  .sched-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
}

/* === REDUCED MOTION — every animation off === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .ticker-track { animation: none; transform: none; }
  .ticker-wrap, .hyrox-ribbon { transform: none; }
  .trial-banner { animation: none; }
  .pricing-featured::before { animation: none; }
  .hero-scroll svg { animation: none; }
  .m-item:hover img, .why-card:hover, .pricing-card:hover, .testimonial-card:hover,
  .class-card:hover, .contact-card:hover, .btn:hover { transform: none; }
}
