/* ═══════════════════════════════════════════════════
   ONE MORE REP FITNESS STUDIO — Complete Redesign
   Color Palette: Red, Grey, Black
   ═══════════════════════════════════════════════════ */

/* ── CSS RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core Palette */
  --black: #0a0a0a;
  --black-deep: #050505;
  --black-card: #111111;
  --black-surface: #161616;
  --charcoal: #1a1a1a;
  --charcoal-light: #222222;
  --grey-dark: #2a2a2a;
  --grey: #333333;
  --grey-mid: #555555;
  --grey-light: #888888;
  --grey-lighter: #aaaaaa;
  --white: #ffffff;
  --white-95: rgba(255,255,255,0.95);
  --white-90: rgba(255,255,255,0.90);
  --white-80: rgba(255,255,255,0.80);
  --white-70: rgba(255,255,255,0.70);
  --white-60: rgba(255,255,255,0.60);
  --white-50: rgba(255,255,255,0.50);
  --white-40: rgba(255,255,255,0.40);
  --white-30: rgba(255,255,255,0.30);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-05: rgba(255,255,255,0.05);

  /* Accent */
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-light: #EF4444;
  --red-glow: rgba(220, 38, 38, 0.4);
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --amber: #F59E0B;
  --cyan: #06B6D4;

  /* Typography */
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Oswald', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.hl { color: var(--red); }


/* ═══════════════════════════════════════════════════
   SECTION LABELS & TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 600px;
}


/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out-quart);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--white-05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.logo-text .red {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-70);
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.nav-cta svg {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}


/* ═══════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: transparent;
  padding: 100px 0 80px;
  z-index: 1;
}

.hero__glow-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Site-wide fixed background */
.site-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.site-fixed-bg picture,
.site-fixed-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
}

.site-fixed-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.50);
}

/* Make all sections transparent and layered above the fixed background */
.hero,
.why-us,
.programs,
.recovery,
.ai-section,
.motivation,
.about,
.location,
.hiring,
.footer {
  background: transparent !important;
  position: relative;
  z-index: 2;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 650px;
}

/* Rating */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
}

.hero__rating-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white-80);
  letter-spacing: 0.06em;
}

/* Hero Text */
.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title .text-red {
  color: var(--red);
  text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.hero__desc {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Hero CTA */
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out-quart);
  letter-spacing: 0.06em;
}

.btn--primary {
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn--outline {
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--white-20);
  color: var(--white);
  font-size: 0.85rem;
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(220,38,38,0.05);
  transform: translateY(-2px);
}

.btn--secondary {
  padding: 14px 28px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white);
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(220,38,38,0.05);
  transform: translateY(-2px);
}

.btn--gold {
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
}

.btn--gold:hover {
  background: var(--red-dark);
}

.btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════
   2. WHY WE'RE NOT JUST ANOTHER GYM
   ═══════════════════════════════════════════════════ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  z-index: 2;
}

.why-us__header {
  margin-bottom: 56px;
}

.why-us__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.why-us__sub {
  font-size: 1rem;
  color: var(--white-50);
  max-width: 550px;
  line-height: 1.7;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
}

.why-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(220,38,38,0.1);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(220,38,38,0.1);
  border-radius: var(--radius-sm);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card__title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white-95);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════
   3. PROGRAMS / FACILITIES GRID
   ═══════════════════════════════════════════════════ */
.programs {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  z-index: 2;
}

.programs__header {
  margin-bottom: 56px;
}

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

.program-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  border: 1px solid var(--white-05);
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.program-card__img {
  position: absolute;
  inset: 0;
}

.program-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.program-card:hover .program-card__img img {
  transform: scale(1.08);
}

.program-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.3) 50%,
    transparent 100%
  );
  z-index: 1;
}

.program-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.program-card__name {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════
   4. PREMIUM RECOVERY (STEAM & ICE BATH)
   ═══════════════════════════════════════════════════ */
.recovery {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.recovery__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.recovery__glow--1 {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.recovery__glow--2 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
}

.recovery__inner {
  position: relative;
  z-index: 1;
}

.recovery__header {
  text-align: center;
  margin-bottom: 56px;
}

.recovery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.recovery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  border: 1px solid var(--white-05);
  transition: all 0.5s var(--ease-out-expo);
}

.recovery-card:hover {
  transform: translateY(-6px);
}

.recovery-card--steam:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.recovery-card--ice:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.recovery-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recovery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.recovery-card:hover .recovery-card__img img {
  transform: scale(1.05);
}

.recovery-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 5, 8, 0.96) 0%,
    rgba(5, 5, 8, 0.60) 45%,
    rgba(5, 5, 8, 0.15) 100%
  );
}

.recovery-card__content {
  position: relative;
  z-index: 2;
}

.recovery-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.recovery-card--steam .recovery-card__tag { color: var(--amber); }
.recovery-card--ice .recovery-card__tag { color: var(--cyan); }

.recovery-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.recovery-card__desc {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.6;
  max-width: 400px;
}

/* Booking Notice */
.recovery-card__booking {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.recovery-card--steam .recovery-card__booking {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.06);
}

.recovery-card--ice .recovery-card__booking {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.06);
}

.recovery-card__booking-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  margin-top: 2px;
}

.recovery-card--steam .recovery-card__booking-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
}

.recovery-card--ice .recovery-card__booking-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
}

.recovery-card__booking-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recovery-card__booking-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white-90);
}

.recovery-card__booking-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-60);
  transition: color 0.3s ease;
}

.recovery-card--steam .recovery-card__booking-phone:hover {
  color: var(--amber);
}

.recovery-card--ice .recovery-card__booking-phone:hover {
  color: var(--cyan);
}

.recovery-card__booking-phone svg {
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   5. AI BODY COMPOSITION
   ═══════════════════════════════════════════════════ */
.ai-section {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  z-index: 2;
}

.ai-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ai-section__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--white-10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.ai-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-section__scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 20px 4px var(--red-glow);
  animation: scan-line 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes scan-line {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

.ai-section__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--white-10);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white-80);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink-dot 2s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ai-section__content {
  display: flex;
  flex-direction: column;
}

.ai-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 20px;
}

.ai-section__desc {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.ai-section__metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.ai-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-metric__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
}

.ai-metric__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-40);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════
   6. MOTIVATIONAL SPLIT SECTION
   ═══════════════════════════════════════════════════ */
.motivation {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  z-index: 2;
}

.motivation__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.motivation__content {}

.motivation__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.motivation__title .text-red {
  color: var(--red);
}

.motivation__desc {
  font-size: 1rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 32px;
}

.motivation__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.motivation__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--white-80);
  font-weight: 500;
}

.motivation__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.motivation__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
}

.motivation__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--white-10);
}

.motivation__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.motivation__visual:hover img {
  transform: scale(1.04);
}


/* ═══════════════════════════════════════════════════
   7. ABOUT SECTION
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  z-index: 2;
}

.about__grid {
  display: block;
  max-width: 920px;
  margin: 0 auto;
}

.about__visual {
  position: relative;
  height: 540px;
}

.about__visual--collage {
  display: block;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 75%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about__img-main img,
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about__img-main:hover img,
.about__img-secondary:hover img {
  transform: scale(1.05);
}

.about__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 55%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--red);
  box-shadow: 0 20px 50px rgba(230, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.about__visual-badge {
  position: absolute;
  top: 32px;
  right: 12px;
  z-index: 3;
  background: var(--black-card);
  border: 1px solid var(--white-20);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.05em;
}

.about__badge-text {
  font-size: 0.7rem;
  color: var(--white-80);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about__content {}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 20px;
}

.about__desc {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__highlights {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white-40);
  text-transform: uppercase;
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════
   8. LOCATION
   ═══════════════════════════════════════════════════ */
.location {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  z-index: 2;
}

.location__header {
  margin-bottom: 48px;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__name {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-95);
  display: flex;
  align-items: center;
  gap: 12px;
}

.location__name svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.location__address {
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.8;
}

.location__divider {
  width: 60px;
  height: 1px;
  background: var(--white-10);
}

.location__contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location__hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location__batch-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--white-50);
  line-height: 1.7;
}

.location__batch-list li {
  position: relative;
  padding-left: 14px;
}

.location__batch-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.location__batch-list strong {
  color: var(--white-90);
}

.location__contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.location__contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-40);
  text-transform: uppercase;
}

.location__contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white-90);
}

.location__contact-value:hover {
  color: var(--red);
}

.location__map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--white-10);
}

.location__map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: grayscale(1) invert(1) contrast(1.2) brightness(0.7);
}

.location__map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-80);
  transition: all 0.3s ease;
}

.location__map-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.location__map-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ═══════════════════════════════════════════════════
   9. JOIN TEAM / HIRING
   ═══════════════════════════════════════════════════ */
.hiring {
  padding: var(--section-pad) 0;
  background: var(--black);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hiring__card {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-xl);
  transition: border-color 0.4s ease;
}

.hiring__card:hover {
  border-color: var(--red);
}

.hiring__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.hiring__desc {
  font-size: 1rem;
  color: var(--white-50);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}


/* ═══════════════════════════════════════════════════
   10. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 72px 0 0;
  background: var(--black-deep);
  border-top: 1px solid var(--white-05);
  position: relative;
  z-index: 2;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand {}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--white-60);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.6;
  max-width: 300px;
}

.footer__col {}

.footer__col-title {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white-90);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links li a {
  font-size: 0.85rem;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.footer__links li a:hover {
  color: var(--red);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact a {
  font-size: 0.88rem;
  color: var(--white-60);
}

.footer__contact a:hover {
  color: var(--red);
}

.footer__address {
  font-size: 0.82rem;
  color: var(--white-30);
  line-height: 1.6;
  margin-top: 4px;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white-05);
  border: 1px solid var(--white-05);
  transition: all 0.3s ease;
}

.footer__social-icon:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer__social-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white-70);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-icon:hover svg {
  stroke: var(--white);
}

.footer__handle {
  font-size: 0.82rem;
  color: var(--white-40);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--white-05);
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--white-30);
}

.footer__motto {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white-30);
  text-transform: uppercase;
}

.footer__motto .red {
  color: var(--red);
}


/* ═══════════════════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white-70);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top:hover svg {
  stroke: var(--white);
}

.wa-float,
.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.wa-float:hover,
.floating-contact:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg,
.floating-contact svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}


/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ai-section__grid,
  .motivation__grid,
  .about__grid,
  .location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    padding-top: 72px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    color: var(--white-60);
  }

  .nav-links a:hover {
    color: var(--white);
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 80px 0 60px;
  }

  .hero__title {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }

  /* Why Us */
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 20px;
  }

  /* Programs */
  .programs__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .program-card {
    height: 280px;
  }

  /* Recovery */
  .recovery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recovery-card {
    height: 380px;
  }

  /* AI Section */
  .ai-section__visual {
    height: 320px;
  }

  .ai-section__metrics {
    gap: 24px;
  }

  /* Motivation */
  .motivation__visual {
    height: 380px;
  }

  /* About */
  .about__visual {
    height: 400px;
  }

  .about__highlights {
    gap: 24px;
  }

  /* Location */
  .location__map-wrap {
    min-height: 300px;
  }

  .location__map-wrap iframe {
    min-height: 300px;
  }

  /* Hiring */
  .hiring__card {
    padding: 40px 28px;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .program-card {
    height: 260px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn--primary,
  .btn--outline {
    width: 100%;
    justify-content: center;
  }
}
