/* =============================================
   КОНФЕТТИ — Студия эстрадной песни
   Единый CSS-файл
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:        #7C3AED;
  --primary-light:  #A78BFA;
  --primary-dark:   #5B21B6;
  --secondary:      #F59E0B;
  --secondary-dark: #D97706;
  --accent-red:     #EF4444;
  --accent-teal:    #06B6D4;
  --accent-green:   #10B981;
  --accent-pink:    #EC4899;
  --text:           #111827;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --bg:             #FFFFFF;
  --bg-light:       #FAF5FF;
  --bg-section:     #F9FAFB;
  --bg-dark:        #1E1B4B;
  --border:         #E5E7EB;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:         0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:      0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-xl:      0 20px 40px rgba(0,0,0,0.12);
  --gradient:       linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
  --gradient-hero:  linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #4C1D95 100%);
  --radius-sm:      0.375rem;
  --radius:         0.75rem;
  --radius-lg:      1.25rem;
  --radius-xl:      2rem;
  --font-heading:   'Nunito', sans-serif;
  --font-body:      'Inter', sans-serif;
  --transition:     0.3s ease;
  --max-width:      1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header { margin-bottom: 3rem; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-light { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }
.bg-dark {
  background: var(--bg-dark);
  color: #fff;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.bg-dark p, .bg-dark li { color: rgba(255,255,255,0.8); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.35);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}
.btn-red {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}
.btn-red:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239,68,68,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn-icon { font-size: 1.2em; }

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
}
.badge-gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  border: 1px solid #F59E0B;
}
.badge-purple {
  background: rgba(124,58,237,0.1);
  color: var(--primary);
  border: 1px solid rgba(124,58,237,0.2);
}
.badge-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(124,58,237,0.06);
}
/* Белые ссылки до скролла (хедер прозрачный над hero) */
.header:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.92);
}
.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.header:not(.scrolled) .header-cta .btn-primary {
  background: #fff;
  color: var(--primary);
}
.header:not(.scrolled) .header-cta .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}
/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.header-cta { flex-shrink: 0; }
/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.header:not(.scrolled) .hamburger span {
  background: rgba(255,255,255,0.92);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30,27,75,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--primary-light); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  max-width: 750px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--bg-dark);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-xl);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), transparent);
  border-radius: var(--radius-xl);
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.about-highlight-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-highlight-text { font-size: 0.95rem; color: var(--text); }
.about-highlight-text strong { color: var(--primary); }

/* =============================================
   WHAT AWAITS SECTION
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl);
}
.feature-card:nth-child(1) .feature-icon { color: var(--primary); }
.feature-card:nth-child(2) .feature-icon { color: var(--accent-pink); }
.feature-card:nth-child(3) .feature-icon { color: var(--accent-teal); }
.feature-card:nth-child(4) .feature-icon { color: var(--secondary); }
.feature-card:nth-child(5) .feature-icon { color: var(--accent-green); }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.feature-text { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* =============================================
   CLASSES SECTION
   ============================================= */
.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.class-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.class-card-vocal {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  border: 2px solid var(--primary-light);
}
.class-card-dance {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 2px solid var(--accent-green);
}
.class-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.class-card h3 { margin-bottom: 1.25rem; }
.class-card-vocal h3 { color: var(--primary); }
.class-card-dance h3 { color: #059669; }
.class-list { display: flex; flex-direction: column; gap: 0.5rem; }
.class-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
  color: var(--text);
}
.class-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.class-card-vocal .class-list li::before {
  background: var(--primary);
  color: #fff;
}
.class-card-dance .class-list li::before {
  background: var(--accent-green);
  color: #fff;
}

/* =============================================
   GROUPS SECTION
   ============================================= */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.group-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.group-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.group-card:nth-child(1)::before { background: var(--accent-pink); }
.group-card:nth-child(2)::before { background: var(--accent-teal); }
.group-card:nth-child(3)::before { background: var(--secondary); }
.group-card:nth-child(4)::before { background: var(--accent-green); }
.group-card:nth-child(5)::before { background: var(--primary); }
.group-card:nth-child(6)::before { background: var(--accent-red); }
.group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.group-emoji { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.group-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.375rem;
}
.group-desc { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* =============================================
   VICTORIES PREVIEW
   ============================================= */
.victories-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}
.victories-scroll::-webkit-scrollbar { height: 4px; }
.victories-scroll::-webkit-scrollbar-track { background: transparent; }
.victories-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 2px; }
.victory-preview-card {
  flex-shrink: 0;
  width: 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.victory-preview-card.grand-prix {
  border-color: var(--secondary);
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}
.victory-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}
.victory-badge.grand-prix { background: var(--secondary); color: #fff; }
.victory-badge.laureate-1 { background: var(--accent-green); color: #fff; }
.victory-badge.laureate-2 { background: var(--accent-teal); color: #fff; }
.victory-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
.victory-info { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.victories-cta {
  text-align: center;
  margin-top: 2rem;
}

/* =============================================
   DIRECTOR TEASER
   ============================================= */
.director-teaser {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(124,58,237,0.1);
}
.director-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-lg);
}
.director-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.director-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.director-roles {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.director-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

/* =============================================
   PRICING / CTA SECTION
   ============================================= */
.pricing-section {
  background: var(--gradient);
  padding: 5rem 0;
  text-align: center;
}
.pricing-section h2 { color: #fff; margin-bottom: 0.5rem; }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.price-card {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  padding: 2rem 3rem;
  margin-bottom: 2rem;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-unit { font-size: 1.2rem; color: rgba(255,255,255,0.8); }
.price-desc { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* =============================================
   CONTACTS SECTION
   ============================================= */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-icon-purple { background: rgba(124,58,237,0.1); }
.contact-icon-teal { background: rgba(6,182,212,0.1); }
.contact-icon-green { background: rgba(16,185,129,0.1); }
.contact-icon-red { background: rgba(239,68,68,0.1); }
.contact-icon-orange { background: rgba(245,158,11,0.1); }
.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.contact-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.contact-value a { color: var(--primary); }
.contact-value a:hover { text-decoration: underline; }
.map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-section);
  height: 350px;
  border: 1px solid var(--border);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   NEWS CARDS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124,58,237,0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.news-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 600; }
.news-card-title {
  font-size: 1rem; font-weight: 800; color: var(--text);
  margin-bottom: 0.6rem; font-family: var(--font-heading); line-height: 1.3;
}
.news-card-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  padding: 3.5rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer-contact-item a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   FLOATING BUTTON (CTA)
   ============================================= */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all var(--transition);
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.float-btn-tg { background: #2AABEE; color: #fff; }
.float-btn-vk { background: #4680C2; color: #fff; }
.float-label {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.float-btn:hover .float-label { opacity: 1; }

/* =============================================
   PAGE HERO (for inner pages)
   ============================================= */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.5; }

/* =============================================
   DIRECTOR PAGE
   ============================================= */
.director-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.director-sidebar {
  position: sticky;
  top: 100px;
}
.director-photo-large {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.director-sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(124,58,237,0.1);
  margin-bottom: 1rem;
}
.director-sidebar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.director-content-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.director-content-section h3 {
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-light);
  font-size: 1.2rem;
}
.timeline { display: flex; flex-direction: column; gap: 0.875rem; }
.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.timeline-text { font-size: 0.95rem; }
.masterclass-list { display: flex; flex-direction: column; gap: 0.625rem; }
.masterclass-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.masterclass-year {
  background: var(--primary);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
  white-space: nowrap;
}
.award-list { display: flex; flex-direction: column; gap: 0.75rem; }
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-radius: var(--radius);
  border: 1px solid rgba(245,158,11,0.2);
  font-size: 0.9rem;
}
.award-icon { font-size: 1.25rem; flex-shrink: 0; }

/* =============================================
   SCHEDULE PAGE
   ============================================= */
.schedule-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.schedule-header-row {
  display: grid;
  grid-template-columns: 100px repeat(6, 1fr);
  background: var(--gradient);
}
.schedule-header-cell {
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}
.schedule-row {
  display: grid;
  grid-template-columns: 100px repeat(6, 1fr);
  border-bottom: 1px solid var(--border);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:nth-child(even) { background: var(--bg-light); }
.schedule-time {
  padding: 0.875rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-cell {
  padding: 0.75rem;
  border-right: 1px solid var(--border);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-cell:last-child { border-right: none; }
.schedule-class {
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1.3;
  width: 100%;
}
.schedule-class-vocal {
  background: rgba(124,58,237,0.1);
  color: var(--primary);
  border: 1px solid rgba(124,58,237,0.2);
}
.schedule-class-dance {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
}
.schedule-class-both {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.1));
  color: var(--accent-teal);
  border: 1px solid rgba(6,182,212,0.2);
}
.schedule-legend {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.schedule-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.legend-dot-vocal { background: var(--primary); }
.legend-dot-dance { background: var(--accent-green); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-text { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* =============================================
   VICTORIES PAGE
   ============================================= */
.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.year-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--bg-section);
  color: var(--text-muted);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.year-tab:hover { background: var(--bg-light); color: var(--primary); }
.year-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.year-section { display: none; }
.year-section.visible { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.year-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}
.competition-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.competition-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.competition-card.has-grand-prix {
  border-color: var(--secondary);
  background: linear-gradient(135deg, #fff, #FFFBEB);
}
.competition-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.competition-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
}
.competition-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.competition-results {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.result-tag.grand-prix { background: var(--secondary); color: #fff; }
.result-tag.laureate-1 { background: #ECFDF5; color: #059669; border: 1px solid #6EE7B7; }
.result-tag.laureate-2 { background: #EFF6FF; color: #2563EB; border: 1px solid #BFDBFE; }
.result-tag.laureate-3 { background: #FFF7ED; color: #C2410C; border: 1px solid #FED7AA; }
.result-tag.diploma { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* =============================================
   REPERTOIRE PAGE
   ============================================= */
.repertoire-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.repertoire-group-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.repertoire-group-header {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.repertoire-group-header:nth-child(1) { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); }
.repertoire-group-emoji-big {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.repertoire-group-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.repertoire-group-desc { color: var(--text-muted); margin: 0; }
.repertoire-group-songs {
  padding: 1.5rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.song-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.song-item:hover { background: var(--bg-light); }
.song-icon { font-size: 1rem; flex-shrink: 0; }
.hymn-section {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.hymn-section h3 { color: #fff; margin-bottom: 0.75rem; font-size: 1.5rem; }
.hymn-section p { color: rgba(255,255,255,0.85); margin: 0; }

/* =============================================
   FOR PARENTS PAGE
   ============================================= */
.parents-alert {
  background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.parents-alert-icon { font-size: 2rem; flex-shrink: 0; }
.parents-alert-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #92400E;
  margin-bottom: 0.375rem;
}
.parents-alert-text { color: #78350F; font-size: 0.95rem; margin: 0; }
.parents-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.parents-sidebar { position: sticky; top: 100px; }
.info-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.info-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.outfit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.outfit-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.outfit-icon { font-size: 1.1rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-question {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  user-select: none;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-chevron {
  font-size: 0.9rem;
  transition: transform var(--transition);
  color: var(--primary);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.25rem 1rem; }
.sidebar-cta-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.sidebar-cta-card h4 { color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.25rem; }
.sidebar-contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 400px; }
  .director-layout { grid-template-columns: 1fr; }
  .director-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .director-photo-large { grid-column: 1 / -1; max-width: 350px; margin: 0 auto; }
  .contacts-grid { grid-template-columns: 1fr; }
  .map-placeholder { height: 280px; }
  .parents-layout { grid-template-columns: 1fr; }
  .parents-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .section { padding: 3rem 0; }
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .groups-grid { grid-template-columns: repeat(2, 1fr); }
  .classes-grid { grid-template-columns: 1fr; }
  .director-teaser { grid-template-columns: 1fr; text-align: center; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .outfit-list { grid-template-columns: 1fr; }
  .schedule-header-row { grid-template-columns: 70px repeat(6, 1fr); }
  .schedule-row { grid-template-columns: 70px repeat(6, 1fr); }
  .director-sidebar { grid-template-columns: 1fr; }
  .parents-sidebar { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem 0 3rem; }
  .float-cta { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .groups-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .year-tabs { gap: 0.375rem; }
  .year-tab { padding: 0.4rem 1rem; font-size: 0.875rem; }
  .schedule-wrapper { overflow-x: auto; }
  .schedule-header-row, .schedule-row {
    min-width: 600px;
  }
}
