/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --pink: #FF008A;
  --pink-light: #FF3DA6;
  --pink-dark: #D40073;
  --pink-soft: #FFD6EB;
  --pink-bg: #FFF0F7;
  --blush: #FFE8F3;
  --white: #FFFFFF;
  --cream: #FFFAF9;
  --charcoal: #2D2D2D;
  --text: #4A4048;
  --text-light: #8A7E85;
  --border: #F0E4E8;
  --shadow-sm: 0 2px 12px rgba(255,0,138,0.06);
  --shadow-md: 0 8px 30px rgba(255,0,138,0.1);
  --shadow-lg: 0 20px 50px rgba(255,0,138,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  background: var(--pink);
  box-shadow: 0 2px 20px rgba(255,0,138,0.25);
}
nav.scrolled {
  background: var(--pink);
  box-shadow: 0 2px 25px rgba(255,0,138,0.3);
  padding: 0.7rem 5%;
}
.nav-logo img { height: 84px; transition: height 0.4s; filter: brightness(0) invert(1); }
nav.scrolled .nav-logo img { height: 70px; }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: var(--white);
  text-decoration: none; letter-spacing: 0.03em; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--white);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1); border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 0.55rem 1.6rem !important; background: var(--white) !important;
  color: var(--pink) !important; border-radius: 50px; font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: all 0.4s !important; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.nav-cta:hover { background: var(--cream) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--white); transition: all 0.4s; border-radius: 2px; }

/* ═══════════════════════════════════════
   BOTONES
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2.2rem;
  background: var(--pink); color: var(--white); text-decoration: none;
  font-size: 0.875rem; font-weight: 600; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 8px 25px rgba(255,0,138,0.3);
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(255,0,138,0.4); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 2rem;
  background: transparent; color: var(--pink); text-decoration: none;
  font-size: 0.875rem; font-weight: 600; border-radius: 50px;
  border: 2px solid var(--pink); cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  font-family: 'Poppins', sans-serif;
}
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,0,138,0.3); }

/* ═══════════════════════════════════════
   SECCIONES
═══════════════════════════════════════ */
section { padding: 6rem 8%; }
.section-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 0.6rem; display: block; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.section-subtitle { font-size: 0.93rem; font-weight: 300; color: var(--text-light); max-width: 520px; line-height: 1.75; }

/* ═══════════════════════════════════════
   PAGE BANNER (páginas internas)
═══════════════════════════════════════ */
.page-banner {
  background: var(--pink);
  padding: 9rem 8% 4.5rem;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(212,0,115,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.page-banner-content { position: relative; z-index: 1; max-width: 640px; }
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 0.9rem;
}
.page-banner p {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.82); line-height: 1.75; max-width: 500px;
}

/* ═══════════════════════════════════════
   HERO (index.html)
═══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
  background: var(--white); padding-top: 96px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 60%, var(--pink-soft) 0%, transparent 55%),
              radial-gradient(ellipse at 5% 30%, var(--blush) 0%, transparent 45%);
  pointer-events: none; opacity: 0.45;
}
.hero-content {
  position: relative; z-index: 2; padding: 2rem 5% 2rem 8%;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--charcoal); line-height: 1.18; margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; font-weight: 600; color: var(--pink); }
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--text-light); line-height: 1.75;
  max-width: 420px; margin-bottom: 2.4rem;
  animation: fadeUp 0.9s 0.25s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero .btn-primary {
  animation: fadeUp 0.9s 0.4s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero-image-wrap {
  position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: center; padding: 2rem 6% 2rem 2%;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero-image-frame { position: relative; width: 100%; max-width: 420px; }
.hero-image-frame::after {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  box-shadow: inset 0 0 0 2px rgba(255,0,138,0.12); pointer-events: none;
}
.hero-image-frame img { width: 100%; border-radius: 24px; box-shadow: 0 24px 60px rgba(255,0,138,0.18); display: block; }

/* ═══════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════ */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }

.service-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(255,0,138,0.13); }
.service-img-wrap { overflow: hidden; height: 340px; position: relative; }
.service-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.service-card:hover .service-img { transform: scale(1.04); }
.service-body { padding: 1.6rem 1.8rem 2rem; }
.service-icon {
  width: 42px; height: 42px; background: var(--pink-soft); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--pink);
}
.service-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.service-body p { font-size: 0.875rem; line-height: 1.75; color: var(--text-light); font-weight: 300; }
.service-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-size: 0.82rem; font-weight: 600; color: var(--pink); text-decoration: none; transition: gap 0.3s; }
.service-link:hover { gap: 0.8rem; }

/* ═══════════════════════════════════════
   ACERCA DE
═══════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; background: var(--cream); }
.about-image-wrap { position: relative; }
.about-image { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }
.about-image-accent { position: absolute; bottom: -16px; right: -16px; width: 140px; height: 140px; background: var(--pink-soft); border-radius: 20px; z-index: -1; }
.about-text p { font-size: 0.92rem; line-height: 1.85; color: var(--text); margin-top: 1.2rem; font-weight: 300; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.highlight-card { background: var(--white); border-radius: 12px; padding: 1.2rem 1.4rem; border: 1px solid var(--border); transition: all 0.3s; }
.highlight-card:hover { border-color: var(--pink-soft); box-shadow: var(--shadow-sm); }
.highlight-icon { color: var(--pink); margin-bottom: 0.5rem; }
.highlight-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.25rem; }
.highlight-card p { font-size: 0.78rem !important; color: var(--text-light) !important; margin-top: 0 !important; line-height: 1.5 !important; }

/* About page specific */
.about-page-bio { background: var(--white); }
.about-page-bio .about { background: var(--white); }
.about-page-credentials { background: var(--cream); }
.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.credential-card {
  background: var(--white); border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center; border: 1px solid var(--border); transition: all 0.3s;
}
.credential-card:hover { border-color: var(--pink-soft); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.credential-icon { width: 56px; height: 56px; background: var(--pink-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--pink); }
.credential-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.credential-card p { font-size: 0.8rem; color: var(--text-light); font-weight: 300; line-height: 1.5; }
.credential-year { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--pink); background: var(--pink-soft); padding: 0.2rem 0.7rem; border-radius: 20px; margin-top: 0.6rem; letter-spacing: 0.05em; }

.about-philosophy { background: var(--white); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.philosophy-card {
  padding: 2rem; border-radius: 16px; border: 1px solid var(--border);
  transition: all 0.3s; background: var(--cream);
}
.philosophy-card:hover { border-color: var(--pink-soft); box-shadow: var(--shadow-sm); }
.philosophy-card-icon { width: 48px; height: 48px; background: var(--pink-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--pink); }
.philosophy-card h4 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.philosophy-card p { font-size: 0.875rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }

/* ═══════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card {
  padding: 2rem; background: var(--cream); border-radius: 16px;
  border: 1px solid var(--border); transition: all 0.4s; position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.testimonial-quote { font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 700; color: var(--pink); opacity: 0.18; line-height: 1; position: absolute; top: 0.8rem; right: 1.4rem; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star { width: 16px; height: 16px; color: var(--pink); }
.testimonial-card > p { font-size: 0.92rem; font-style: italic; line-height: 1.75; color: var(--text); font-weight: 300; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--pink);
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.testimonial-location { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }
.testimonial-tag { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink); background: var(--pink-soft); padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block; margin-top: 0.25rem; font-weight: 600; }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog { background: var(--cream); }
.blog-header { text-align: center; margin-bottom: 3.5rem; }
.blog-header .section-subtitle { margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 860px; margin: 0 auto; }

.blog-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.4s; text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.blog-card-icon { height: 160px; background: linear-gradient(135deg, var(--pink-soft), var(--blush)); display: flex; align-items: center; justify-content: center; color: var(--pink); opacity: 0.5; }
.blog-card-body { padding: 1.5rem 1.8rem; }
.blog-date { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--charcoal); line-height: 1.45; transition: color 0.3s; }
.blog-card:hover .blog-card-body h3 { color: var(--pink); }

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #D40073 0%, #FF008A 40%, #FF3DA6 100%);
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 4rem;
  position: relative; overflow: hidden; padding: 5rem 8%;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 2; }
.cta-text .section-label { color: rgba(255,255,255,0.7); }
.cta-text .section-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-text .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-text .btn-primary { background: var(--white); color: var(--pink); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.cta-text .btn-primary:hover { background: var(--cream); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }

.cta-image-wrap { position: relative; z-index: 2; display: flex; justify-content: center; }
.cta-image-frame { position: relative; max-width: 380px; width: 100%; }
.cta-image-frame::before { content: ''; position: absolute; bottom: -10px; left: -10px; width: 100%; height: 100%; border: 2px solid rgba(255,255,255,0.15); border-radius: 16px; }
.cta-image-frame img { width: 100%; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); display: block; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--charcoal); padding: 4rem 8% 2rem; color: rgba(255,255,255,0.5); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { height: 52px; filter: brightness(10); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; font-weight: 300; max-width: 300px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s; text-decoration: none; }
.footer-social a:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,0,138,0.1); }

.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; letter-spacing: 0.03em; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 0.65rem; transition: color 0.3s; font-weight: 300; }
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════
   WHATSAPP
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; z-index: 999; box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  transition: all 0.3s; text-decoration: none; animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.35); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55); } }

/* ═══════════════════════════════════════
   REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(25px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   AGENDAMIENTOS
═══════════════════════════════════════ */
.schedule-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.schedule-card {
  background: var(--white); border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid var(--border); transition: all 0.4s; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.schedule-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.schedule-card-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.schedule-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.schedule-card p { font-size: 0.875rem; color: var(--text-light); font-weight: 300; line-height: 1.7; }
.schedule-info { background: var(--cream); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--pink-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--pink); }
.info-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; }
.info-item p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 4.5rem 5%; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 110px; }
  .hero-content { padding: 3rem 6% 1.5rem; text-align: center; }
  .hero h1 br { display: none; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-image-wrap { padding: 0 12% 3rem; }
  .hero-image-frame { max-width: 380px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .cta-section { grid-template-columns: 1fr; text-align: center; }
  .cta-text .section-subtitle { margin: 0 auto 2rem; }
  .cta-image-wrap { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .schedule-options { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(42,42,42,0.97); backdrop-filter: blur(20px);
    justify-content: center; align-items: center; gap: 2rem; z-index: 1000;
  }
  .nav-links.open a { color: var(--white) !important; font-size: 1.1rem; }
  .nav-links.open .nav-cta { color: var(--pink) !important; }
  .hero-content { padding: 2rem 5%; }
  .hero h1 { font-size: 2rem; }
  .hero-image-wrap { padding: 0 8% 2rem; }
  .services-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .about-highlights, .info-grid { grid-template-columns: 1fr; }
  .credentials-grid, .philosophy-grid, .schedule-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 3.5rem 5%; }
  .page-banner { padding: 7rem 5% 3rem; }
}
