/* =============================================================================
   Studio45 Spinning — Global Styles
   Light / Luminous theme — Clean, Premium, Feminine-Friendly
   Complete rewrite matching exact HTML class names: 2026-03-25
   ============================================================================= */


/* =============================================================================
   1. CSS RESET
   ============================================================================= */

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


/* =============================================================================
   2. CSS VARIABLES
   ============================================================================= */

:root {
  /* Backgrounds */
  --white:       #FFFFFF;
  --bg-light:    #F7F7F7;
  --bg-section:  #FAFAFA;

  /* Text */
  --black:       #0A0A0A;
  --dark:        #1A1A1A;
  --gray:        #6B6B6B;
  --gray-light:  #9A9A9A;

  /* Borders */
  --border:       #E8E8E8;
  --border-light: #F0F0F0;

  /* Accent */
  --accent:       #0A0A0A;
  --accent-hover: #333333;
  --green:        #22C55E;
  --orange:       #F59E0B;
  --red:          #EF4444;
  --wa-green:     #25D366;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl:  0 16px 48px rgba(0, 0, 0, 0.14);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:        80px;
  --section-py-mobile: 60px;
  --container-px:      24px;
}


/* =============================================================================
   3. BASE STYLES
   ============================================================================= */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
}

a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  background: var(--black);
  color: var(--white);
}


/* =============================================================================
   4. UTILITIES
   ============================================================================= */

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

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay variants — combine with .reveal */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* =============================================================================
   5. SECTION HEADERS
   ============================================================================= */

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--black);
  line-height: 1.05;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* =============================================================================
   6. BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary — kept for completeness */
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Dark — solid black */
.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Accent — hero CTA (same as dark for this theme) */
.btn--accent {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* Outline white — for hero on image */
.btn--outline-white {
  background: transparent;
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.4);
}

.btn--outline-white:hover {
  background: rgba(10, 10, 10, 0.06);
  border-color: var(--black);
  color: var(--black);
}

/* Outline dark */
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: transparent;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.schedule-cta {
  margin-top: 16px;
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}

.btn--whatsapp:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

/* Large */
.btn--lg {
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 10px;
}

/* Full width */
.btn--full {
  width: 100%;
}

/* Pill */
.btn--pill {
  border-radius: 999px;
}


/* =============================================================================
   7. NAVIGATION
   ============================================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: var(--bg-light);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Desktop nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

/* Individual link */
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
  font-weight: 600;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav CTA button */
.nav-cta {
  flex-shrink: 0;
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-md);
}


/* =============================================================================
   8. HERO
   ============================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  overflow: hidden;
}

/* Background image container */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(0.85) brightness(1.1);
  transform: scaleX(-1);
}

/* White gradient overlay from left */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 45%,
    rgba(247, 247, 247, 0.30) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
  padding: 80px var(--container-px) 160px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: block;
  animation: eyebrow-in 1s ease 0.3s both;
}

@keyframes eyebrow-in {
  from {
    opacity: 0;
    letter-spacing: 8px;
  }
  to {
    opacity: 1;
    letter-spacing: 3px;
  }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  gap: 0;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 560px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 24px;
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  display: block;
}


/* =============================================================================
   9. BOOKING SECTION
   ============================================================================= */

.booking-section {
  background: var(--white);
  padding: var(--section-py) 0;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.booking-days {
  margin-bottom: 24px;
  position: relative;
}

/* Gradient fade on right edge to indicate more tabs */
.booking-days::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: calc(100% - 4px);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
  border-radius: 0 10px 10px 0;
}

/* JS-generated: week navigation row */
.booking-week-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.booking-week-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  color: var(--dark);
}

.booking-week-btn:hover:not(:disabled) {
  background: var(--bg-light);
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.booking-week-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.booking-week-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

/* Day tabs scrollable row */
.booking-day-tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.booking-day-tabs::-webkit-scrollbar {
  display: none;
}

.booking-day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.booking-day-tab:hover:not(.disabled) {
  border-color: var(--dark);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.booking-day-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.booking-day-tab.active .booking-day-name,
.booking-day-tab.active .booking-day-num,
.booking-day-tab.active .booking-day-status {
  color: var(--white);
}

.booking-day-tab.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.booking-day-tab.today {
  border-color: var(--black);
}

.booking-day-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

.booking-day-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
}

.booking-day-status {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* Slots area */
.booking-slots-wrapper {
  min-height: 200px;
}

.booking-day-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

/* Individual slot card */
.booking-slot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: 16px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-slot:hover:not(.booking-slot--disabled) {
  transform: translateY(-2px);
  border-color: var(--dark);
  box-shadow: var(--shadow-md);
}

.booking-slot--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.booking-slot__time {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.booking-slot__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

/* Badge pills inside slots */
.booking-slot__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  width: fit-content;
}

.badge--green {
  background: #DCFCE7;
  color: #15803D;
}

.badge--orange {
  background: #FEF3C7;
  color: #B45309;
}

.badge--gray {
  background: var(--bg-light);
  color: var(--gray);
}

/* Capacity progress bar */
.booking-slot__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.booking-slot__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  transition: width 0.4s ease;
}

.booking-slot__fill--full {
  background: var(--red);
}

/* Reserve button in slot */
.booking-slot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.booking-slot__btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.booking-slot__na {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-light);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Empty state */
.booking-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 8px;
}

.booking-empty__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.booking-empty__sub {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Loading state */
.booking-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 12px;
  color: var(--gray);
  font-size: 0.875rem;
}

.booking-spinner {
  width: 32px;
  height: 32px;
  border: 2.5px solid var(--border);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

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

/* Info note below booking card */
.booking-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
}

.booking-note .icon {
  flex-shrink: 0;
  color: var(--gray-light);
}


/* =============================================================================
   10. HOW IT WORKS
   ============================================================================= */

.how-it-works {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  align-items: stretch;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step__icon {
  margin-bottom: 16px;
  color: var(--dark);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.step__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}


/* =============================================================================
   11. SCHEDULE & PRICING
   ============================================================================= */

.schedule-pricing {
  background: var(--white);
  padding: var(--section-py) 0;
}

.schedule-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Schedule card */
.schedule-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.schedule-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

/* Schedule table */
.schedule-table {
  width: 100%;
  margin-bottom: 20px;
}

.schedule-table__head {
  margin-bottom: 4px;
}

.schedule-table__row {
  display: grid;
  grid-template-columns: 56px repeat(5, 1fr);
  gap: 4px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.schedule-table__row:last-child {
  border-bottom: none;
}

.schedule-table__row--head {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding-bottom: 10px;
  margin-bottom: 4px;
}

.schedule-table__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
}

.schedule-table__cell--label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  justify-content: flex-start;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Availability dots */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--active {
  background: var(--green);
}

.dot--inactive {
  background: var(--border);
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-light);
}

/* Schedule extras — fill left column */
.schedule-extras {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-extras__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.schedule-extras__item .icon {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.schedule-extras__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.schedule-extras__item strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.schedule-extras__item span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
}

/* Pricing stack */
.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-stack__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pricing-card--am {
  border-left: 3px solid var(--black);
}

.pricing-card--pm {
  border-left: 3px solid var(--gray-light);
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-card__badge--pm {
  background: var(--bg-light);
  color: var(--gray);
}

.pricing-card__header {
  margin-bottom: 16px;
}

.pricing-card__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-card__schedule {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
}

.icon--check {
  flex-shrink: 0;
  color: var(--green);
  stroke: var(--green);
}

/* Inscription info bar */
.pricing-inscription {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
}

.pricing-inscription .icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}

.pricing-inscription strong {
  color: var(--dark);
  font-weight: 700;
}


/* =============================================================================
   12. COMMUNITY
   ============================================================================= */

.community {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}

/* Photo gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 12px;
  background: var(--border-light);
  min-height: 220px;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  margin-bottom: 32px;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.testimonial__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__quote {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

.testimonial__quote p {
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial__since {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-light);
}

/* Instagram CTA */
.instagram-cta {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.instagram-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 16px 32px;
  min-height: 56px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.25s ease,
              background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  cursor: pointer;
}

.instagram-cta__link:hover {
  border-color: var(--dark);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--black);
  transform: translateY(-2px);
}

.instagram-cta__link:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.instagram-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.instagram-cta__handle {
  color: var(--gray);
  font-weight: 400;
}


/* =============================================================================
   13. ABOUT COACH
   ============================================================================= */

.about-coach {
  background: var(--white);
  padding: var(--section-py) 0;
}

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

.about-coach__photo {
  overflow: hidden;
  border-radius: 20px;
}

.about-coach__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 20px;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.about-coach__photo:hover .about-coach__img {
  filter: grayscale(0%);
}

.about-coach__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-coach__content .section-eyebrow {
  display: block;
  text-align: left;
  margin-bottom: 8px;
}

.about-coach__content .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.about-coach__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}

.about-coach__bio {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-coach__credentials {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  margin-top: 8px;
}

.about-coach__credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
}


/* =============================================================================
   14. LOCATION
   ============================================================================= */

.location {
  background: var(--bg-light);
  padding: var(--section-py) 0;
}

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

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

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

.location__address-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__address-item .icon {
  flex-shrink: 0;
  color: var(--gray);
  margin-top: 2px;
}

.location__address-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location__address-item strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.location__address-item span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--border-light);
}

.map-placeholder iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}


/* =============================================================================
   15. FOOTER
   ============================================================================= */

.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 4px;
}

.footer__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.footer__hashtag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-light);
  text-transform: uppercase;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.footer__social-link:hover {
  border-color: var(--dark);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* Nav column */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--dark);
}

/* Contact column */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
}

.footer__contact-item {
  margin-top: 4px;
}

.footer__contact-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: var(--black);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-light);
  text-align: center;
}


/* =============================================================================
   16. MODALS
   ============================================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: var(--white);
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  z-index: 1;
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal.is-open .modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal__panel--success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.modal__close:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--bg-light);
}

.modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.modal__header {
  margin-bottom: 24px;
}

.modal__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.modal__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Slot info summary inside modal */
.modal__slot-info {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

/* Form inside modal */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.25px;
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--gray-light);
}

.form-input:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}

.form-input[aria-invalid="true"],
.form-input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  display: block;
  min-height: 16px;
}

.form-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-light);
  display: block;
}

/* Success modal elements */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803D;
  margin-bottom: 4px;
}

.modal__success-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.modal__success-actions {
  width: 100%;
  margin-top: 8px;
}


/* =============================================================================
   17. WHATSAPP FAB
   ============================================================================= */

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  background: #1ebe5c;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid var(--wa-green);
  outline-offset: 4px;
}

.whatsapp-fab__label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-fab__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
  border-right: none;
}

.whatsapp-fab:hover .whatsapp-fab__label {
  opacity: 1;
}


/* =============================================================================
   17b. RESPONSIVE — WIDE TABLET (max-width: 900px)
   ============================================================================= */

@media (max-width: 768px) {
  .schedule-pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
  .schedule-card {
    padding: 24px 20px;
  }
  .btn--full {
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .btn {
    min-height: 44px;
  }
}


/* =============================================================================
   18. RESPONSIVE — TABLET (max-width: 768px)
   ============================================================================= */

@media (max-width: 768px) {

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px var(--container-px) 20px;
  }

  .nav-menu.is-open {
    display: flex;
    background: #FFFFFF;
    z-index: 999;
    min-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    padding: 13px 24px;
  }

  /* Hero */
  .hero__content {
    margin: 0 auto;
    padding: 60px var(--container-px) 120px;
    max-width: 100%;
  }

  .hero__headline {
    font-size: 3.5rem;
  }

  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px;
    max-width: 100%;
    width: auto;
  }

  .hero__stat {
    padding: 8px 16px;
  }

  /* Booking */
  .booking-card {
    padding: 24px 20px;
  }

  .booking-slots-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  /* How it works */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Schedule & Pricing — already handled at 900px breakpoint below */

  .schedule-table__row {
    grid-template-columns: 48px repeat(5, 1fr);
    gap: 2px;
  }

  /* Community */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery__item--tall {
    grid-row: span 1;
    min-height: 220px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About coach */
  .about-coach__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-coach__photo {
    width: 100%;
  }

  .about-coach__img {
    height: 400px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .about-coach__content .section-title {
    text-align: left;
  }

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

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }

  .site-footer {
    padding-top: 40px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }
}


/* =============================================================================
   19. RESPONSIVE — MOBILE (max-width: 480px)
   ============================================================================= */

@media (max-width: 480px) {

  :root {
    --section-py: var(--section-py-mobile);
    --container-px: 16px;
  }

  /* Hero */
  .hero__headline {
    font-size: 2.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .hero__stat {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .hero__stat:last-child {
    border-bottom: none;
  }

  .hero__stat-divider {
    display: none;
  }

  /* Booking */
  .booking-card {
    padding: 20px 16px;
  }

  .booking-day-tab {
    min-width: 68px;
    padding: 10px 6px;
  }

  /* Steps */
  .step {
    padding: 28px 20px;
  }

  /* Schedule table — scroll on small screens */
  .schedule-table {
    overflow-x: auto;
    display: block;
  }

  /* Pricing */
  .pricing-card {
    padding: 24px 20px;
  }

  /* Gallery */
  .gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery__item--tall,
  .gallery__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  /* About coach */
  .about-coach__img {
    height: 300px;
  }

  /* Modals */
  .modal {
    padding: 12px;
    align-items: flex-end;
  }

  .modal__panel {
    border-radius: 20px 20px 0 0;
    padding: 32px 24px;
    max-height: 92vh;
  }

  /* Map */
  .map-placeholder,
  .map-placeholder iframe {
    min-height: 300px;
    height: 300px;
  }

  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.40);
  }

  /* Section title sizing */
  .section-title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  /* Eyebrow letter-spacing */
  .section-eyebrow {
    letter-spacing: 2px;
  }
}
