/* ============================================
   Zeel's Studio — Dance & Events
   Velvet stage aesthetic: plum + rose gold
   ============================================ */

:root {
  --color-bg: #0c0612;
  --color-bg-elevated: #140d1e;
  --color-bg-card: #1a1228;
  --color-surface: #221832;

  --color-cream: #fff8f2;
  --color-cream-muted: #b8a8c0;

  --color-accent: #e8b4a0;
  --color-accent-light: #f5d5c8;
  --color-fuchsia: #d946a8;
  --color-fuchsia-deep: #a21caf;
  --color-gold: #c9a227;
  --color-plum: #2d1b4e;
  --color-plum-light: #4a3070;
  --color-lavender: #a78bfa;

  /* Legacy aliases */
  --color-saffron: var(--color-accent);
  --color-saffron-light: var(--color-accent-light);
  --color-maroon: var(--color-fuchsia-deep);
  --color-maroon-deep: #5c1050;
  --color-teal: #7c6ba0;
  --color-teal-light: var(--color-lavender);
  --color-rose: var(--color-fuchsia);

  --color-text: var(--color-cream);
  --color-text-muted: var(--color-cream-muted);

  --font-display: 'Manrope', sans-serif;
  --font-serif: 'Italiana', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 100%;
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --radius: 12px;
  --radius-lg: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-2xl);
}

em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent-light);
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow {
    opacity: 1;
  }
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(15, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 235, 224, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  color: var(--color-saffron);
  font-size: 1.4rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-saffron);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--color-text);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--color-saffron);
  color: var(--color-bg) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

.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);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-light));
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 168, 56, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(245, 235, 224, 0.25);
}

.btn-ghost:hover {
  border-color: var(--color-saffron);
  color: var(--color-saffron);
  background: rgba(232, 168, 56, 0.08);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--color-maroon);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--color-teal);
  bottom: 10%;
  left: -10%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--color-saffron);
  top: 40%;
  left: 30%;
  opacity: 0.25;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Garba-inspired rotating rings */
.garba-ring {
  position: absolute;
  border: 1px solid rgba(232, 168, 56, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.garba-ring--1 {
  width: 600px;
  height: 600px;
  animation: rotate 60s linear infinite;
}

.garba-ring--2 {
  width: 450px;
  height: 450px;
  border-style: dashed;
  animation: rotate 45s linear infinite reverse;
}

.garba-ring--3 {
  width: 300px;
  height: 300px;
  border-color: rgba(139, 34, 82, 0.2);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero-line {
  display: block;
}

.hero-line--accent {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--color-saffron-light);
  font-size: 1.1em;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 235, 224, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-saffron);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-saffron), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

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

/* ============================================
   Marquee
   ============================================ */
.marquee-section {
  padding-block: var(--space-md);
  border-block: 1px solid rgba(245, 235, 224, 0.06);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.marquee-track span:nth-child(odd) {
  color: var(--color-saffron);
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ============================================
   Classes Grid
   ============================================ */
.classes {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
}

.class-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 235, 224, 0.06);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.class-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 168, 56, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.class-card-visual {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.class-card[data-discipline="garba"] .class-card-visual {
  background: linear-gradient(135deg, var(--color-maroon-deep), var(--color-maroon));
}

.class-card[data-discipline="yoga"] .class-card-visual {
  background: linear-gradient(135deg, #1a3d38, var(--color-teal));
}

.class-card[data-discipline="bollywood"] .class-card-visual {
  background: linear-gradient(135deg, #4a1942, var(--color-rose));
}

.class-card[data-discipline="classical"] .class-card-visual {
  background: linear-gradient(135deg, #3d2a1a, #8b6914);
}

.class-card[data-discipline="contemporary"] .class-card-visual {
  background: linear-gradient(135deg, #2a1f3d, #5c4a8b);
}

.class-card[data-discipline="kids"] .class-card-visual {
  background: linear-gradient(135deg, #3d2a1a, var(--color-saffron));
}

.class-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: var(--space-xs);
}

.class-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.class-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.class-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.class-meta li {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(245, 235, 224, 0.06);
  border-radius: 100px;
  color: var(--color-text-muted);
}

.class-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-saffron);
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.class-link:hover {
  color: var(--color-saffron-light);
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-lg);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.about-features {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.feature-icon,
.feature-icon-wrap {
  flex-shrink: 0;
}

.feature strong {
  display: block;
  margin-bottom: 0.15rem;
}

.feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   Schedule
   ============================================ */
.schedule {
  background: var(--color-bg-elevated);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.schedule-tab {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: 100px;
  transition: all 0.3s;
}

.schedule-tab:hover {
  color: var(--color-text);
  background: rgba(245, 235, 224, 0.06);
}

.schedule-tab.active {
  background: var(--color-saffron);
  color: var(--color-bg);
}

.schedule-panel {
  max-width: 700px;
  margin-inline: auto;
}

.schedule-day {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
}

.schedule-day.active {
  display: flex;
  animation: fadeIn 0.4s var(--ease-out);
}

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

.schedule-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 235, 224, 0.06);
  transition: border-color 0.3s;
}

.schedule-item:hover {
  border-color: rgba(232, 168, 56, 0.2);
}

.schedule-item .time {
  font-weight: 700;
  color: var(--color-saffron);
  font-size: 0.95rem;
}

.schedule-item .class-name {
  font-weight: 600;
}

.schedule-item .instructor {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
}

.testimonials-slider {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s var(--ease-out);
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}

.testimonial footer strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial footer span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 235, 224, 0.2);
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--color-saffron);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(232, 168, 56, 0.5);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-saffron);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item a {
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--color-saffron);
}

.contact-form {
  background: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 235, 224, 0.06);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(245, 235, 224, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(201, 184, 168, 0.5);
}

.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 fill='%23c9b8a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-sm);
}

/* Footer overrides — zeel.css handles layout */
.footer {
  padding-block: 0;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.classes-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.classes-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.classes-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.classes-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.classes-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.classes-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  :root {
    --container-pad: 0px;
    --container-max: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-elevated);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid rgba(245, 235, 224, 0.06);
    z-index: 1001;
    padding: var(--space-lg);
  }

  .nav-links.open {
    right: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

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

  .schedule-item {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    text-align: center;
  }

  .schedule-item .instructor {
    grid-column: 1;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

}
