/* ============================================
   LANDING TEMPLATE - Design System
   Shared template for all tenants
   Colors are overridden by template-engine.js
   ============================================ */

:root {
  /* Default Brand Colors — overridden dynamically per tenant */
  --lt-cream: #F8F6FB;
  --lt-warm-white: #FFFFFF;
  --lt-sand: #EEEAF4;
  --lt-sand-light: #F5F2F9;
  --lt-taupe: #B8A9D4;
  --lt-taupe-dark: #8A7BAD;
  --lt-sage: #7B5EA7;
  --lt-sage-dark: #6B4F9E;
  --lt-sage-light: #E6DFF2;
  --lt-charcoal: #333333;
  --lt-dark: #1A1A1A;
  --lt-text: #3A3A3A;
  --lt-text-light: #747474;
  --lt-accent: #FCB900;
  --lt-accent-dark: #E5A800;
  --lt-blush: #F2E6D0;
  --lt-blush-light: #FBF5E8;
  --lt-gold: #FCB900;
  --lt-gold-light: #FFF3D0;
  --lt-purple-gradient-start: #8B6DB5;
  --lt-purple-gradient-end: #6B4F9E;
  --lt-footer-bg: #363839;

  /* Typography */
  --lt-font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --lt-font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --lt-font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --lt-section-padding: 100px 0;
  --lt-container-width: 1140px;
  --lt-container-padding: 0 24px;

  /* Transitions */
  --lt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lt-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --lt-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --lt-shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --lt-shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --lt-shadow-card: 0 2px 12px rgba(0,0,0,0.04);

  /* Border Radius */
  --lt-radius-sm: 8px;
  --lt-radius-md: 12px;
  --lt-radius-lg: 20px;
  --lt-radius-xl: 28px;
}

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

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

body {
  font-family: var(--lt-font-body);
  color: var(--lt-text);
  background-color: var(--lt-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--lt-transition);
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lt-font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--lt-charcoal);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--lt-text-light);
}

.section-label {
  font-family: var(--lt-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-sage-dark);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--lt-text-light);
  max-width: 640px;
  line-height: 1.8;
}

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

section {
  padding: var(--lt-section-padding);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--lt-transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(248, 246, 251, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(107, 79, 158, 0.08);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lt-container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lt-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lt-charcoal);
  letter-spacing: -0.02em;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lt-text-light);
  letter-spacing: 0.01em;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lt-sage);
  transition: var(--lt-transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lt-charcoal);
  border-radius: 2px;
  transition: var(--lt-transition);
}

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

/* Google Reviews Badge */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--lt-shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lt-charcoal);
  margin-top: 16px;
}

.google-reviews-badge .stars {
  color: var(--lt-gold);
  letter-spacing: 1px;
}

.google-reviews-badge .review-count {
  color: var(--lt-text-light);
  font-weight: 400;
  font-size: 0.8rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--lt-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--lt-transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--lt-charcoal);
  color: var(--lt-warm-white);
}

.btn-primary:hover {
  background: var(--lt-dark);
  transform: translateY(-2px);
  box-shadow: var(--lt-shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--lt-charcoal);
  border: 1.5px solid var(--lt-taupe);
}

.btn-secondary:hover {
  border-color: var(--lt-charcoal);
  background: var(--lt-charcoal);
  color: var(--lt-warm-white);
  transform: translateY(-2px);
}

.btn-sage {
  background: var(--lt-sage);
  color: white;
}

.btn-sage:hover {
  background: #5A4390;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 79, 158, 0.3);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--lt-charcoal);
  color: var(--lt-warm-white);
  border-radius: 50px;
}

.btn-nav:hover {
  background: var(--lt-dark);
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lt-cream) 0%, var(--lt-sand-light) 40%, var(--lt-blush-light) 100%);
  padding-top: 80px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--lt-sage-light);
  top: -200px;
  right: -100px;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--lt-blush);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 94, 167, 0.1);
  border: 1px solid rgba(123, 94, 167, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lt-sage-dark);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--lt-dark);
}

.hero h1 span {
  color: var(--lt-sage-dark);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--lt-text-light);
  margin-bottom: 36px;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.hero-credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--lt-text-light);
  font-weight: 500;
}

.hero-credential svg {
  width: 18px;
  height: 18px;
  color: var(--lt-sage-dark);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--lt-radius-xl);
  overflow: hidden;
  background: var(--lt-sand);
  box-shadow: var(--lt-shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lt-sage-light) 0%, var(--lt-blush-light) 100%);
  color: var(--lt-sage-dark);
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
  margin-bottom: 16px;
}

.hero-image-placeholder span {
  font-family: var(--lt-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  opacity: 0.6;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--lt-radius-md);
  padding: 16px 20px;
  box-shadow: var(--lt-shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 3s;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-icon.sage {
  background: rgba(123, 94, 167, 0.15);
}

.hero-float-icon.blush {
  background: rgba(252, 185, 0, 0.15);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--lt-warm-white);
}

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

.about-image {
  position: relative;
  border-radius: var(--lt-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--lt-sand);
  box-shadow: var(--lt-shadow-md);
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--lt-sand-light), var(--lt-blush-light));
  color: var(--lt-taupe-dark);
  gap: 12px;
}

.about-image-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content p:first-of-type {
  font-size: 1.15rem;
  color: var(--lt-text);
  font-weight: 500;
}

/* ============================================
   VALUES / WHAT DEFINES US
   ============================================ */
.values {
  background: var(--lt-cream);
}

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

.value-card {
  background: var(--lt-warm-white);
  border-radius: var(--lt-radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--lt-transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lt-shadow-md);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  background: var(--lt-sage-light);
  color: var(--lt-sage-dark);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   WHY PILATES WORKS
   ============================================ */
.benefits {
  background: var(--lt-warm-white);
}

.benefits-intro {
  max-width: 700px;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--lt-radius-sm);
  transition: var(--lt-transition);
}

.benefit-item:hover {
  background: var(--lt-sand-light);
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lt-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check svg {
  width: 14px;
  height: 14px;
  color: var(--lt-sage-dark);
}

.benefit-text h4 {
  font-family: var(--lt-font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lt-charcoal);
}

.benefit-text p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.benefits-footer {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--lt-sand-light);
  border-radius: var(--lt-radius-md);
  border-left: 3px solid var(--lt-sage);
}

.benefits-footer p {
  font-size: 0.95rem;
  color: var(--lt-text);
  font-style: italic;
}

/* ============================================
   FOR WHOM
   ============================================ */
.for-whom {
  background: var(--lt-cream);
}

.for-whom-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.audience-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--lt-warm-white);
  border-radius: var(--lt-radius-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--lt-transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lt-shadow-md);
  border-color: var(--lt-sage-light);
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.audience-card h3 {
  font-size: 1.05rem;
  font-family: var(--lt-font-body);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--lt-charcoal);
}

.audience-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   CLASSES SECTION
   ============================================ */
.classes {
  background: var(--lt-warm-white);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.class-card {
  background: var(--lt-cream);
  border-radius: var(--lt-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--lt-transition);
}

.class-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lt-shadow-lg);
}

.class-card-header {
  padding: 32px 32px 0;
}

.class-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.class-tag.active {
  background: var(--lt-sage-light);
  color: var(--lt-sage-dark);
}

.class-tag.coming-soon {
  background: var(--lt-blush-light);
  color: var(--lt-accent-dark);
}

.class-tag.preparing {
  background: rgba(196, 181, 163, 0.2);
  color: var(--lt-taupe-dark);
}

.class-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.class-card-subtitle {
  font-family: var(--lt-font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--lt-sage-dark);
  margin-bottom: 16px;
}

.class-card-body {
  padding: 0 32px 32px;
}

.class-card-body p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.class-details {
  margin-bottom: 20px;
}

.class-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--lt-text);
}

.class-detail svg {
  width: 18px;
  height: 18px;
  color: var(--lt-sage-dark);
  flex-shrink: 0;
}

.class-detail strong {
  font-weight: 700;
}

.class-pricing {
  background: var(--lt-warm-white);
  border-radius: var(--lt-radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.class-pricing h4 {
  font-family: var(--lt-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lt-text-light);
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 0.92rem;
  color: var(--lt-text);
}

.price-value {
  font-weight: 700;
  color: var(--lt-charcoal);
  font-size: 1rem;
}

.price-note {
  font-size: 0.82rem;
  color: var(--lt-text-light);
  margin-top: 8px;
  font-style: italic;
}

.class-features {
  margin-bottom: 24px;
}

.class-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--lt-text-light);
}

.class-feature svg {
  width: 16px;
  height: 16px;
  color: var(--lt-sage-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.class-card-cta {
  padding: 0 32px 32px;
}

.class-coming-soon-notice {
  text-align: center;
  padding: 20px;
  background: rgba(123, 94, 167, 0.06);
  border-radius: var(--lt-radius-sm);
  font-size: 0.9rem;
  color: var(--lt-text-light);
  font-style: italic;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--lt-cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lt-sage-light);
  color: var(--lt-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lt-font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--lt-font-body);
  font-weight: 700;
}

.step p {
  font-size: 0.92rem;
}

.step-connector {
  display: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--lt-warm-white);
}

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

.testimonial-card {
  background: var(--lt-cream);
  border-radius: var(--lt-radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.testimonial-stars {
  color: var(--lt-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--lt-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--lt-text);
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lt-charcoal);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--lt-text-light);
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--lt-font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--lt-sage-light);
  opacity: 0.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--lt-sage) 0%, var(--lt-sage-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background: var(--lt-gold);
  color: var(--lt-charcoal);
  font-size: 1rem;
  padding: 16px 40px;
  font-weight: 800;
}

.cta-section .btn-primary:hover {
  background: #FFD340;
  box-shadow: 0 8px 30px rgba(252, 185, 0, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--lt-footer-bg);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--lt-font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--lt-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: var(--lt-transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--lt-transition);
}

.footer-social a:hover {
  background: var(--lt-sage);
  color: white;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* Fade-in animations - only applied when JS has loaded */
.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .fade-in.visible,
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PRENATAL ONLINE SECTION
   ============================================ */
.prenatal-online {
  background: var(--lt-blush-light);
  border-radius: var(--lt-radius-md);
  padding: 24px;
  margin-top: 20px;
}

.prenatal-online h4 {
  font-family: var(--lt-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lt-charcoal);
}

.prenatal-online p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ============================================
   ONLINE ACCESS SECTION
   ============================================ */
.online-section {
  background: var(--lt-sand-light);
  border-top: 1px solid rgba(0,0,0,0.04);
}

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

.online-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.online-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--lt-warm-white);
  border-radius: var(--lt-radius-sm);
  transition: var(--lt-transition);
}

.online-feature:hover {
  box-shadow: var(--lt-shadow-sm);
  transform: translateX(4px);
}

.online-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lt-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.online-feature-text h4 {
  font-family: var(--lt-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lt-charcoal);
  margin-bottom: 2px;
}

.online-feature-text p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.online-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.online-visual-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/10;
  border-radius: var(--lt-radius-lg);
  background: linear-gradient(135deg, var(--lt-sage-light), var(--lt-blush));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--lt-shadow-md);
}

.online-visual-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  color: var(--lt-sage-dark);
}

.online-visual-placeholder span {
  font-family: var(--lt-font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--lt-sage-dark);
  opacity: 0.6;
}

/* ============================================
   FIRST CLASS INFO
   ============================================ */
.first-class-info {
  margin-top: 32px;
  padding: 24px;
  background: var(--lt-blush-light);
  border-radius: var(--lt-radius-sm);
  border-left: 3px solid var(--lt-blush);
}

.first-class-info p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.first-class-info p:last-child {
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-image-wrapper {
    max-width: 360px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-credentials {
    align-items: center;
  }

  .hero-float-card {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .online-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .online-visual {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */
.video-showcase {
  padding: var(--lt-section-padding);
  background: white;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 760px;
  margin: 0 auto;
  align-items: start;
}

.video-card {
  text-align: center;
}

.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(123,94,167,0.12);
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9/16;
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-title {
  text-align: center;
  margin-top: 16px;
  color: var(--lt-charcoal);
  font-family: var(--lt-font-heading);
  font-size: 1.1rem;
}

.video-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--lt-text-light);
  margin-top: 4px;
}

/* Real image overrides for picture elements */
.hero-image-wrapper picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image-wrapper picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-image picture {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}

.about-image picture img {
  border-radius: 24px;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --lt-section-padding: 60px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 246, 251, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-image-wrapper {
    max-width: 280px;
    aspect-ratio: 3/4;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

  .steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

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

/* ============================================
   LIVE SCHEDULE - Calendar Snapshot Widget
   ============================================ */

.live-schedule {
  padding: var(--lt-section-padding);
  background: linear-gradient(180deg, var(--lt-sand-light) 0%, var(--lt-cream) 100%);
}

.schedule-widget {
  margin-top: 48px;
}

.schedule-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--lt-text-light);
}

.schedule-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--lt-sage-light);
  border-top-color: var(--lt-sage);
  border-radius: 50%;
  animation: sched-spin 0.8s linear infinite;
}

@keyframes sched-spin {
  to { transform: rotate(360deg); }
}

/* "Next week" label */
.schedule-week-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(126, 142, 120, 0.08);
  border-radius: 20px;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Week day tabs */
.schedule-days {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.schedule-day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--lt-sand);
  background: var(--lt-warm-white);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 90px;
}

.schedule-day-tab:hover {
  border-color: var(--lt-taupe);
  background: var(--lt-sage-light);
}

.schedule-day-tab.active {
  background: var(--lt-sage);
  border-color: var(--lt-sage);
  color: #fff;
}

.schedule-day-tab .day-name {
  font-family: var(--lt-font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.schedule-day-tab .day-date {
  font-size: 0.75rem;
  margin-top: 2px;
  opacity: 0.7;
}

.schedule-day-tab.active .day-date {
  opacity: 0.9;
}

.schedule-day-tab .day-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lt-sage);
  margin-top: 6px;
}

.schedule-day-tab.active .day-dot {
  background: var(--lt-gold);
}

.schedule-day-tab.no-classes .day-dot {
  display: none;
}

.schedule-day-tab.no-classes {
  opacity: 0.5;
}

/* Class cards in schedule */
.schedule-classes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-class-card {
  background: var(--lt-warm-white);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--lt-sand);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.schedule-class-card:hover {
  box-shadow: 0 8px 32px rgba(123, 94, 167, 0.08);
  transform: translateY(-2px);
}

.schedule-class-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding: 16px;
  background: var(--lt-sage-light);
  border-radius: 12px;
}

.schedule-class-time .time-hour {
  font-family: var(--lt-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lt-sage-dark);
  line-height: 1;
}

.schedule-class-time .time-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lt-sage);
  margin-top: 4px;
}

.schedule-class-info {
  flex: 1;
}

.schedule-class-info h4 {
  font-family: var(--lt-font-heading);
  font-size: 1.3rem;
  color: var(--lt-charcoal);
  margin: 0 0 6px;
}

.schedule-class-info .class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--lt-text-light);
}

.schedule-class-info .class-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.schedule-class-info .class-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.schedule-class-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 140px;
}

.schedule-class-action .spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.spots-badge.available {
  background: #E8F5E9;
  color: #2E7D32;
}

.spots-badge.few {
  background: #FFF3E0;
  color: #E65100;
}

.spots-badge.full {
  background: #FFEBEE;
  color: #C62828;
}

.schedule-class-action .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--lt-sage);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.schedule-class-action .btn-book:hover {
  background: var(--lt-sage-dark);
  transform: translateY(-1px);
}

.schedule-class-action .btn-book.full {
  background: var(--lt-sand);
  color: var(--lt-text-light);
  cursor: default;
}

/* Trainer badge */
.schedule-trainer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--lt-text-light);
}

.schedule-trainer img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--lt-sand);
}

/* Empty state */
.schedule-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--lt-text-light);
}

.schedule-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--lt-taupe);
  margin-bottom: 16px;
}

/* Schedule footer */
.schedule-footer {
  text-align: center;
  margin-top: 40px;
}

.schedule-footer p {
  font-size: 0.9rem;
  color: var(--lt-text-light);
  margin-bottom: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .schedule-class-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }

  .schedule-class-time {
    flex-direction: row;
    gap: 10px;
    min-width: auto;
    padding: 12px 16px;
  }

  .schedule-class-time .time-label {
    margin-top: 0;
  }

  .schedule-class-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: auto;
  }

  .schedule-day-tab {
    min-width: 72px;
    padding: 10px 14px;
  }

  .schedule-day-tab .day-name {
    font-size: 0.75rem;
  }
}
