/* ═══════════════════════════════════════════════
   Kuchipudi Kalakshetra — Mobile-First Redesign
   Base styles = mobile. Scale up with min-width.
   ═══════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --bg: #FAF9F6;
  --bg-warm: #F3F0EB;
  --bg-dark: #1A1410;
  --bg-section: #F5F2ED;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #9A9A9A;
  --accent: #B8860B;
  --accent-light: #D4A843;
  --accent-deep: #8B6508;
  --border: #E5E3DF;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.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; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .section-title { font-size: 40px; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION — Mobile base
   ═══════════════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: transform 0.4s ease, background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  padding: 12px 20px;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.5s, text-shadow 0.5s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
}
nav.scrolled .nav-logo { text-shadow: none; color: var(--text-primary); }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.5s, text-shadow 0.5s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
nav.scrolled .nav-links a { text-shadow: none; color: var(--text-secondary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

/* Hamburger — visible on mobile */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
nav.scrolled .nav-hamburger span { filter: none; background: var(--text-primary); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); background: #fff; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); background: #fff; }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 2px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  padding: 8px 0;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:hover { color: var(--accent-light); }

/* ═══════════════════════════════════════════════
   HERO — Mobile base
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}
.hero h1 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 1s 0.2s forwards;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 16px auto 28px;
  max-width: 380px;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.8s 0.5s forwards;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--accent-light);
  margin-top: 12px;
  margin-bottom: 4px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.8s 0.4s forwards;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  font-family: var(--sans);
  opacity: 0; transform: translateY(16px);
  animation: heroFadeUp 0.8s 0.7s forwards;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════
   EXPANDING GALLERY — Collection strips
   ═══════════════════════════════════════════════ */
.expanding-gallery {
  display: flex;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
}
.expanding-gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}
.expanding-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.expanding-gallery-item:hover { flex: 3; }
.expanding-gallery-item:hover img { transform: scale(1.05); }
.expanding-gallery-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}
.expanding-gallery-item:hover .expanding-gallery-info {
  opacity: 1;
  transform: translateY(0);
}
.expanding-gallery-collection {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1px;
}
.expanding-gallery-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Mobile: stack 2-column grid */
@media (max-width: 767px) {
  .expanding-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: unset;
  }
  .expanding-gallery-item {
    height: 200px;
  }
  .expanding-gallery-info {
    opacity: 1;
    transform: translateY(0);
    padding: 16px 12px;
  }
  .expanding-gallery-collection { font-size: 18px; }
  .expanding-gallery-name { font-size: 10px; }
}

/* ═══════════════════════════════════════════════
   SECTION DIVIDER CTA
   ═══════════════════════════════════════════════ */
.section-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 48px 24px;
  justify-content: center;
}
.section-cta-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--border);
}
.section-cta-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.section-cta-link:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   ABOUT PREVIEW (homepage)
   ═══════════════════════════════════════════════ */
.about-preview {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-preview-image {
  border-radius: 2px;
  overflow: hidden;
}
.about-preview-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-preview-text h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-preview-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.about-preview-text .text-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: gap 0.3s;
}
.about-preview-text .text-link:hover { gap: 14px; }

@media (min-width: 768px) {
  .about-preview { padding: 120px 48px; }
  .about-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .about-preview-text h2 { font-size: 36px; }
}

/* ═══════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-strip-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
  display: none;
}
@media (min-width: 768px) {
  .trust-strip { gap: 0; flex-wrap: nowrap; padding: 48px 24px; }
  .trust-strip-item { flex: 1; text-align: center; }
  .trust-strip-divider { display: block; }
}

/* ═══════════════════════════════════════════════
   FEATURED SECTION (horizontal scroll on mobile)
   ═══════════════════════════════════════════════ */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.section-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.section-link:hover { color: var(--accent); }

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.photo-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.photo-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s ease;
}
.photo-grid-item:hover img { transform: scale(1.05); }
.photo-grid-item .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-grid-item:hover .photo-caption { opacity: 1; }

@media (min-width: 768px) {
  .section { padding: 120px 48px; }
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════ */
.testimonial-section {
  background: var(--bg-section);
  padding: 80px 24px;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 24px;
}
.testimonial-attribution {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .testimonial-section { padding: 120px 48px; }
  .testimonial-quote { font-size: 28px; }
}

/* ═══════════════════════════════════════════════
   CTA SECTION (Register / Contact)
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--display);
  font-size: 32px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--bg-dark);
  color: #fff;
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: #333; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline:hover { background: var(--text-primary); color: #fff; }

/* ═══════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════════ */
.page-header {
  background: var(--bg-dark);
  padding: 140px 24px 60px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--display);
  font-size: 36px;
  color: #fff;
  letter-spacing: 1px;
}
.page-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .page-header { padding: 160px 48px 80px; }
  .page-header h1 { font-size: 48px; }
}

/* ═══════════════════════════════════════════════
   CONTENT SECTIONS (About, Kuchipudi history etc.)
   ═══════════════════════════════════════════════ */
.content-section {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.content-section h2 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.content-section p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.content-section p:last-child { margin-bottom: 0; }

.content-with-image {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.content-with-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.content-with-image-grid img {
  width: 100%;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .content-section { padding: 80px 48px; }
  .content-section h2 { font-size: 36px; }
  .content-with-image { padding: 80px 48px; }
  .content-with-image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Guru / bio cards */
.guru-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 60px 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.guru-card-image {
  overflow: hidden;
  border-radius: 2px;
}
.guru-card-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.guru-card-text h3 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 8px;
}
.guru-card-text .guru-titles {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.guru-card-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .guru-card {
    grid-template-columns: 300px 1fr;
    gap: 48px;
    padding: 80px 48px;
  }
  .guru-card-text h3 { font-size: 32px; }
}

/* ═══════════════════════════════════════════════
   RANGAPRAVESAM GRID
   ═══════════════════════════════════════════════ */
.rangapravesam-year {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rangapravesam-year h2 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rangapravesam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rangapravesam-card {
  text-align: center;
}
.rangapravesam-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 12px;
}
.rangapravesam-card .student-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.rangapravesam-card .student-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .rangapravesam-year { padding: 80px 48px; }
  .rangapravesam-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
@media (min-width: 1024px) {
  .rangapravesam-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════ */
.events-list {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.event-card:first-child { padding-top: 0; }
.event-card-image {
  overflow: hidden;
  border-radius: 2px;
}
.event-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.event-card-content h3 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 8px;
}
.event-card-content .event-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.event-card-content .event-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.event-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .events-list { padding: 80px 48px; }
  .event-card { grid-template-columns: 280px 1fr; gap: 32px; }
  .event-card-content h3 { font-size: 26px; }
}

/* ═══════════════════════════════════════════════
   REGISTER FORM
   ═══════════════════════════════════════════════ */
.register-intro {
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.register-intro h2 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 16px;
}
.register-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.class-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.class-info-card {
  background: var(--bg-section);
  padding: 32px;
  border-radius: 2px;
  text-align: center;
}
.class-info-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
}
.class-info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .class-info { grid-template-columns: repeat(3, 1fr); padding: 0 48px 80px; }
}

.register-form-section {
  padding: 60px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.register-form-section h2 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 32px;
  text-align: center;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--sans);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.form-checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-primary);
  cursor: pointer;
}
.form-checkboxes input[type="checkbox"] {
  width: 18px; height: 18px;
  padding: 0;
}
.form-submit {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════
   LOCATIONS MAP
   ═══════════════════════════════════════════════ */
.locations-section {
  background: var(--bg-section);
  padding: 80px 24px;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.location-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
}
.location-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .locations-section { padding: 120px 48px; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 24px 32px;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  font-family: var(--display);
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--accent-light); }
.footer-contact {
  font-size: 13px;
  line-height: 1.8;
}
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
@media (min-width: 768px) {
  footer { padding: 80px 48px 40px; }
  .footer-main { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════
   DESKTOP OVERRIDES
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }
  nav { padding: 20px 48px; }
  nav.scrolled { padding: 14px 48px; }
  .hero { padding-bottom: 120px; }
  .hero h1 { font-size: 56px; }
  .hero-subtitle { font-size: 15px; max-width: 450px; }
  .hero-tagline { font-size: 18px; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 64px; }
}

/* ═══════════════════════════════════════════════
   GALLERY PAGE — Video grid
   ═══════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #000;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.video-card .video-title {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg);
}
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 80px 48px;
  }
}
@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════
   OUR STUDIO — Homepage venue showcase
   ═══════════════════════════════════════════════ */
.studio-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.studio-header {
  max-width: 640px;
  margin-bottom: 40px;
}
.studio-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 16px;
}
.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.studio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin: 0;
}
.studio-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.studio-item:hover img { transform: scale(1.04); }
.studio-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.studio-cap-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .studio-section { padding: 120px 48px; }
  .studio-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ═══════════════════════════════════════════════
   GALLERY FILTER TABS
   ═══════════════════════════════════════════════ */
.gallery-tabs {
  display: flex;
  gap: 8px;
  padding: 40px 24px 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--sans);
}
.gallery-tab:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.gallery-tab.active {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
