/* ============================================
   PILATES & GO — Premium Editorial 2026
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Satoshi';
  src: url('assets/fonts/Satoshi-Heavy.woff2') format('woff2'),
       url('assets/fonts/Satoshi-Heavy.woff') format('woff');
  font-weight: 900;
  font-display: swap;
}

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

/* --- Design Tokens --- */
:root {
  /* Brand palette (grafikus által) */
  --color-navy: #082340;
  --color-navy-light: #1A3A5C;
  --color-navy-soft: #2A4A6C;
  --color-rose: #EA9DA2;
  --color-rose-soft: #F4CED0;
  --color-rose-deep: #D87E84;
  --color-brown: #895137;
  --color-brown-light: #A66B4A;

  /* Backgrounds */
  --color-bg-dark: #082340;
  --color-bg-dark-warm: #0D2D4F;
  --color-cream: #FAF6F2;
  --color-warm-white: #FFF9F5;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F6F0F8;

  /* Aliases */
  --color-primary: var(--color-navy);
  --color-primary-dark: var(--color-navy);
  --color-primary-light: var(--color-navy-light);
  --color-primary-deep: #051828;
  --color-accent: var(--color-rose);
  --color-accent-soft: var(--color-rose-soft);
  --color-bg-warm: var(--color-brown);

  /* Text */
  --color-text-dark: #082340;
  --color-text-mid: #4A4360;
  --color-text-light: #FFFFFF;
  --color-text-muted: rgba(8, 35, 64, 0.55);

  /* Borders */
  --color-border: rgba(8, 35, 64, 0.12);
  --color-border-warm: rgba(234, 157, 162, 0.25);

  /* Shadows */
  --shadow-soft: 0 4px 24px rgba(8, 35, 64, 0.08), 0 1px 4px rgba(8, 35, 64, 0.06);
  --shadow-lift: 0 12px 48px rgba(8, 35, 64, 0.15), 0 4px 12px rgba(8, 35, 64, 0.08);
  --shadow-glow: 0 0 60px rgba(234, 157, 162, 0.2);
  --shadow-card: 0 8px 32px rgba(8, 35, 64, 0.06), 0 2px 8px rgba(8, 35, 64, 0.04);
  --shadow-dark: 0 20px 60px rgba(5, 10, 20, 0.4), 0 8px 24px rgba(5, 10, 20, 0.2);

  /* Radii */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* Type */
  --font-display: 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --text-lg: clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl: clamp(1.3rem, 1.22rem + 0.4vw, 1.6rem);
  --text-2xl: clamp(1.6rem, 1.48rem + 0.6vw, 2.1rem);
  --text-3xl: clamp(2rem, 1.8rem + 1vw, 3rem);
  --text-display: clamp(3rem, 2.4rem + 2.5vw, 6.5rem);

  /* Layout */
  --max-width: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.4s;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background: var(--color-surface);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-smooth), background var(--dur);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-smooth);
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(234, 157, 162, 0.3), 0 1px 4px rgba(8, 35, 64, 0.2);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(234, 157, 162, 0.45), 0 2px 8px rgba(8, 35, 64, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(234, 157, 162, 0.25);
}

.btn-large { padding: 18px 48px; font-size: var(--text-base); }
.btn-small { padding: 8px 22px; font-size: var(--text-xs); }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(30, 20, 50, 0.05);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--color-primary); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-mid);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--color-primary-dark); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-xs);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  color: var(--color-text-mid);
}
.lang-toggle:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background-image: url('assets/img/about-bg-3x.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(234, 157, 162, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(8, 35, 64, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(8, 35, 64, 0.82) 0%, rgba(13, 45, 79, 0.6) 50%, rgba(8, 35, 64, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: heroFadeIn 1.2s var(--ease-out);
}
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.hero-logo-img { width: 100%; height: 100%; object-fit: cover; }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2.5px;
}
.hero-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(5deg);
  animation: letterReveal 0.7s var(--ease-spring) forwards;
}
@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.92;
  max-width: 500px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}
.wheel {
  display: block;
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* --- Organic Dividers --- */
.wave-divider {
  position: relative;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* --- Sections --- */
.section {
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}

/* Dark section with mesh gradient */
.section-dark {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(234, 157, 162, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(137, 81, 55, 0.06) 0%, transparent 45%),
    var(--color-navy);
  color: #fff;
}
.section-light {
  background: var(--color-surface-alt);
}
.section-warm {
  background: linear-gradient(135deg, #7A4530 0%, #8A5139 50%, #6B3D2A 100%);
  color: #fff;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 52px;
}
.section-title-dark { color: var(--color-text-dark); }
.section-lead {
  text-align: center;
  font-size: var(--text-lg);
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.75;
  opacity: 0.75;
}
.section-lead-dark { color: var(--color-text-dark); opacity: 0.55; }
.section-title-left {
  text-align: left;
  margin-bottom: 24px;
}

/* Eyebrow with serif */
.demo-eyebrow, .eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* --- Feature Grid (Bento) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px;
  margin-top: 20px;
}
.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease-spring), background 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(234, 157, 162, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.feature-card:hover::before { opacity: 1; }

/* 5 cards via flexbox — wraps naturally, centered */

.feature-soon {
  border: 1px dashed rgba(232, 161, 176, 0.3);
}
.soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  color: #ea9ea1;
  margin-bottom: 20px;
  opacity: 1;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: var(--text-sm);
  opacity: 0.5;
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s, border-color 0.35s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: var(--color-border);
}
.pricing-popular {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(234, 157, 162, 0.04) 0%, var(--color-surface) 40%);
}
.pricing-popular:hover {
  transform: translateY(-10px) scale(1.02);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(234, 157, 162, 0.3);
}
.pricing-duration {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--color-text-dark);
}
.pricing-reformer {
  font-size: var(--text-sm);
  opacity: 0.45;
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--color-text-dark);
}
.pricing-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  opacity: 0.4;
  letter-spacing: 1px;
}

/* --- Who It's For --- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.who-card {
  padding: 44px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: transform 0.45s var(--ease-spring), background 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 161, 176, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.who-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 161, 176, 0.15);
}
.who-card:hover::before { opacity: 1; }
.who-icon {
  width: 52px;
  height: 52px;
  color: #ea9ea1;
  margin-bottom: 24px;
  opacity: 1;
}
.who-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  margin-bottom: 14px;
}
.who-card p {
  font-size: var(--text-base);
  opacity: 0.6;
  line-height: 1.7;
}

/* --- Hours --- */
.hours-list {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}
.hours-day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
}
.hours-time {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}
.hours-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Gallery Marquee (auto-scroll) --- */
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.gallery-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
}
.gallery-marquee:hover .gallery-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-marquee-item {
  flex-shrink: 0;
  width: 280px;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s;
  position: relative;
}
.gallery-marquee-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--shadow-lift);
}
.gallery-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* --- Old gallery-carousel (kept for reference, unused) --- */
.gallery-carousel { display: none; }
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}
.gallery-track {
  display: flex;
  transition: transform 0.55s var(--ease-smooth);
  will-change: transform;
}
.gallery-slide {
  min-width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s var(--ease-spring);
  line-height: 1;
}
.gallery-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.12);
}
.gallery-nav:active {
  transform: translateY(-50%) scale(0.92);
}
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 0;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(234, 157, 162, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}
.gallery-dot.active {
  background: var(--color-primary);
  transform: scale(1.4);
  width: 24px;
  border-radius: 4px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 20, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Founder Section --- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.founder-visual {
  display: flex;
  justify-content: center;
}
.founder-img-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(234, 157, 162, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}
.founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(232, 161, 176, 0.15);
  pointer-events: none;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-content .demo-eyebrow {
  margin-bottom: 8px;
}
.founder-text p {
  font-size: var(--text-base);
  line-height: 1.85;
  opacity: 0.85;
  margin-bottom: 18px;
  color: var(--color-rose-soft);
}
.founder-highlight {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  color: #ea9ea1 !important;
  font-size: var(--text-lg) !important;
  line-height: 1.6 !important;
}

/* --- Franchise Section --- */
.section-white { background: var(--color-surface); }
.franchise-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.franchise-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.franchise-feature {
  padding: 36px 24px;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.35s;
  border: 1px solid transparent;
}
.franchise-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border);
}
.franchise-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.franchise-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  margin-bottom: 8px;
}
.franchise-feature p {
  font-size: var(--text-sm);
  opacity: 0.5;
  line-height: 1.6;
}
.franchise-cta {
  margin-top: 40px;
}

/* --- Demo CTA Section --- */
.section-demo {
  background: linear-gradient(135deg, #F4CED0 0%, #FAE6E8 40%, #FFF5F6 100%);
}
  padding: clamp(70px, 10vw, 120px) 0;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text-dark);
}
.demo-lead {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-dark);
  opacity: 0.65;
  margin-bottom: 32px;
}
.demo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.demo-benefits li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: var(--text-base);
  color: var(--color-text-dark);
  opacity: 0.75;
}
.demo-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.demo-btn { margin-bottom: 12px; }
.demo-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  opacity: 0.4;
}
.demo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
}
.demo-img {
  width: 100%;
  max-width: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.demo-badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 48px rgba(234, 157, 162, 0.4);
  animation: floatLogo 5s ease-in-out infinite;
  z-index: 2;
}
.demo-badge-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}
.demo-badge-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* --- Booking Section --- */
.booking-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sportmate-embed {
  max-width: 900px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
}
.sportmate-embed iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}
.booking-fallback {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.booking-fallback p {
  font-size: var(--text-sm);
  opacity: 0.4;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-primary);
  letter-spacing: 0.5px;
}
.contact-item a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text-dark);
  transition: color 0.25s;
}
.contact-item a:hover { color: var(--color-primary); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.35s;
  border: 1px solid var(--color-border);
}
.contact-map:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lift);
}
.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Footer --- */
.footer {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(234, 157, 162, 0.06) 0%, transparent 50%),
    var(--color-navy);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
}
.footer-logo span { color: var(--color-rose); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  opacity: 0.45;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s var(--ease-spring);
  color: rgba(255, 255, 255, 0.6);
}
.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-4px);
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.footer-copy {
  font-size: 0.75rem;
  opacity: 0.25;
  margin-top: 16px;
}
.footer-credit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.4;
  margin-top: 4px;
}
.footer-credit-link {
  color: var(--color-rose);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.footer-credit-link:hover {
  opacity: 1;
  color: var(--color-rose-deep);
}

/* --- Scroll Reveal (Spring) --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-spring);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* --- Old gallery-grid (keep for safety) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.35s;
  aspect-ratio: 3/4;
  max-height: 600px;
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lift);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .pricing-popular { transform: scale(1); }
  .pricing-popular:hover { transform: translateY(-10px); }

  /* Feature grid auto-fits naturally */
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .hero { padding: 100px 20px 70px; }
  .hero-logo { width: 85px; height: 85px; }

  /* Feature grid → 1 col on mobile (auto via minmax) */

  .pricing-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-visual { min-height: 200px; }
  .demo-badge { width: 95px; height: 95px; bottom: -8px; right: 0; }
  .demo-badge-text { font-size: 0.82rem; }
  .demo-badge-sub { font-size: 0.65rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { max-height: 500px; }

  .gallery-marquee-item { width: 200px; height: 270px; }

  .founder-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .founder-img-wrap { width: 200px; height: 200px; margin: 0 auto; }
  .section-title-left { text-align: center; }
  .franchise-features { grid-template-columns: 1fr 1fr; }

  .nav-inner { flex-wrap: wrap; gap: 8px; }
  .nav-logo { font-size: 1.1rem; }

  .hours-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-title { margin-bottom: 36px; }
  .section-lead { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 26px; font-size: var(--text-xs); }
  .btn-large { padding: 15px 34px; }
  .hero-title { letter-spacing: -1.5px; }
  .franchise-features { grid-template-columns: 1fr; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-logo { animation: none; }
  .wheel { animation: none; }
  .demo-badge { animation: none; }
}
