/* ============================================
   GENTRY GYM — STYLESHEET
   Dark theme + red, black & white accent
   Full animations: scroll reveals, hover fx,
   video overlays, carousel, parallax
   ============================================ */

/* ----- Design Tokens ----- */
:root {
  /* Colors — Red, black & white palette */
  --color-bg:           #0a0a0a;
  --color-bg-alt:       #0e0e0e;
  --color-bg-card:      #141414;
  --color-bg-elevated:  #181818;
  --color-surface:      #1c1c1c;
  --color-border:       #252525;
  --color-border-light: #333333;

  --color-text:         #f0f0f0;
  --color-text-muted:   #999999;
  --color-text-dim:     #555555;

  --color-accent:       #c41e2a;
  --color-accent-hover: #e02535;
  --color-accent-light: #d93243;
  --color-accent-dark:  #8b1520;
  --color-accent-glow:  rgba(196, 30, 42, 0.25);
  --color-image-glow:   rgba(196, 30, 42, 0.35);

  --color-white:        #ffffff;
  --color-black:        #000000;

  /* Typography */
  --font-display:   'Oswald', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max:  1200px;
  --container-wide: 1400px;
  --header-height:  80px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.2s ease;
  --t-base:   0.35s var(--ease-out-expo);
  --t-slow:   0.6s var(--ease-out-expo);
  --t-reveal: 0.8s var(--ease-out-expo);

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


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }
strong  { font-weight: 700; }


/* ============================================
   UTILITIES
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: var(--space-md); }

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

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2xl);
  text-align: center;
  color: var(--color-white);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out-expo);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Shimmer hover effect on buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after {
  left: 100%;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.btn--lg {
  font-size: 1rem;
  padding: 1em 2.5em;
}

.btn--full { width: 100%; }


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  overflow: visible;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s var(--ease-out-expo);
}
.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom-color: rgba(255,255,255,0.06);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo-img {
  height: 90px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease-out-back);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
}
.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

.header__nav-list {
  display: flex;
  gap: var(--space-xl);
}

.header__nav-link {
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding: 4px 0;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-light);
  transition: width 0.35s var(--ease-out-expo);
}
.header__nav-link:hover {
  color: var(--color-white);
}
.header__nav-link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.header__cta {
  font-size: 0.8rem;
  padding: 0.7em 1.8em;
}

/* Hamburger */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.header__menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}
.header__menu-toggle--active .header__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle--active .header__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-toggle--active .header__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  z-index: 9999;
  background: linear-gradient(165deg, #1a1a1a 0%, #0a0a0a 50%, #1a0a0c 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: var(--space-2xl) 0;
}
.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}
.mobile-nav__logo img {
  height: 60px;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.mobile-nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: all 0.3s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav--open .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered entrance for mobile links */
.mobile-nav--open .mobile-nav__list li:nth-child(1) .mobile-nav__link { transition-delay: 0.1s; }
.mobile-nav--open .mobile-nav__list li:nth-child(2) .mobile-nav__link { transition-delay: 0.15s; }
.mobile-nav--open .mobile-nav__list li:nth-child(3) .mobile-nav__link { transition-delay: 0.2s; }
.mobile-nav--open .mobile-nav__list li:nth-child(4) .mobile-nav__link { transition-delay: 0.25s; }
.mobile-nav--open .mobile-nav__list li:nth-child(5) .mobile-nav__link { transition-delay: 0.3s; }

.mobile-nav__link:hover {
  color: var(--color-accent-light);
}
.mobile-nav__cta {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-out-expo) 0.35s;
}
.mobile-nav--open .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.4) 65%,
    rgba(10,10,10,1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
}

/* Staggered hero entrance animations */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.02;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1s var(--ease-out-expo) 0.3s forwards;
}

.hero__subtitle {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.9);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s var(--ease-out-expo) 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
  animation: heroReveal 1s var(--ease-out-expo) 0.7s forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out-expo) 1.2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 55px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-accent-light));
  animation: scrollDrop 2s ease-in-out infinite;
}

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


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 0 15px 3px var(--color-accent-glow);
  transition: box-shadow 0.5s var(--ease-out-expo);
}
.service-card:hover {
  box-shadow: 0 0 30px 12px rgba(196, 30, 42, 0.4);
}

.service-card__img-wrap {
  position: absolute;
  inset: 0;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.08) 100%
  );
  transition: all 0.5s var(--ease-out-expo);
}

.service-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.9);
  transition: all 0.4s var(--ease-out-expo);
}

/* Hover: image zoom + overlay darken + title color shift + underline */
.service-card:hover .service-card__img {
  transform: scale(1.1);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(196,30,42,0.45) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
.service-card:hover .service-card__title {
  transform: translateY(-6px);
  color: var(--color-accent-light);
}

/* Stagger cards on reveal */
.service-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}
.services.reveal--visible .service-card {
  opacity: 1;
  transform: translateY(0);
}
.services.reveal--visible .service-card:nth-child(1) { transition-delay: 0.05s; }
.services.reveal--visible .service-card:nth-child(2) { transition-delay: 0.1s; }
.services.reveal--visible .service-card:nth-child(3) { transition-delay: 0.15s; }
.services.reveal--visible .service-card:nth-child(4) { transition-delay: 0.2s; }
.services.reveal--visible .service-card:nth-child(5) { transition-delay: 0.25s; }
.services.reveal--visible .service-card:nth-child(6) { transition-delay: 0.3s; }
.services.reveal--visible .service-card:nth-child(7) { transition-delay: 0.35s; }
.services.reveal--visible .service-card:nth-child(8) { transition-delay: 0.4s; }


/* ============================================
   EQUIPMENT (Video Banner)
   ============================================ */
.equipment {
  position: relative;
  min-height: 125vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.equipment__video-wrap {
  position: absolute;
  inset: 0;
}
.equipment__video,
.equipment__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipment__poster { position: absolute; inset: 0; }
.equipment__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.85) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.equipment__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.9);
}
.equipment__text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-white);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.5;
}


/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: var(--space-5xl) 0;
  background: linear-gradient(to bottom, #0a0a0a, #2a1015);
}
.community__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.community__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.community__text-block .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}
.community__desc {
  color: var(--color-white);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}
.community__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.community__gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: all 0.5s var(--ease-out-expo);
  filter: brightness(0.85);
  box-shadow: 0 0 15px 1px var(--color-image-glow);
}
.community__gallery-grid img:hover {
  transform: scale(1.04);
  filter: brightness(1);
  box-shadow: 0 0 40px 14px var(--color-image-glow);
}


/* ============================================
   OUR STORY
   ============================================ */
.story {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-alt);
}
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.story__text-block .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}
.story__text {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.story__text:last-child { margin-bottom: 0; }

.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story__video {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 550px;
}
/* Red glow ring around story video */
.story__media::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-accent);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.story__media:hover::after {
  opacity: 0.6;
}


/* ============================================
   VISIT US
   ============================================ */
.visit {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.visit__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  padding: var(--space-4xl) var(--space-xl);
}
.visit__bg {
  position: absolute;
  inset: 0;
}
.visit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}
.visit__content {
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.9);
}
.visit__address {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.visit__phone {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  color: var(--color-accent-light);
  margin-bottom: var(--space-2xl);
  transition: color var(--t-fast);
}
.visit__phone:hover { color: var(--color-accent-hover); }
.visit__hours-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}
.visit__hours p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}
.visit__hours { margin-bottom: var(--space-2xl); }

.visit__map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}


/* ============================================
   MEMBERSHIPS
   ============================================ */
.memberships {
  padding: var(--space-5xl) 0;
  background: linear-gradient(to right, #000000, #3d0a10);
}
.memberships__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.membership-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}
/* Subtle top glow on hover */
.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.membership-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.membership-card:hover::before { opacity: 1; }

.membership-card--featured {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
}
.membership-card--featured::before { opacity: 0.5; }
.membership-card--featured:hover {
  border-color: var(--color-accent-hover);
  box-shadow: 0 16px 50px var(--color-accent-glow);
}

.membership-card__badge {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}
.membership-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}
.membership-card__price { margin-bottom: var(--space-xl); }
.membership-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
}
.membership-card__period {
  font-size: 1rem;
  color: var(--color-text-muted);
}
.membership-card__features {
  flex: 1;
  margin-bottom: var(--space-xl);
}
.membership-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}
.membership-card__features li:last-child { border-bottom: none; }
.membership-card__features li i {
  color: var(--color-accent-light);
  font-size: 0.75rem;
  margin-top: 5px;
  flex-shrink: 0;
}


/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.reviews {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-alt);
}
.reviews__carousel {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.reviews__track {
  display: flex;
  transition: transform 0.6s var(--ease-out-expo);
}
.review-card {
  min-width: 100%;
  text-align: center;
  padding: var(--space-xl);
}
.review-card__stars {
  font-size: 1.5rem;
  color: var(--color-accent-light);
  letter-spacing: 4px;
  margin-bottom: var(--space-lg);
}
.review-card__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0 auto var(--space-xl);
  max-width: 550px;
}
.review-card__author {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.reviews__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: all 0.3s var(--ease-out-expo);
}
.reviews__arrow:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--color-accent-glow);
}
.reviews__dots { display: flex; gap: var(--space-sm); }
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  transition: all 0.35s var(--ease-out-expo);
}
.reviews__dot--active {
  background: var(--color-accent-light);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--color-accent-glow);
}


/* ============================================
   SOCIAL / FOLLOW US
   ============================================ */
.social {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
  text-align: center;
}
.social__links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}
.social__link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-text-muted);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
}
/* Red ring pulse on hover */
.social__link::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s var(--ease-out-expo);
}
.social__link:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--color-accent-glow);
}
.social__link:hover::after {
  opacity: 0.5;
  transform: scale(1);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-alt);
}
.faq__category { margin-bottom: var(--space-3xl); }
.faq__category-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
  transition: color var(--t-fast);
}
.faq__question:hover { color: var(--color-accent-light); }
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--space-md);
}
.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--color-accent-light);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo),
              padding 0.5s var(--ease-out-expo);
}
.faq__item--open .faq__answer {
  max-height: 400px;
  padding-bottom: var(--space-lg);
}
.faq__answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq__contact {
  text-align: center;
  padding-top: var(--space-3xl);
}
.faq__contact h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}
.footer__list li { margin-bottom: var(--space-sm); }
.footer__list a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}
.footer__list a:hover { color: var(--color-accent-light); }
.footer__col--logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer__logo-img {
  height: 100px;
  opacity: 0.5;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
}
.footer__logo-img:hover { opacity: 0.8; }
.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.85rem;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--t-reveal), transform var(--t-reveal);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variant: slide from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
}
.reveal--left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

/* Variant: slide from right */
.reveal--right {
  opacity: 0;
  transform: translateX(60px);
}
.reveal--right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

/* Variant: scale up */
.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
}
.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}


/* ============================================
   PARALLAX (applied via JS)
   ============================================ */
.parallax-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}


/* ============================================
   RESPONSIVE — Tablet (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-toggle { display: flex; }

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

  .community__top { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .community__text-block { align-items: center; text-align: center; }
  .community__text-block .section-title { text-align: center; }

  .visit__layout { grid-template-columns: 1fr; gap: var(--space-2xl); }

  .story__layout { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .story__text-block .section-title { text-align: center; }
  .story__video { max-height: 400px; margin: 0 auto; }

  .memberships__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--logo { grid-column: span 2; justify-content: center; }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 576px)
   ============================================ */
@media (max-width: 576px) {
  :root { --space-xl: 1.25rem; }

  .hero__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions .btn { width: 100%; max-width: 280px; }

  .services__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }

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

  .equipment { min-height: 50vh; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer__col--logo { grid-column: auto; justify-content: center; }
}
