/* ================================================================
   IRONFORGE GYM — styles.css
   ================================================================
   RECOLOR INSTANTLY: Change variables below to match any gym brand.
   All colors, fonts, and spacing cascade from these root tokens.
   ================================================================ */

:root {
  /* ── Brand Colors ────────────────────────────────────────────── */
  /* Replace --primary to instantly recolor buttons, accents, highlights */
  --primary:        #e8350a;
  --primary-dark:   #b82608;
  --primary-glow:   rgba(232, 53, 10, 0.35);

  /* Replace --dark to change the background tone */
  --dark:           #0c0c0c;
  --dark-2:         #141414;
  --dark-3:         #1e1e1e;
  --dark-4:         #2a2a2a;

  /* Light tones */
  --light:          #ffffff;
  --light-muted:    rgba(255,255,255,0.55);
  --light-faint:    rgba(255,255,255,0.08);

  /* ── Typography ──────────────────────────────────────────────── */
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  /* ── Sizing & Spacing ────────────────────────────────────────── */
  --container:      1240px;
  --radius:         6px;
  --radius-lg:      12px;

  /* ── Transitions ─────────────────────────────────────────────── */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.35s;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 100px 0; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-header { margin-bottom: 60px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

/* Primary */
.btn--primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px var(--primary-glow);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: var(--light); transform: translateY(-2px); }

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-2px);
}

/* Full-width */
.btn--full { width: 100%; }

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.benefits__grid .reveal:nth-child(2),
.programs__grid .reveal:nth-child(2),
.membership__grid .reveal:nth-child(2) { transition-delay: 0.1s; }

.benefits__grid .reveal:nth-child(3),
.programs__grid .reveal:nth-child(3),
.membership__grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.benefits__grid .reveal:nth-child(4),
.programs__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--duration), padding var(--duration), box-shadow var(--duration);
}
.nav.scrolled {
  background: rgba(12,12,12,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--dark-4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--duration);
}
.nav__logo span { color: var(--primary); }
.nav__logo:hover { color: var(--light-muted); }

/* Links */
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-muted);
  transition: color var(--duration);
  position: relative;
}
.nav__links li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--duration) var(--ease);
}
.nav__links li a:hover { color: var(--light); }
.nav__links li a:hover::after { width: 100%; }

/* CTA nav button */
.nav__cta {
  background: var(--primary) !important;
  color: var(--light) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  box-shadow: 0 3px 14px var(--primary-glow);
  transition: all var(--duration) var(--ease) !important;
}
.nav__cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow) !important;
}
.nav__cta::after { display: none; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Replace hero background image here */
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,12,12,0.93) 0%,
    rgba(12,12,12,0.65) 55%,
    rgba(12,12,12,0.4) 100%
  );
}

.hero__accent {
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 4px;
  background: var(--primary);
  transform: skewX(-8deg);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  transition-delay: 0.1s;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition-delay: 0.2s;
}
.hero__headline em {
  font-style: italic;
  color: var(--primary);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 38px;
  line-height: 1.7;
  transition-delay: 0.3s;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  transition-delay: 0.4s;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  transition-delay: 0.5s;
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.hero__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
}
.hero__stat-divider {
  width: 1px; height: 40px;
  background: var(--dark-4);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--light);
  border-radius: 2px;
  opacity: 0;
  animation: scrollDots 1.5s ease-in-out infinite;
}
.hero__scroll span:nth-child(2) { animation-delay: 0.2s; }
.hero__scroll span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollDots {
  0%, 100% { opacity: 0; transform: scaleY(0.5); }
  50%       { opacity: 0.6; transform: scaleY(1); }
}

/* ================================================================
   BENEFITS
   ================================================================ */
.benefits { background: var(--dark-2); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--duration) var(--ease),
              border-color var(--duration),
              box-shadow var(--duration);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
  width: 52px; height: 52px;
  background: var(--light-faint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
  transition: background var(--duration);
}
.benefit-card:hover .benefit-card__icon { background: rgba(232,53,10,0.15); }
.benefit-card__icon svg { width: 26px; height: 26px; }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--light-muted);
  line-height: 1.65;
}

/* ================================================================
   PROGRAMS
   ================================================================ */
.programs { background: var(--dark); }

.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.program-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.program-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,12,12,0.9) 100%);
}

.program-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 1;
  background: var(--primary);
  color: var(--light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.program-card__body { padding: 26px 26px 28px; }
.program-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.program-card__body p {
  font-size: 0.88rem;
  color: var(--light-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ================================================================
   TRANSFORMATIONS
   ================================================================ */
.transformations { background: var(--dark-2); }

.transforms__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.transform-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.transform-card__before,
.transform-card__after {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.transform-card__before img,
.transform-card__after img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.transform-card__before img { filter: grayscale(0.65); }

.transform-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(12,12,12,0.85);
  color: var(--light-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.transform-label--after {
  background: var(--primary);
  color: var(--light);
}

.transform-card__info { display: flex; gap: 28px; }
.transform-stat { display: flex; flex-direction: column; }
.transform-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.transform-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-muted);
}

/* Pull quote */
.transform-quote { position: relative; }
.transform-quote__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -30px;
}
.transform-quote blockquote {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}
.transform-quote cite {
  display: flex; flex-direction: column; gap: 4px;
  font-style: normal; margin-bottom: 20px;
}
.transform-quote cite strong { font-size: 0.95rem; font-weight: 600; }
.transform-quote cite span {
  font-size: 0.78rem; color: var(--light-muted); letter-spacing: 0.04em;
}
.transform-quote__stars {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

/* ================================================================
   TESTIMONIALS SLIDER
   ================================================================ */
.testimonials { background: var(--dark); overflow: hidden; }

.testimonials__slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.testimonials__track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-slide p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
}
.testimonial-slide cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--light-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial-slide cite strong { color: var(--primary); }

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 10px;
}
.testimonials__btn {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: var(--light);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--duration);
  display: flex; align-items: center; justify-content: center;
}
.testimonials__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-4);
  cursor: pointer;
  transition: background var(--duration), transform var(--duration);
}
.testimonials__dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ================================================================
   MEMBERSHIP
   ================================================================ */
.membership { background: var(--dark-2); }

.membership__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.membership-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}
.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.membership-card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--dark-3) 0%, rgba(232,53,10,0.06) 100%);
  box-shadow: 0 0 0 1px var(--primary), 0 16px 50px rgba(232,53,10,0.2);
}
.membership-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--light);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.membership-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.membership-card__header p {
  font-size: 0.8rem; color: var(--light-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.membership-card__price {
  display: flex; align-items: baseline; gap: 4px;
}
.membership-card__price .price {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.membership-card__price .period { font-size: 0.85rem; color: var(--light-muted); }

.membership-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.membership-card__features li { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.membership-card__features li.disabled { color: var(--dark-4); }

.membership__promo {
  display: flex;
  align-items: center; justify-content: space-between;
  gap: 20px;
  background: linear-gradient(100deg, rgba(232,53,10,0.12) 0%, rgba(232,53,10,0.04) 100%);
  border: 1px solid rgba(232,53,10,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.membership__promo p { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

/* ================================================================
   LOCATION
   ================================================================ */
.location { background: var(--dark); }

.location__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.location__map {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-4);
  background: var(--dark-3);
}
.location__map iframe {
  width: 100%; height: 100%;
  filter: invert(0.88) hue-rotate(180deg) saturate(0.5);
}
.location__info { display: flex; flex-direction: column; gap: 32px; }
.location__block h4 {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.location__block p { font-size: 0.92rem; color: var(--light-muted); line-height: 1.75; }
.location__block a { color: var(--light); transition: color var(--duration); }
.location__block a:hover { color: var(--primary); }
.location__block em { color: var(--primary); font-style: normal; font-size: 0.82rem; }

/* ================================================================
   CONTACT / LEAD FORM
   ================================================================ */
.contact { background: var(--dark-2); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact__sub {
  font-size: 0.92rem; color: var(--light-muted);
  line-height: 1.75;
  margin-top: 18px; margin-bottom: 28px;
}
.contact__perks { display: flex; flex-direction: column; gap: 10px; }
.contact__perks li { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* Form */
.contact__form-wrap { position: relative; }
.contact__form {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light-muted);
}
.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--duration), box-shadow var(--duration);
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-note {
  font-size: 0.75rem; color: var(--light-muted);
  text-align: center; letter-spacing: 0.03em;
}

/* Success */
.contact__success {
  position: absolute; inset: 0;
  background: var(--dark-3);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.contact__success[hidden] { display: none; }
.contact__success-inner { text-align: center; padding: 40px; }
.success-icon {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: rgba(232,53,10,0.15);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 1.6rem; color: var(--primary);
  margin: 0 auto 20px;
}
.contact__success-inner h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  text-transform: uppercase; margin-bottom: 10px;
}
.contact__success-inner p {
  font-size: 0.9rem; color: var(--light-muted); line-height: 1.65;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--dark-4);
  padding: 70px 0 32px;
}
.footer__top {
  display: flex; align-items: center;
  gap: 28px; margin-bottom: 52px; flex-wrap: wrap;
}
.footer__logo { font-size: 1.5rem; }
.footer__tagline { font-size: 0.82rem; color: var(--light-muted); flex: 1; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  color: var(--light-muted);
  transition: all var(--duration);
}
.footer__social svg { width: 17px; height: 17px; }
.footer__social:hover {
  background: var(--primary); border-color: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--primary-glow);
}
.footer__mid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
  margin-bottom: 32px;
}
.footer__col h5 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light-muted); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  transition: color var(--duration);
}
.footer__col ul li a:hover { color: var(--light); }
.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__credit a { color: var(--primary); transition: opacity var(--duration); }
.footer__credit a:hover { opacity: 0.7; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 960px)
   ================================================================ */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .transforms__layout,
  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .location__layout { grid-template-columns: 1fr; }
  .location__map { height: 320px; }
  .footer__mid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 700px)
   ================================================================ */
@media (max-width: 700px) {
  section { padding: 64px 0; }

  /* Nav */
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: rgba(12,12,12,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 80px 32px 40px;
    transition: right var(--duration) var(--ease);
    border-left: 1px solid var(--dark-4);
    align-items: flex-start;
  }
  .nav__links.open { right: 0; }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--dark-4); }
  .nav__links li a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav__cta { margin-top: 16px; }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero__headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .hero__stats { gap: 16px; }

  /* Grids */
  .benefits__grid,
  .programs__grid,
  .membership__grid { grid-template-columns: 1fr; }

  /* Membership promo */
  .membership__promo { flex-direction: column; text-align: center; }

  /* Form */
  .contact__form { padding: 28px 22px; }

  /* Footer */
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .footer__mid { grid-template-columns: 1fr; }
}
