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

:root {
  --teal:       #2DBFB0;
  --teal-dark:  #1A9E92;
  --teal-deep:  #0D6B63;
  --teal-light: #6FD8D0;
  --teal-pale:  #EAF9F8;
  --ink:        #111111;
  --ink2:       #2C2C2C;
  --muted:      #666666;
  --border:     #E0F0EE;
  --white:      #FFFFFF;
  --card-bg:    #FFFFFF;
  --gold:       #F5A623;
  --gold-light: #FFD080;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

.accent { color: var(--teal); }
.center { text-align: center; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ink);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 24px;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.logo-wordmark {
  height: 15rem;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-hire {
  border: 1.5px solid rgba(45,191,176,0.5) !important;
  color: var(--teal-light) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: border-color 0.2s, background 0.2s, color 0.2s !important;
}
.nav-hire:hover {
  border-color: var(--teal) !important;
  background: rgba(45,191,176,0.1) !important;
  color: var(--white) !important;
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  padding: 12px;
  margin: -12px;
  -webkit-tap-highlight-color: transparent;
}

/* ===== MOBILE DRAWER ===== */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 300px;
  height: 100vh;
  background: #0a0a0a;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.5);
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer ul a {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-drawer ul a:hover { color: var(--teal); }

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--white); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #060606;
}

/* Full-screen video */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: opacity;
  pointer-events: none;
}

/* Cinematic grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 0.3s steps(1) infinite;
}

/* Multi-layer cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%);
}

/* Energy orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,191,176,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  bottom: 50px; left: -80px;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(45,191,176,0.18) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -5s;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 20px;
  will-change: transform;
}

.hero-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease both;
  opacity: 0.9;
}

/* MAIN TITLE */
.hero-title-img {
  width: clamp(400px, 75vw, 900px);
  height: auto;
  object-fit: contain;
  margin-top: -200px;
  margin-bottom: -170px;
  animation: fadeUp 0.9s 0.1s ease both;
  display: block;
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--white);
  animation: fadeUp 0.9s 0.1s ease both;
  letter-spacing: -1px;
}

.hero-title-accent {
  display: block;
  color: var(--teal);
  animation: titlePulse 4s ease-in-out infinite alternate;
  text-shadow:
    0 0 30px rgba(45,191,176,0.6),
    0 0 70px rgba(45,191,176,0.35),
    0 0 120px rgba(45,191,176,0.15);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.25s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(45,191,176,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,191,176,0.5);
}
.btn-primary.full-width { width: 100%; text-align: center; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 1rem; }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--teal); background: rgba(45,191,176,0.1); }

/* Nav IG */
.nav-ig {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.85rem !important;
  transition: color 0.2s !important;
}
.nav-ig:hover { color: var(--teal-light) !important; }
.nav-ig svg { flex-shrink: 0; }

/* Hero social pills */
.hero-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeUp 0.9s 0.55s ease both;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-pill:hover {
  background: rgba(45,191,176,0.12);
  border-color: rgba(45,191,176,0.5);
  color: var(--teal-light);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.scroll-indicator span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBob 1.5s infinite;
}

/* ===== PHOTO BURST SECTION ===== */
#photo-burst {
  background: #070707;
  padding: 80px 0 100px;
  overflow: hidden;
}

.burst-label-top {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}

.burst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.burst-photo {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* hidden starting state */
  opacity: 0;
  transform: scale(0.6) rotate(var(--rot, -3deg));
  filter: blur(12px);
  transition:
    opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.65s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(45,191,176,0);
}

.burst-photo.popped {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0);
}

.burst-photo:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(45,191,176,0.3), 0 0 0 2px rgba(45,191,176,0.4);
  z-index: 5;
}

.burst-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 32px 20px 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.burst-photo:hover .burst-caption { opacity: 1; }

/* Make first photo span 2 rows */
.bp-1 { grid-row: span 2; }

/* ===== ABOUT ===== */
#about { background: var(--teal-pale); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(45,191,176,0.2), 0 0 0 1px rgba(45,191,176,0.15);
}

.about-photo {
  width: 100%;
  max-width: 460px;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
}

/* ===== CLASSES ===== */
#classes { background: var(--white); }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.classes-grid > *:nth-child(1) { grid-column: 1 / 3; }
.classes-grid > *:nth-child(2) { grid-column: 3 / 5; }
.classes-grid > *:nth-child(3) { grid-column: 5 / 7; }
.classes-grid > *:nth-child(4) { grid-column: 2 / 4; }
.classes-grid > *:nth-child(5) { grid-column: 4 / 6; }

.class-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(45,191,176,0.12);
}
.class-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.class-card.featured {
  border-color: var(--teal);
  background: var(--teal-pale);
}

.class-icon { font-size: 2.2rem; margin-bottom: 16px; }
.class-icon img { width: 44px; height: 44px; object-fit: contain; display: block; }

.class-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.class-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.class-badge {
  display: inline-block;
  background: rgba(45,191,176,0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(45,191,176,0.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

/* ===== GALLERY ===== */
#gallery { background: var(--teal-pale); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--border);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }

.g-tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,107,99,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.85rem; font-weight: 600; color: var(--white); }

/* ===== REVIEWS ===== */
#reviews { background: var(--white); }

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

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.review-card.featured-review { border-color: var(--teal); background: var(--teal-pale); }

.stars { color: var(--teal); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.review-card p {
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.reviewer { font-size: 0.8rem; font-weight: 600; color: var(--teal-dark); }

/* ===== CONTACT ===== */
#contact { background: var(--teal-pale); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.info-items { display: flex; flex-direction: column; gap: 24px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon { font-size: 1.3rem; margin-top: 2px; }
.info-item strong { display: block; font-size: 0.85rem; margin-bottom: 4px; color: var(--ink); }
.info-item p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.info-item a { color: var(--teal-dark); }
.info-item a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(45,191,176,0.08);
}

.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--ink); }

form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

input, select, textarea {
  background: var(--teal-pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: #aaa; }
select option { background: var(--white); }
textarea { resize: vertical; }

/* Directions btn */
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.9rem;
  border-color: var(--border) !important;
  color: var(--ink) !important;
}
.directions-btn:hover { border-color: var(--teal) !important; background: var(--teal-pale) !important; color: var(--teal-dark) !important; }

.form-success {
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success span { font-size: 2rem; }
.form-success p { color: var(--muted); }
.hidden { display: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--white);
}
.footer-logo span { color: var(--teal); }

footer p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.footer-phone a { color: var(--teal-light); font-weight: 600; }
.footer-copy { margin-top: 16px; font-size: 0.78rem; opacity: 0.35; }

.footer-socials {
  display: flex;
  gap: 20px;
  margin: 12px 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--teal-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

@keyframes grainShift {
  0%   { background-position: 0 0; }
  25%  { background-position: 20% 30%; }
  50%  { background-position: -15% 60%; }
  75%  { background-position: 40% -20%; }
  100% { background-position: 0 0; }
}

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

@keyframes titlePulse {
  from {
    text-shadow:
      0 0 20px rgba(45,191,176,0.5),
      0 0 50px rgba(45,191,176,0.25);
  }
  to {
    text-shadow:
      0 0 40px rgba(45,191,176,0.9),
      0 0 90px rgba(45,191,176,0.55),
      0 0 150px rgba(45,191,176,0.2);
  }
}

/* Generic scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .about-visual { order: -1; }
  .about-photo { max-width: 100%; height: 220px; }

  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .classes-grid > *:nth-child(1) { grid-column: 1 / -1; grid-row: 2; } /* Bhangra: center, full width */
  .classes-grid > *:nth-child(2) { grid-column: 2;      grid-row: 1; } /* Gidha: top right */
  .classes-grid > *:nth-child(3) { grid-column: 1;      grid-row: 1; } /* Dhol: top left */
  .classes-grid > *:nth-child(4) { grid-column: 1;      grid-row: 3; } /* Choreo: bottom left */
  .classes-grid > *:nth-child(5) { grid-column: 2;      grid-row: 3; } /* Perf: bottom right */

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

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

  .burst-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .bp-1 { grid-row: auto; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Nav: icon left, wordmark centered, hamburger right */
  .nav-inner { position: relative; height: 80px; }
  .logo-wordmark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 7rem;
    top: 50%;
    margin-top: -3.5rem;
    pointer-events: none;
  }
  .logo-img { display: block; }

  section { padding: 64px 0; }

  .classes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .classes-grid > *:nth-child(1),
  .classes-grid > *:nth-child(2),
  .classes-grid > *:nth-child(3),
  .classes-grid > *:nth-child(4),
  .classes-grid > *:nth-child(5) { grid-column: auto; grid-row: auto; }
  .class-card { padding: 24px 16px; }
  .class-card h3 { font-size: 1.1rem; }
  .class-card p { font-size: 0.85rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { gap: 24px; }

  .burst-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  /* Mobile hero */
  .hero-content {
    padding: 0 16px;
    padding-top: 20px;
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: calc(100vw - 32px);
  }

  .hero-btns {
    justify-content: flex-start;
  }

  .hero-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .social-pill {
    width: fit-content;
  }

  .hero-title-img {
    width: clamp(380px, 95vw, 560px);
    margin-top: -150px;
    margin-bottom: -130px;
    margin-left: auto;
    margin-right: auto;
  }
}
