/* ========================================
   DESIGN 2: MODERN & BOLD
   Music Center Studios
   ======================================== */

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

:root {
  --navy: #1a1a2e;
  --navy-deep: #12122a;
  --navy-mid: #16213e;
  --charcoal: #0f0f23;
  --coral: #ff6b6b;
  --coral-dark: #e55555;
  --gold: #ffd93d;
  --gold-dark: #e6c235;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --text-dark: #1a1a2e;
  --text-body: #343a40;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted-light: rgba(255, 255, 255, 0.6);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --section-pad: 100px;
  --section-pad-mobile: 64px;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

a:hover { color: var(--coral-dark); }

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

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

/* ---------- NAVIGATION ---------- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.main-nav.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

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

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

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-sub { min-height: 70vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* parallax on desktop via JS */
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.hero-bg-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1e3a5f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(26, 26, 46, 0.5) 40%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 120px;
}

.hero-kinder-logo {
  max-width: 280px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .copy-toggle {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-text,
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-light);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted-light);
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

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

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

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-light {
  background: var(--off-white);
  color: var(--text-body);
}

.section-accent {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08), transparent 70%);
  pointer-events: none;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label-light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-subtitle.light { color: var(--text-muted-light); }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.pillar {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--coral);
  transition: all var(--transition);
}

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

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.pillar h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ---------- PROGRAMS ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.program-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  width: 64px;
  height: 48px;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 217, 61, 0.12);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.programs-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

/* ---------- STATS / COUNTERS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  display: inline;
}

.stat-label {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
}

/* ---------- KINDERMUSIK TEASER ---------- */
.kinder-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.kinder-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.kinder-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.kinder-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.meta-highlight {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 217, 61, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
}

.kinder-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kinder-logo {
  max-width: 260px;
  opacity: 0.9;
}

/* ---------- SUMMER CAMPS ---------- */
.summer-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.summer-text {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.summer-text.light { color: var(--text-light); }

/* ---------- ACTIVITIES ---------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.activity-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.activity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.activity-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.activity-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.activity-item p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ---------- LOCATIONS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.location-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 16px;
}

.location-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.location-address {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.location-note {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 20px;
}

/* ---------- CONTACT ---------- */
.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  color: var(--text-light);
  text-decoration: none;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-detail {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.contact-detail a {
  color: var(--text-light);
}

.contact-detail a:hover {
  color: var(--white);
}

/* ---------- FOOTER ---------- */
.main-footer {
  background: var(--charcoal);
  padding: 64px 0 0;
  color: var(--text-muted-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--text-muted-light);
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- COPY TOGGLE BUTTON ---------- */
.copy-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.copy-toggle-btn:hover {
  background: var(--navy-mid);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.copy-toggle-btn.active {
  background: var(--coral);
  border-color: var(--coral-dark);
}

.toggle-icon { font-size: 16px; }

/* Copy toggle highlight animation */
.copy-toggle.highlight {
  animation: copyFlash 0.6s ease;
}

@keyframes copyFlash {
  0% { background-color: transparent; }
  30% { background-color: rgba(255, 217, 61, 0.25); }
  100% { background-color: transparent; }
}

/* ---------- KINDERMUSIK PAGE SPECIFIC ---------- */
.kinder-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.kinder-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.kinder-lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Levels */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.level-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.level-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.level-featured {
  border-color: var(--gold);
}

.level-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
}

.level-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.level-age {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255, 107, 107, 0.2);
  color: var(--coral);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 8px;
}

.level-header h3 {
  font-size: 1.4rem;
  color: var(--white);
}

.level-body {
  padding: 24px 28px 32px;
}

.level-body p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.level-schedule h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.level-schedule ul {
  list-style: none;
  margin-bottom: 20px;
}

.level-schedule li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.level-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.price small {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--text-muted-light);
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

/* Pricing highlights */
.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.pricing-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--coral);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-amount small {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--medium-gray);
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.pricing-desc em {
  color: var(--coral);
  font-style: normal;
  font-weight: 600;
}

/* Enrollment info boxes */
.enrollment-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-box {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-box p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .levels-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

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

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll-indicator { display: none; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Kindermusik teaser */
  .kinder-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .kinder-meta {
    justify-content: center;
  }

  /* Activities */
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* Pricing */
  .pricing-highlights {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .enrollment-info {
    grid-template-columns: 1fr;
  }

  /* Copy toggle */
  .copy-toggle-btn {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .toggle-label {
    display: none;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }

  .container { padding: 0 16px; }

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

  .program-card { padding: 28px 24px; }

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

  .stats-grid { gap: 24px; }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
  .hero-bg { transform: none; }
}


/* ---------- Enrollment Form ---------- */
.enrollment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .enrollment-layout {
    grid-template-columns: 1.3fr 0.7fr;
    max-width: 1000px;
  }
}

.enrollment-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.enrollment-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .enrollment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.enrollment-full-width {
  grid-column: 1 / -1;
}

.enrollment-form .form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
}

.enrollment-form .form-group input,
.enrollment-form .form-group textarea,
.enrollment-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.enrollment-form .form-group input::placeholder,
.enrollment-form .form-group textarea::placeholder {
  color: var(--text-muted-light);
}

.enrollment-form .form-group input:focus,
.enrollment-form .form-group textarea:focus,
.enrollment-form .form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.enrollment-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23ffd93d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.enrollment-form .form-group select option {
  background: var(--navy);
  color: var(--white);
}

.enrollment-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.enrollment-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
