/* ================================================================
   YOGA MÁLAGA — STYLES
   Edit colors in :root, fonts at the top of @import, sections below.
================================================================ */

/* ---- Design tokens ---- */
:root {
  --primary:        #C4844A;   /* terracotta warm */
  --primary-dark:   #A06535;
  --accent:         #4896AA;   /* Mediterranean blue */
  --accent-dark:    #336B7A;
  --green:          #7B9E7B;   /* sage */
  --text:           #2A201A;
  --text-muted:     #6B5F55;
  --text-light:     #9B8E88;
  --bg:             #FDFAF6;   /* warm white */
  --bg-alt:         #F4EDE6;   /* warm sand */
  --bg-dark:        #251E18;   /* espresso */
  --border:         #E2D5CA;
  --shadow-sm:      0 2px 8px rgba(42,32,26,.06);
  --shadow-md:      0 6px 24px rgba(42,32,26,.1);
  --shadow-lg:      0 16px 48px rgba(42,32,26,.14);
  --radius:         12px;
  --radius-lg:      20px;
  --nav-h:          104px;
  --transition:     .25s ease;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}
ul { list-style: none; }
iframe { display: block; width: 100%; border: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
em { font-style: italic; color: var(--primary); }
strong { font-weight: 600; }

/* ---- Utility: container ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section shared ---- */
.section { padding: 96px 0; }
.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-label.center, .section-title.center, .section-intro { text-align: center; }
.section-title { margin-bottom: 16px; }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(196,132,74,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }

/* loading spinner inside button */
.btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: block; }
.btn.loading { pointer-events: none; opacity: .8; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   NAVIGATION
================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #FAF5EF;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-img {
  height: 88px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/foto4.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,20,10,.35) 0%,
    rgba(20,30,40,.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}
.hero-tagline {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}
.hero-title {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-lang {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,.9); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   ABOUT
================================================================ */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 60% center;
  border-radius: var(--radius-lg);
  display: block;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--primary);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: .3;
  z-index: -1;
}
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { color: var(--text-muted); font-size: .975rem; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.badge svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }

/* ================================================================
   PLACEHOLDER IMAGES
================================================================ */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #E8D5C0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .8rem;
  border-radius: var(--radius);
  position: relative;
  min-height: 200px;
}
.placeholder-img::after {
  content: attr(data-label);
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  padding: 8px;
}
.placeholder-img::before {
  content: '';
  width: 40px; height: 40px;
  border: 2px dashed var(--border);
  border-radius: 50%;
  margin-bottom: 8px;
}

/* ================================================================
   SCHEDULE
================================================================ */
.schedule-section { background: var(--bg-alt); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.schedule-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.schedule-card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #FFF8F2 0%, #FEF0E3 100%);
}
.schedule-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.schedule-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
}
.schedule-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}
.schedule-type {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}
.schedule-details {
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-details li {
  font-size: .875rem;
  color: var(--text-muted);
}
.schedule-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.schedule-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.schedule-note a { color: var(--primary); font-weight: 500; }
.schedule-note a:hover { text-decoration: underline; }

/* ================================================================
   CLASS SCHEDULE SECTION
================================================================ */
.schedule-section { background: var(--surface); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}

.schedule-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.schedule-card:hover { box-shadow: var(--shadow-md); }

.schedule-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.schedule-time {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.schedule-type {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .schedule-grid { grid-template-columns: 1fr; gap: 1rem; }
}


/* ================================================================
   BOOKING
================================================================ */
.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFF8F0;
  border: 1px solid #F5D9B8;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 auto 40px;
  max-width: 760px;
  font-size: .925rem;
  color: var(--text-muted);
}
.booking-notice svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 1px; }
.booking-notice strong { color: var(--text); }

.slots-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 8px;
}
.slots-notice svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green); }

.september-notice {
  max-width: 760px;
  margin: 56px auto 0;
  background: linear-gradient(135deg, #EDF6F9 0%, #E3F1F7 100%);
  border: 1px solid #C5E3EF;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.september-notice-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.september-notice h3 { font-size: 1.4rem; color: var(--accent-dark); }
.september-notice p  { font-size: .925rem; color: var(--text-muted); max-width: 520px; }

.booking-section { background: var(--bg); }
.booking-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form-fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-fieldset legend {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  padding: 0;
}

/* Class selector */
.class-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.class-option { position: relative; }
.class-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.class-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: center;
}
.class-option-card strong { font-size: 1rem; font-weight: 600; }
.class-option-card em { font-size: .9rem; color: var(--primary); font-style: normal; font-weight: 600; }
.class-option-card small { font-size: .75rem; color: var(--text-light); }
.class-option input:checked + .class-option-card {
  border-color: var(--primary);
  background: #FFF8F2;
  box-shadow: 0 0 0 3px rgba(196,132,74,.15);
}
.class-option:hover .class-option-card { border-color: var(--primary); }

/* Package selector */
.package-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.package-option { position: relative; }
.package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.package-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: center;
  position: relative;
}
.package-option-card strong { font-size: 1.05rem; font-weight: 600; }
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
}
.package-option-card small { font-size: .78rem; color: var(--text-light); }
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.package-option input:checked + .package-option-card {
  border-color: var(--primary);
  background: #FFF8F2;
  box-shadow: 0 0 0 3px rgba(196,132,74,.15);
}
.package-option:hover .package-option-card { border-color: var(--primary); }

/* Mat option */
.mat-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.mat-option input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.mat-label em { font-style: normal; color: var(--text-light); font-size: .875rem; }

/* Shared form inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.form-group label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.required { color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,132,74,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input.error,
.form-group textarea.error { border-color: #E05555; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field-error {
  font-size: .8rem;
  color: #E05555;
  min-height: 18px;
}
.form-submit { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.form-note { font-size: .8rem; color: var(--text-light); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-lg);
  text-align: center;
}
.form-success svg {
  width: 48px; height: 48px;
  color: #22C55E;
  stroke: #22C55E;
}
.form-success h3 { font-size: 1.4rem; color: #166534; }
.form-success p { color: #15803D; font-size: .95rem; }

/* ================================================================
   PRICING
================================================================ */
.pricing-section { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 32px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--popular {
  border-color: var(--primary);
  background: linear-gradient(160deg, #FFF8F2 0%, #FEF0E3 100%);
}
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}
.pricing-header { text-align: center; }
.pricing-header h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.price-enquire {
  font-size: 2rem;
  color: var(--accent);
}
.price-period { font-size: .85rem; color: var(--text-light); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.pricing-mat-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 8px;
}
.pricing-mat-note svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.pricing-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.pricing-note a { color: var(--primary); font-weight: 500; }
.pricing-note a:hover { text-decoration: underline; }

/* ================================================================
   WHAT TO EXPECT
================================================================ */
.expect-section { background: var(--bg); }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.expect-card {
  padding: 32px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.expect-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.expect-icon {
  width: 52px; height: 52px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.expect-icon svg { width: 24px; height: 24px; color: var(--primary); }
.expect-card h3 { font-size: 1.15rem; }
.expect-card p { font-size: .875rem; color: var(--text-muted); }

/* ================================================================
   VIDEOS
================================================================ */
.videos-section { background: var(--bg-alt); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2B5C6E 0%, #1A3B4A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: default;
  position: relative;
}
.video-play-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.video-play-icon svg { width: 22px; height: 22px; }
.video-placeholder-label {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
  padding: 0 16px;
}
.video-add-note {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 0 12px;
}
.video-card iframe { aspect-ratio: 16/9; }
.video-info { padding: 20px; }
.video-info h3 { font-size: 1rem; margin-bottom: 6px; }
.video-info p { font-size: .85rem; color: var(--text-muted); }

/* ================================================================
   GALLERY
================================================================ */
.gallery-section { background: var(--bg); padding-bottom: 0; }
.gallery-section .container { padding-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-grid--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item { overflow: hidden; }
.gallery-item--large { grid-row: span 2; }
.gallery-item .placeholder-img {
  border-radius: 0;
  min-height: 260px;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid--two .gallery-item img { height: 520px; }
.gallery-item:hover img { transform: scale(1.04); }

/* ================================================================
   CONTACT
================================================================ */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info p { font-size: .95rem; color: var(--text-muted); }
.contact-info .section-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-details svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   FAQ SECTION
================================================================ */
.faq-section { background: var(--surface); }
.faq-container { max-width: 780px; }

.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { content: '−'; }

.faq-answer {
  padding: 0 1.4rem 1.1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer p { margin: 0; }


/* ================================================================
   BLOG SECTION
================================================================ */
.blog-section { background: #fff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); }

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.blog-card-body { padding: 1.5rem; }

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(196,132,74,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.blog-coming-soon {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
.footer-tagline {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer-location { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}
.footer-social {
  margin: 4px 0 8px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-row: span 1; }
}

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

  /* Nav mobile */
  .nav-toggle { display: flex; z-index: 10; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    color: var(--text-muted) !important;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
    border-radius: 50px;
  }
  .nav-toggle span { background: #fff; }
  #navbar.scrolled .nav-toggle span { background: var(--text); }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Booking */
  .class-selector { grid-template-columns: 1fr; }
  .package-selector { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Schedule */
  .schedule-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Expect */
  .expect-grid { grid-template-columns: 1fr; }

  /* Videos */
  .videos-grid { grid-template-columns: 1fr; }

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

  /* Contact */
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}

/* ================================================================
   BOOKING SUCCESS MODAL
================================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.modal-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: slideUp .25s ease;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  padding: 6px;
  color: var(--text-light);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--text); background: var(--bg-alt); }
.modal-close svg { width: 20px; height: 20px; display: block; }
.modal-icon svg {
  width: 56px; height: 56px;
  color: #22C55E;
  stroke: #22C55E;
  margin-bottom: 4px;
}
.modal-box h3 {
  font-size: 1.6rem;
  color: var(--text);
}
.modal-box p { color: var(--text-muted); font-size: .95rem; }
.modal-sub { font-size: .85rem !important; color: var(--text-light) !important; }
.modal-box .btn { margin-top: 8px; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   ACCESSIBILITY
================================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
