/* ═══════════════════════════════════════════════════
   STUDIO 511 — Main Stylesheet
   Inspired by luxury boutique aesthetics
   ═══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────── */
:root {
  --copper:        #b07252;
  --copper-dark:   #7a422c;
  --copper-light:  #c99070;
  --copper-pale:   #d4a882;
  --olive:         #665c3a;
  --olive-light:   #8a7a50;
  --cream:         #dbbd9d;
  --cream-dark:    #c9a882;
  --cream-deeper:  #b89268;
  --ink:           #3a2010;
  --ink-soft:      #5c3a20;
  --ink-muted:     #7a5440;
  --white:         #f5e4cc;
  --warm-grey:     #8a7a62;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', system-ui, sans-serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h:         72px;
  --container:     1200px;
  --container-lg:  1400px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Typography helpers ─────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.section-label--light { color: var(--copper-pale); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--copper-pale); }

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-subtitle--light { color: var(--cream-dark); }

.body-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 1.2rem;
}

/* ── Layout helpers ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}
.section--dark {
  background-color: var(--copper-dark);
}
.section--cream {
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

.header-divider {
  width: 48px;
  height: 1px;
  background: var(--copper);
  margin: 1.5rem auto;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--copper);
  color: var(--cream);
  border-color: var(--copper);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
  z-index: -1;
}
.btn--primary:hover { color: var(--cream); }
.btn--primary:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,235,217,0.4);
}
.btn--ghost:hover {
  background: rgba(242,235,217,0.1);
  border-color: var(--cream);
}

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

.btn--whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; color: #fff; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(122, 66, 44, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(176,113,64,0.2);
}

.nav-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}
.logo-svg {
  width: 36px;
  height: 24px;
  color: var(--copper);
}
.nav-logo-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-logo-text em { color: var(--copper); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,235,217,0.75);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--copper);
  color: var(--copper) !important;
  letter-spacing: 0.15em;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.nav-cta:hover { background: var(--copper); color: var(--cream) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background-color: var(--copper-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: var(--copper);
  top: -100px; right: -150px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: var(--olive);
  bottom: 0; left: -100px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero-orb--3 {
  width: 300px; height: 300px;
  background: var(--cream);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.06; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.12; transform: translate(-50%,-50%) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 2.5rem;
}

.hero-logo-large {
  width: clamp(120px, 18vw, 220px);
  margin: 0 auto 2rem;
  color: var(--copper);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}
.hero-title span:first-child { font-weight: 300; letter-spacing: 0.3em; }
.hero-title .italic { font-style: italic; color: var(--copper); font-weight: 400; }

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1rem;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 1rem;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-grey);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-deeper);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--copper);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 0.3rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-deeper);
}

.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  aspect-ratio: 3/2;
  max-height: 480px;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,25,22,0.35);
}
.about-logo-mark {
  width: 80px;
  color: var(--cream);
  opacity: 0.8;
}
.about-accent-line {
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 1px solid var(--olive);
  z-index: -1;
}

/* ═══════════════════════════════════════
   CLASSES
   ═══════════════════════════════════════ */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(176,113,64,0.15);
  border: 1px solid rgba(176,113,64,0.15);
}

.class-card {
  background: rgba(28,25,22,0.6);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.4s ease;
}
.class-card:hover { background: rgba(45,37,32,0.8); }

.class-card--featured {
  background: rgba(176,113,64,0.12);
  border-top: 2px solid var(--copper);
}
.class-card--featured:hover { background: rgba(176,113,64,0.18); }

.class-card__badge {
  position: absolute;
  top: -1px;
  left: 2.5rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--copper);
  padding: 0.3rem 0.8rem;
}

.class-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 2rem;
  color: var(--copper);
}
.class-card__icon svg { width: 100%; height: 100%; }

.class-card__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(176,113,64,0.15);
  position: absolute;
  top: 2rem;
  right: 2rem;
  line-height: 1;
}

.class-card__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.class-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.class-benefits {
  margin-bottom: 2rem;
}
.class-benefits li {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(242,235,217,0.7);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(176,113,64,0.1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.class-benefits li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.class-card__link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  transition: gap 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.class-card__link:hover { color: var(--copper-pale); }

/* ═══════════════════════════════════════
   BENEFITS / CHARTS
   ═══════════════════════════════════════ */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.chart-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  padding: 1.8rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.chart-card:hover {
  box-shadow: 0 8px 32px rgba(176,113,64,0.12);
  transform: translateY(-2px);
}

.chart-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.chart-subtitle {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--warm-grey);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.chart-wrap {
  position: relative;
  height: 200px;
}
.chart-wrap canvas { max-height: 100%; }

.benefits-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  padding: 1.5rem;
  border-left: 2px solid var(--copper);
  background: var(--white);
  border-top: 1px solid var(--cream-deeper);
  border-right: 1px solid var(--cream-deeper);
  border-bottom: 1px solid var(--cream-deeper);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-number span {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 0.3rem;
  display: inline-block;
}

.pillar-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--cream-deeper);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.pkg-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 40px rgba(176,113,64,0.15);
  transform: translateY(-4px);
}

.pkg-card--featured {
  border-color: var(--copper);
  background: var(--copper-dark);
}
.pkg-card--featured .pkg-card__header .pkg-icon { color: var(--copper); }
.pkg-card--featured .pkg-label { color: var(--cream-dark); }
.pkg-card--featured .pkg-price { color: var(--cream); }
.pkg-card--featured .pkg-currency { color: var(--copper); }
.pkg-card--featured .pkg-desc { color: var(--warm-grey); }
.pkg-card--featured .pkg-features li { color: rgba(242,235,217,0.7); border-color: rgba(176,113,64,0.15); }
.pkg-card--featured .pkg-features li::before { background: var(--copper); }

.pkg-featured-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  white-space: nowrap;
}

.pkg-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pkg-icon {
  width: 36px;
  height: 36px;
  color: var(--copper-dark);
  flex-shrink: 0;
}
.pkg-icon svg { width: 100%; height: 100%; }

.pkg-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.pkg-price {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  color: var(--ink);
}
.pkg-currency {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--copper);
  margin-top: 0.5rem;
}
.pkg-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.pkg-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}

.pkg-features {
  flex: 1;
}
.pkg-features li {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-deeper);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pkg-features li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.packages-note {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--warm-grey);
  text-align: center;
  font-style: italic;
}

/* ═══════════════════════════════════════
   COACHES
   ═══════════════════════════════════════ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.coaches-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.coach-card {
  background: rgba(45,37,32,0.5);
  border: 1px solid rgba(176,113,64,0.12);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.coach-card:hover {
  border-color: rgba(176,113,64,0.4);
  transform: translateY(-4px);
}

.coach-photo {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.coach-photo--1 { background: linear-gradient(135deg, #8B5538 0%, #B07140 100%); }
.coach-photo--1 .coach-img { object-position: center 10%; }
.coach-photo--2 { background: linear-gradient(135deg, #665c3a 0%, #8B5538 100%); }
.coach-photo--2 .coach-img { object-position: 0% 60%; }
.coach-photo--3 { background: linear-gradient(135deg, #B07140 0%, #C4956A 100%); }
.coach-photo--3 .coach-img { object-position: center 35%; }
.coach-photo--4 { background: linear-gradient(135deg, #7a422c 0%, #b07252 100%); }
.coach-photo--5 { background: linear-gradient(135deg, #6B4A30 0%, #9A6B45 100%); }

/* Real photo — covers the gradient when it loads */
.coach-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.coach-photo-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.coach-initial {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(242,235,217,0.25);
  line-height: 1;
  font-style: italic;
}

.coach-info { padding: 1.5rem; }

.coach-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.coach-specialty {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 0.8rem;
}

.coach-bio {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.coach-schedule { display: none; }

.schedule-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.schedule-grid { display: flex; flex-direction: column; gap: 0.4rem; }

.schedule-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.day-name {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,235,217,0.5);
  min-width: 28px;
}
.day-time {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(242,235,217,0.7);
  text-align: right;
}

/* ── Schedule Table ─────────────────── */
.schedule-table-wrap {
  border: 1px solid rgba(176,113,64,0.2);
}
.schedule-table-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(176,113,64,0.2);
  background: rgba(45,37,32,0.6);
}
.schedule-table-scroll { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.schedule-table th {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 1rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(176,113,64,0.15);
  background: rgba(28,25,22,0.8);
}
.schedule-table th:first-child { text-align: left; min-width: 90px; }
.schedule-table td {
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(176,113,64,0.07);
  vertical-align: middle;
}
.schedule-table tr:hover td { background: rgba(176,113,64,0.04); }
.time-col {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(242,235,217,0.4);
  text-align: left !important;
  white-space: nowrap;
}

.cls {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 2px;
}
.cls.mat  { background: rgba(176,113,64,0.2); color: var(--copper-pale); }
.cls.hot  { background: rgba(180,60,30,0.2);  color: #E0855A; }
.cls.func { background: rgba(102,92,58,0.2); color: var(--olive-light); }

.cls-coach {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(242,235,217,0.45);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.schedule-table td.empty {
  color: rgba(138,121,104,0.3);
  font-size: 0.75rem;
}

.schedule-table td {
  padding: 0.6rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(176,113,64,0.07);
  vertical-align: middle;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   RESERVE
   ═══════════════════════════════════════ */
.reserve-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--cream-deeper);
  margin: 0 -1px;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  border-color: var(--copper);
  background: rgba(176,113,64,0.03);
  z-index: 1;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(176,113,64,0.12);
  position: absolute;
  top: 1rem;
  right: 1rem;
  line-height: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  color: var(--copper);
}
.step-icon svg { width: 100%; height: 100%; }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.2rem;
  color: var(--copper-pale);
  align-self: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
  opacity: 0.5;
}

.reserve-cta {
  margin-bottom: 3rem;
}
.reserve-cta-inner {
  background: var(--copper-dark);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.reserve-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.reserve-cta-text p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-grey);
}
.reserve-cta-text strong { color: var(--copper); }
.reserve-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Bloque de cancelar cita */
.cancel-cta {
  margin-bottom: 3rem;
}
.cancel-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(176,114,82,0.2);
  background: var(--white);
  flex-wrap: wrap;
}
.cancel-cta-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--copper);
}
.cancel-cta-icon svg { width: 100%; height: 100%; }
.cancel-cta-text { flex: 1; }
.cancel-cta-text h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.cancel-cta-text p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-muted);
}
.cancel-cta-text strong { color: var(--copper); }
.btn--outline-copper {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--copper);
  background: transparent;
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--outline-copper:hover {
  background: var(--copper);
  color: var(--white);
}

.reserve-notes {
  background: var(--cream);
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--copper);
}
.reserve-notes h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}
.reserve-notes li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.reserve-notes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
}
.reserve-notes strong { color: var(--ink); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   FAQ — Preguntas Frecuentes
   ═══════════════════════════════════════════════════ */
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--cream-deeper);
  overflow: hidden;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}
.faq-item:first-child { border-top: 1px solid var(--cream-deeper); }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--copper);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.faq-item.open { padding-left: 1.25rem; }
.faq-item.open::before { transform: scaleY(1); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--copper); }
.faq-item.open .faq-question { color: var(--copper); }

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s ease, transform 0.4s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--copper);
  border-radius: 2px;
  transition: opacity 0.25s, transform 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon { background: var(--copper); transform: rotate(45deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-answer-inner p,
.faq-answer-inner li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
}
.faq-answer-inner strong { color: var(--ink); font-weight: 600; }
.faq-answer-inner ol,
.faq-answer-inner ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.faq-answer-inner ol { list-style: decimal; }
.faq-answer-inner ul { list-style: disc; }

/* Mensaje Instagram al pie del FAQ */
.faq-ig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-deeper);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.faq-ig p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
}
.faq-ig a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.faq-ig a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-ig a:hover {
  background: var(--copper);
  color: var(--white);
}

/* ═══════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.location-info .section-label,
.location-info .section-title { text-align: left; }

.location-details { margin: 2rem 0 2.5rem; }

.loc-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(176,113,64,0.12);
}
.loc-icon {
  width: 30px;
  height: 30px;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-icon svg { width: 100%; height: 100%; }
.loc-text { display: flex; flex-direction: column; gap: 0.2rem; }
.loc-text strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.1rem;
}
.loc-text span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--warm-grey);
}

.map-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) sepia(20%);
  opacity: 0.85;
}
.map-pin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-pin-card {
  background: rgba(122,66,44,0.92);
  border: 1px solid var(--copper);
  padding: 1rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.map-pin-logo {
  width: 40px;
  height: auto;
  color: var(--copper);
  margin: 0 auto 0.4rem;
}
.map-pin-card p {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
}
.map-pin-card small {
  font-size: 0.6rem;
  color: var(--warm-grey);
  font-weight: 300;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--olive); }

.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(176,113,64,0.1); }

.footer-top-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4rem;
  align-items: start;
}

.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 40px; height: auto; color: var(--copper); }
.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-brand-name em { color: var(--copper); font-style: normal; }
.footer-brand-tag {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--olive-light);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.footer-nav-col a {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--warm-grey);
  transition: color 0.2s ease;
}
.footer-nav-col a:hover { color: var(--cream); }

.footer-social { display: flex; flex-direction: column; gap: 0.8rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--warm-grey);
  transition: color 0.2s ease;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(138,121,104,0.6);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-layout { grid-template-columns: 1fr; }
  .benefits-pillars { flex-direction: row; flex-wrap: wrap; }
  .pillar { flex: 1; min-width: 200px; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { display: none; }
  .coaches-grid,
  .coaches-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(122,66,44,0.98);
    backdrop-filter: blur(16px);
    padding: 3rem 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-toggle { display: flex; }

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

  .reserve-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .step-arrow { display: none; }
  .step { margin: 0; }

  .reserve-cta-inner { padding: 2rem; flex-direction: column; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { flex-direction: column; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }

  .about-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 48px; height: 1px; }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 5rem 0; }
}
