/* ============================================
   OUTWORK THE FITNESS STUDIO — MAIN STYLESHEET
   outworkfitness.in
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-mid: #1a1a1a;
  --black-border: #222222;
  --gray-dark: #333333;
  --gray-mid: #666666;
  --gray-light: #999999;
  --gray-faint: #c8c8c8;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --nav-height: 72px;
  --section-pad: 120px;
  --container: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s;
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid var(--black);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { background: var(--black); color: var(--white); }

.btn-sm { padding: 12px 24px; font-size: 10px; }
.btn-full { width: 100%; text-align: center; }

/* ==================== NAV ==================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 1px 0 var(--black-border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* Fallback text if image missing */
}
.logo-img[src="assets/logos/logo-white.png"]:not([complete]),
.logo-img[src="assets/logos/logo-white.png"][naturalWidth="0"] {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-cta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--off-white); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 48px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 20px;
  color: var(--gray-light);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gray-faint); }
.mobile-cta { margin-top: 48px; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 48px 80px;
  overflow: hidden;
  background: var(--black);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero video column */
.hero-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9/16;
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--gray-dark);
}

.hero-video-placeholder p {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-video-col {
    display: none;
  }
}

.hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.7) 75%,
    rgba(10,10,10,0.95) 100%
  );
}

/* When no image is present, show dark bg with subtle texture */
.hero-media-wrap:not(:has(.hero-bg-img[complete])) {
  background: var(--black-soft);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-faint);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  white-space: nowrap;
}
.hero-line { display: inline; }
.hero-line--serif {
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
}

.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo {
  height: clamp(80px, 12vw, 160px);
  width: auto;
  object-fit: contain;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gray-faint);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
}

/* ==================== MARQUEE ==================== */
.marquee-bar {
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  background: var(--black-soft);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-bar:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0 20px;
}
.marquee-inner .dot {
  color: var(--gray-dark);
  padding: 0 4px;
  font-size: 8px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== SECTIONS ==================== */
.section { padding: var(--section-pad) 0; }

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--gray-faint);
}

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

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

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--black-border);
}

.program-card {
  padding: 28px 28px;
  border-right: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s var(--ease);
}
.program-card:nth-child(3n) { border-right: none; }
.program-card:nth-last-child(-n+3) { border-bottom: none; }

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--white);
  transition: height 0.4s var(--ease);
}
.program-card:hover { background: var(--black-soft); }
.program-card:hover::before { height: 100%; }
.program-card:hover .program-arrow { color: var(--white); transform: translate(3px, -3px); }

.program-num {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black-border);
  margin-bottom: 16px;
}
.program-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.program-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray-mid);
  font-weight: 300;
}
.program-arrow {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  color: var(--gray-dark);
  transition: color 0.2s, transform 0.2s var(--ease);
}

/* ==================== ABOUT ==================== */
.about-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

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

.about-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--black-mid);
  overflow: hidden;
}
.about-photo-wrap.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-border);
}
.about-photo-wrap.no-image::after {
  content: 'Gym photo here';
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-dark);
  text-transform: uppercase;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-photo-wrap:hover .about-photo { transform: scale(1.03); }

.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-faint);
}
.caption-icon { width: 20px; height: 20px; object-fit: contain; }

.about-content { }
.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-mid);
  font-weight: 300;
  margin-top: 28px;
  margin-bottom: 16px;
}

.about-values { margin-top: 48px; margin-bottom: 40px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--black-border);
}
.about-value:first-child { border-top: 1px solid var(--black-border); }
.value-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-dark);
  min-width: 28px;
  padding-top: 2px;
}
.value-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-faint);
  line-height: 1.5;
}

/* ==================== GALLERY ==================== */
/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  padding: var(--section-pad) 0 0;
  border-top: 1px solid var(--black-border);
  background: var(--black);
}
.testimonials-track-wrap {
  position: relative;
  margin-top: 48px;
}
.testimonials-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding-bottom: 2px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--gray-dark); }

.testimonial-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--black-mid);
  overflow: hidden;
}
.testimonial-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.testimonial-iframe.active {
  opacity: 1;
  pointer-events: all;
}
.testimonial-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35) center/cover no-repeat;
  transition: opacity 0.3s;
}
.testimonial-overlay.hidden { opacity: 0; pointer-events: none; }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.testimonial-card:hover .play-btn { transform: scale(1.08); }

.testimonial-info {
  padding: 20px 24px;
  border-top: 1px solid var(--black-border);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.testimonial-tag {
  font-size: 12px;
  color: var(--gray-mid);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Coming soon placeholder card */
.testimonial-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-mid);
  border: 1px dashed var(--gray-dark);
}
.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray-dark);
  text-align: center;
  padding: 24px;
}
.coming-soon-inner p {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}
.testimonial-coming-soon { cursor: default; }
.testimonial-coming-soon:hover { transform: none; }

/* Scroll arrows */
.track-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.15s;
}
.track-arrow:hover { background: var(--off-white); transform: translateY(-50%) scale(1.05); }
.track-arrow--left { left: 16px; }
.track-arrow--right { right: 16px; }

/* ==================== LOCATIONS ==================== */
.locations-section {
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--black-border);
}

.location-card {
  background: var(--black);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.location-card:hover { background: var(--black-soft); }

.location-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border: 1px solid var(--black-border);
  padding: 5px 12px;
  margin-bottom: 32px;
}
.location-main .location-tag {
  border-color: var(--white);
  color: var(--white);
}

.location-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.location-area {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.location-details { display: flex; flex-direction: column; gap: 18px; }
.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gray-mid);
  margin-top: 2px;
}
.location-details li span,
.location-details li a {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-mid);
  font-weight: 300;
}
.location-details li a:hover { color: var(--white); }

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 4px;
  transition: border-color 0.2s, gap 0.2s;
}
.location-cta:hover { border-color: var(--white); gap: 12px; }

.location-num {
  position: absolute;
  bottom: 36px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: var(--black-border);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.3s;
}
.location-card:hover .location-num { color: var(--black-mid); }

/* ==================== MEMBERSHIP BANNER ==================== */
.membership-banner {
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 80px 0;
}
.membership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.membership-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.membership-title em { font-style: italic; font-weight: 300; }
.membership-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 400px;
}
.membership-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ==================== CONTACT ==================== */
.contact-section {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact-info-list { margin-top: 48px; }
.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ci-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.ci-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-faint);
  transition: color 0.2s;
}
.ci-value:hover { color: var(--white); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

input, select, textarea {
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: var(--gray-dark); }
input:focus, select:focus, textarea:focus { border-color: var(--gray-mid); }
select { cursor: pointer; }
select option { background: var(--black); }
textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 11px;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
  color: var(--gray-dark);
  transition: color 0.2s;
}
.social-link:hover { color: var(--white); }

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links li {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mid);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-phone {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-top: 12px;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-inner span {
  font-size: 11px;
  color: var(--gray-dark);
  letter-spacing: 0.05em;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:nth-child(3n) { border-right: 1px solid var(--black-border); }
  .program-card:nth-child(2n) { border-right: none; }
  .program-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--black-border); }
  .program-card:nth-last-child(-n+2) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; --nav-height: 60px; }
  .container { padding: 0 24px; }
  .nav-links, .btn-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: calc(var(--nav-height) + 40px) 24px 60px; }
  .hero-stats { gap: 32px; }
  .hero-scroll-hint { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card:nth-child(n) { border-right: none; border-bottom: 1px solid var(--black-border); }
  .program-card:last-child { border-bottom: none; }
  .locations-grid { grid-template-columns: 1fr; }
  .membership-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .nav-inner { padding: 0 24px; }
  .gallery-slide { flex: 0 0 80%; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-actions .btn-primary { width: 100%; text-align: center; }
  .mobile-menu { padding: 60px 24px; }
  .mobile-link { font-size: 36px; }
}
