:root {
  --purple: #7B2FBE;
  --purple-light: #9B59E8;
  --purple-dark: #5A1F8A;
  --cyan: #00BFDD;
  --cyan-dark: #0099B8;
  --grad: linear-gradient(135deg, #7B2FBE 0%, #00BFDD 100%);
  --grad-soft: linear-gradient(135deg, rgba(123,47,190,0.08) 0%, rgba(0,191,221,0.08) 100%);
  --off-white: #F8F6FF;
  --light-bg: #F0ECFA;
  --white: #FFFFFF;
  --text-dark: #150830;
  --text-mid: #3D2060;
  --text-light: #6B5B8A;
  --border: rgba(123,47,190,0.13);
  --shadow-sm: 0 2px 12px rgba(123,47,190,0.08);
  --shadow-md: 0 8px 32px rgba(123,47,190,0.12);
  --shadow-lg: 0 20px 60px rgba(123,47,190,0.16);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(248,246,255,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 28px rgba(123,47,190,0.1); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 44px; height: 44px; background: var(--purple);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: white; letter-spacing: 1px;
}
.nav-logo-text strong {
  font-family: 'Playfair Display', serif; font-size: 13.5px; font-weight: 700;
  color: var(--text-dark); display: block; line-height: 1.2;
}
.nav-logo-text span { font-size: 10px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  color: var(--text-mid); transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--purple);
  border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--purple); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--purple) !important;
  color: white !important; padding: 9px 22px !important;
  border-radius: 6px; font-weight: 600 !important; font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--purple); border-radius: 2px; transition: 0.3s; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 150px 5% 70px; text-align: center;
  background: var(--grad-soft);
  position: relative; overflow: hidden;
}
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero .sec-title { margin: 0 auto 14px; }
.page-hero .sec-desc { margin: 0 auto; text-align: center; }

/* ── HERO (home) ── */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
}

.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(240,236,250,0.93) 0%, rgba(234,247,255,0.9) 55%, rgba(240,236,250,0.93) 100%);
}

.hero-bg-svg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
}
.hero-bg-svg .note {
  position: absolute; color: var(--purple); opacity: 0.05;
  font-size: clamp(48px, 8vw, 110px);
  animation: floatNote linear infinite;
  user-select: none; line-height: 1;
}
@keyframes floatNote {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0;    }
  8%   { opacity: 0.05; }
  92%  { opacity: 0.05; }
  100% { transform: translateY(-160px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 3; max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: 4px; padding: 7px 16px;
  font-size: 11px; font-weight: 700;
  color: var(--purple); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow i { font-size: 12px; }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 900; line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 18px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-h1 .accent { color: var(--purple); }
.hero-h1 .accent-cyan { color: var(--cyan); }

.hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--text-light);
  margin-bottom: 34px; max-width: 490px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.badge {
  display: flex; align-items: center; gap: 7px;
  background: white; border: 1px solid var(--border);
  border-radius: 4px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 500; color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.badge i { color: var(--purple); font-size: 13px; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.7s ease 0.4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--purple); color: white;
  padding: 14px 30px; border-radius: 6px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(123,47,190,0.32);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(123,47,190,0.42); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--text-dark);
  padding: 14px 30px; border-radius: 6px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 2px solid rgba(123,47,190,0.3);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

.btn-cyan {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cyan); color: white;
  padding: 14px 30px; border-radius: 6px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,191,221,0.3);
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-2px); }

.hero-visual { animation: fadeUp 0.8s ease 0.25s both; position: relative; }
.hero-main-card {
  background: white; border-radius: 16px; padding: 34px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.free-label {
  position: absolute; top: 20px; right: 20px;
  background: var(--cyan); color: white;
  border-radius: 4px; padding: 5px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  animation: softPulse 2.5s ease-in-out infinite;
}
@keyframes softPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.card-heading { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.card-sub { font-size: 13px; color: var(--text-light); margin-bottom: 22px; }

.instrument-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.inst-item {
  background: var(--light-bg); border-radius: 8px; padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  transition: transform 0.18s;
}
.inst-item:hover { transform: scale(1.02); }
.inst-item i { color: var(--purple); font-size: 16px; width: 18px; text-align: center; }
.inst-item.full { grid-column: 1 / -1; }

.price-row { display: flex; gap: 8px; flex-wrap: wrap; }
.price-pill {
  flex: 1; min-width: 70px; background: var(--light-bg); border-radius: 8px;
  padding: 10px 8px; text-align: center;
  border: 1px solid var(--border);
}
.price-pill .amt { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--purple); line-height: 1; }
.price-pill .lbl { font-size: 10px; color: var(--text-light); margin-top: 3px; letter-spacing: 0.3px; }

.floating-chip {
  position: absolute; background: white; border-radius: 10px;
  padding: 10px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  font-size: 12.5px; font-weight: 600; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
  animation: chipFloat 4s ease-in-out infinite;
  border: 1px solid var(--border);
}
.floating-chip i { color: var(--purple); }
.floating-chip.c1 { bottom: -18px; left: -28px; animation-delay: 0s; }
.floating-chip.c2 { top: -18px; right: -18px; animation-delay: 2s; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

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

/* ── STATS BAR ── */
#stats { background: var(--text-dark); padding: 64px 5%; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 58px; line-height: 1; color: var(--cyan); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.4px; }

/* ── SECTIONS SHARED ── */
section { padding: 96px 5%; }
.section-max { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px); font-weight: 900;
  color: var(--text-dark); line-height: 1.18; margin-bottom: 18px;
}
.sec-title .pu { color: var(--purple); }
.sec-title .cy { color: var(--cyan); }

.sec-desc { font-size: 16px; line-height: 1.8; color: var(--text-light); max-width: 600px; }

/* ── PHOTO GALLERY — HERO STRIP ── */
#photo-strip { padding: 0; background: var(--text-dark); overflow: hidden; }
.photo-strip-inner { display: grid; grid-template-columns: repeat(5, 1fr); height: 280px; }
.strip-photo { position: relative; overflow: hidden; cursor: pointer; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.85); }
.strip-photo:hover img { transform: scale(1.06); filter: brightness(1); }
.strip-photo .strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21,8,48,0.75) 100%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.3s;
}
.strip-photo:hover .strip-overlay { opacity: 1; }
.strip-overlay span { font-size: 12px; font-weight: 600; color: white; letter-spacing: 0.5px; }

/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.about-card {
  background: white; border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.about-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--grad-soft);
  border-radius: 60px 0 0 0;
}
.avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(123,47,190,0.28);
}
.teacher-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text-dark); }
.teacher-role { font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.teacher-bio { font-size: 14.5px; line-height: 1.8; color: var(--text-light); margin-bottom: 22px; }

.chip-group-label { font-size: 11px; font-weight: 700; color: var(--text-mid); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; margin-top: 18px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border-radius: 4px; padding: 5px 12px; font-size: 12px; font-weight: 500; }
.chip-purple { background: var(--light-bg); color: var(--purple); border: 1px solid rgba(123,47,190,0.18); }
.chip-gray { background: #F3F3F3; color: var(--text-mid); border: 1px solid #E0E0E0; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }
.feature-list li i { color: var(--purple); font-size: 14px; margin-top: 3px; width: 16px; flex-shrink: 0; }

.genre-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.genre-chip { background: var(--purple); color: white; border-radius: 4px; padding: 5px 13px; font-size: 12px; font-weight: 600; }

.theory-strip {
  background: var(--text-dark); border-radius: 12px; padding: 26px 30px;
  display: flex; align-items: flex-start; gap: 18px; margin-top: 40px;
}
.theory-icon { width: 46px; height: 46px; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.theory-icon i { color: white; font-size: 20px; }
.theory-text strong { color: white; font-family: 'Playfair Display', serif; font-size: 17px; display: block; margin-bottom: 5px; }
.theory-text span { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.65; }

/* ── GALLERY MASONRY ── */
#gallery1 { background: var(--light-bg); padding: 80px 5%; }
.gallery1-inner { max-width: 1200px; margin: 0 auto; }
.gallery1-header { text-align: center; margin-bottom: 44px; }
.gallery1-header .eyebrow { justify-content: center; display: flex; }
.masonry { columns: 4; column-gap: 16px; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.45s ease; filter: brightness(0.9); }
.masonry-item:hover img { transform: scale(1.05); filter: brightness(1); }
.masonry-item .img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(21,8,48,0.8));
  color: white; font-size: 12px; font-weight: 600; padding: 18px 12px 10px;
  opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .img-label { opacity: 1; }

/* ── INSTRUMENTS ── */
#instruments { background: var(--off-white); }
.instruments-header { text-align: center; margin-bottom: 56px; }
.instruments-header .eyebrow { justify-content: center; display: flex; }
.instr-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; }

.instr-card {
  background: white; border-radius: 14px; padding: 34px 24px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.instr-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--purple);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.instr-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.instr-card:hover::after { transform: scaleX(1); }

.instr-icon-wrap {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: background 0.3s;
}
.instr-card:hover .instr-icon-wrap { background: var(--purple); }
.instr-icon-wrap i { font-size: 28px; color: var(--purple); transition: color 0.3s; }
.instr-card:hover .instr-icon-wrap i { color: white; }

.instr-name { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.instr-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.included-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,191,221,0.1); color: var(--cyan-dark);
  border-radius: 4px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(0,191,221,0.22);
}
.included-tag i { font-size: 11px; }
.byo-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(123,47,190,0.08); color: var(--purple);
  border-radius: 4px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(123,47,190,0.2);
}
.byo-tag i { font-size: 11px; }

/* ── GALLERY 2 — FULL WIDTH SPLIT ── */
#gallery2 { padding: 0; background: white; }
.gallery2-split { display: grid; grid-template-columns: 1fr 1fr; }
.g2-photo { position: relative; height: 440px; overflow: hidden; }
.g2-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.g2-photo:hover img { transform: scale(1.04); }
.g2-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(21,8,48,0.85));
  padding: 40px 30px 24px;
}
.g2-caption h3 { font-family: 'Playfair Display', serif; color: white; font-size: 22px; margin-bottom: 6px; }
.g2-caption p { color: rgba(255,255,255,0.7); font-size: 13.5px; line-height: 1.6; }

/* ── PRICING ── */
#pricing { background: var(--light-bg); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .eyebrow { justify-content: center; display: flex; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 24px; max-width: 950px; margin: 0 auto 36px; }

.price-card {
  background: white; border-radius: 14px; padding: 36px 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center; position: relative; overflow: hidden;
}
.price-card.featured {
  background: var(--text-dark); border-color: var(--purple);
  box-shadow: 0 16px 50px rgba(123,47,190,0.25);
  transform: scale(1.04);
}
.price-card:not(.featured):hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-pill {
  position: absolute; top: 18px; right: 18px;
  background: var(--cyan); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 3px; text-transform: uppercase;
}
.price-area { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.price-card.featured .price-area { color: var(--cyan); }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 68px; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-amount { color: var(--cyan); }
.price-per { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.price-card.featured .price-per { color: rgba(255,255,255,0.5); }
.price-includes { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }
.price-card.featured .price-includes { color: rgba(255,255,255,0.6); }

.discount-box {
  max-width: 720px; margin: 0 auto;
  background: white; border-radius: 12px; padding: 28px 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 18px;
}
.disc-icon { width: 46px; height: 46px; background: var(--purple); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.disc-icon i { color: white; font-size: 20px; }
.discount-box h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text-dark); margin-bottom: 6px; }
.discount-box p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── MONTHLY PLANS ── */
#monthly { background: var(--off-white); }
.monthly-header { text-align: center; margin-bottom: 44px; }
.monthly-header .eyebrow { justify-content: center; display: flex; }
.monthly-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 22px; max-width: 1000px; margin: 0 auto; }
.monthly-card {
  background: white; border-radius: 14px; padding: 30px 26px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.monthly-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.monthly-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.monthly-sub { font-size: 12px; color: var(--purple); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.monthly-amount { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--purple); line-height: 1; }
.monthly-amount span { font-family:'Inter',sans-serif; font-size: 13px; color: var(--text-light); font-weight: 500; }
.monthly-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-top: 10px; }

/* ── GALLERY 3 — WIDE GRID ── */
#gallery3 { background: var(--off-white); padding: 80px 5%; }
.gallery3-inner { max-width: 1200px; margin: 0 auto; }
.gallery3-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.g3-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; gap: 14px; }
.g3-item { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.g3-item.tall { grid-row: span 2; }
.g3-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; filter: brightness(0.88); }
.g3-item:hover img { transform: scale(1.05); filter: brightness(1); }
.g3-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 55%, rgba(21,8,48,0.8) 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.g3-item:hover .g3-overlay { opacity: 1; }
.g3-overlay span { color: white; font-size: 12.5px; font-weight: 600; }

/* ── SCHEDULE ── */
#schedule { background: var(--text-dark); }
.schedule-header { text-align: center; margin-bottom: 52px; }
.schedule-header .eyebrow { color: var(--cyan); justify-content: center; display: flex; }
.schedule-header .eyebrow::before { background: var(--cyan); }
.schedule-header .sec-title { color: white; }
.schedule-header .sec-desc { color: rgba(255,255,255,0.55); margin: 0 auto; text-align: center; }

.sched-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.sched-card { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 28px; border: 1px solid rgba(255,255,255,0.1); transition: border-color 0.3s, background 0.3s; }
.sched-card:hover { border-color: var(--cyan); background: rgba(0,191,221,0.06); }
.sched-icon { width: 42px; height: 42px; background: var(--cyan); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sched-icon i { color: white; font-size: 18px; }
.sched-day { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.sched-time { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.sched-note { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

.online-row {
  max-width: 500px; margin: 0 auto;
  background: rgba(0,191,221,0.1); border-radius: 12px; padding: 22px 28px;
  border: 1px solid rgba(0,191,221,0.25);
  display: flex; align-items: center; gap: 16px;
}
.online-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); animation: blink 1.6s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.online-text strong { display: block; color: white; font-size: 15px; margin-bottom: 3px; }
.online-text span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── LOCATIONS ── */
#locations { background: var(--off-white); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.loc-card {
  background: white; border-radius: 12px; padding: 22px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-icon i { color: var(--purple); font-size: 18px; }
.loc-card.hq .loc-icon { background: var(--purple); }
.loc-card.hq .loc-icon i { color: white; }
.loc-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.loc-meta { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.hq-badge {
  display: inline-block; background: var(--purple); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: 2px 6px; border-radius: 3px; text-transform: uppercase; margin-left: 5px; vertical-align: middle;
}
.new-badge {
  display: inline-block; background: var(--cyan); color: white;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: 2px 6px; border-radius: 3px; text-transform: uppercase; margin-left: 5px; vertical-align: middle;
}

/* ── GALLERY 4 — STUDENTS ── */
#gallery4 { background: white; padding: 80px 5%; }
.gallery4-inner { max-width: 1200px; margin: 0 auto; }
.gallery4-header { text-align: center; margin-bottom: 44px; }
.gallery4-header .eyebrow { justify-content: center; display: flex; }
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel-item { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; }
.reel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.88); }
.reel-item:hover img { transform: scale(1.06); filter: brightness(1); }
.reel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(21,8,48,0.85));
  padding: 30px 14px 14px;
  transform: translateY(100%); transition: transform 0.3s;
}
.reel-item:hover .reel-caption { transform: translateY(0); }
.reel-caption span { color: white; font-size: 12px; font-weight: 600; }
.reel-caption small { display: block; color: rgba(255,255,255,0.6); font-size: 11px; margin-top: 2px; }

/* ── SHOP ── */
#shop { background: var(--light-bg); }
.shop-header { text-align: center; margin-bottom: 14px; }
.shop-header .eyebrow { justify-content: center; display: flex; }
.shop-note { text-align: center; font-size: 14px; color: var(--text-light); margin-bottom: 50px; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 22px; }

.shop-card {
  background: white; border-radius: 14px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shop-img {
  height: 190px; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.shop-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform 0.3s; background: white; }
.shop-card:hover .shop-img img { transform: scale(1.06); }
.shop-img i { font-size: 64px; color: var(--purple); opacity: 0.35; transition: opacity 0.3s, transform 0.3s; }
.shop-card:hover .shop-img i { opacity: 0.6; transform: scale(1.1); }
.shop-body { padding: 22px; }
.shop-code { font-size: 10.5px; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.shop-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; }
.shop-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.shop-price { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--purple); margin-bottom: 14px; }
.shop-price small { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--cyan-dark); font-weight: 700; margin-left: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.shop-btn {
  display: inline-flex; align-items: center; gap: 7px; width: 100%; justify-content: center;
  background: var(--purple); color: white;
  padding: 12px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s; font-family: 'Inter', sans-serif;
}
.shop-btn:hover { background: var(--purple-dark); }
.shop-btn i { font-size: 12px; }
.shop-qty { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.shop-qty label { font-size: 11.5px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.shop-qty input {
  width: 60px; border: 1.5px solid var(--border); border-radius: 6px;
  padding: 6px 10px; font-family: 'Inter', sans-serif; font-size: 13px; text-align: center;
}

/* ── GALLERY 5 — BANNER ── */
#gallery5 { padding: 0; position: relative; height: 420px; overflow: hidden; }
.gallery5-bg { display: grid; grid-template-columns: repeat(3,1fr); height: 100%; }
.gallery5-bg div { overflow: hidden; }
.gallery5-bg div img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.gallery5-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  background: rgba(21,8,48,0.4);
}
.gallery5-overlay h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,54px); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.gallery5-overlay h2 span { color: var(--cyan); }
.gallery5-overlay p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; margin-bottom: 28px; line-height: 1.7; }

/* ── CONTACT ── */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .sec-title { font-size: 36px; }
.contact-info p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-top: 14px; margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: 10px; padding: 16px 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.contact-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.ci-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon i { font-size: 18px; color: var(--purple); }
.contact-item.wa .ci-icon { background: #E7F9EF; }
.contact-item.wa .ci-icon i { color: #25D366; }
.ci-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.ci-text span { font-size: 13px; color: var(--text-light); }

.cform { background: white; border-radius: 16px; padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.cform-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 26px; }
.fgroup { margin-bottom: 18px; position: relative; }
.flabel { display: block; font-size: 11.5px; font-weight: 700; color: var(--text-mid); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 7px; }
.finput, .fselect, .ftextarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text-dark); background: var(--off-white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,47,190,0.1); }
.ftextarea { resize: vertical; min-height: 100px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsubmit {
  width: 100%; padding: 15px; background: var(--purple); color: white;
  border: none; border-radius: 8px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background 0.2s, transform 0.2s;
}
.fsubmit:hover { background: var(--purple-dark); transform: translateY(-1px); }
.fsubmit i { font-size: 14px; }
.fsuccess {
  display: none; text-align: center; padding: 20px;
  background: rgba(0,191,221,0.08); border-radius: 10px;
  border: 1px solid rgba(0,191,221,0.25); margin-top: 16px;
  font-size: 14px; color: var(--cyan-dark); font-weight: 600;
}
.fsuccess i { margin-right: 6px; }
.pac-container { z-index: 3000 !important; font-family: 'Inter', sans-serif; }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: 64px 5% 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-mark { width: 42px; height: 42px; background: var(--purple); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: white; letter-spacing: 1px; }
.footer-logo strong { font-family: 'Playfair Display', serif; font-size: 13px; color: white; display: block; }
.footer-logo small { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; }
.fbrand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 14px; }
.fdivision { font-size: 11px; color: rgba(255,255,255,0.3); }
.fdivision a { color: rgba(255,255,255,0.4); text-decoration: none; }

.fcol h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.fcol a, .fcol p { display: block; font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.fcol a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.partner-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border-radius: 20px; padding: 4px 14px; font-size: 11px; }
.partner-tag strong { color: var(--cyan); font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.2s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float i { color: white; font-size: 26px; }
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7);  }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content, .about-grid, .contact-grid, .gallery2-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .masonry { columns: 2; }
  .reel-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .frow { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .g3-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g3-item.tall { grid-row: auto; }
  .photo-strip-inner { grid-template-columns: repeat(3,1fr); }
  .gallery5-bg { grid-template-columns: 1fr 1fr; }
  .gallery5-bg div:last-child { display: none; }
}
@media (max-width: 600px) {
  section { padding: 72px 4%; }
  .masonry { columns: 1; }
  .reel-grid { grid-template-columns: repeat(2,1fr); }
  .photo-strip-inner { grid-template-columns: repeat(2,1fr); height: 220px; }
  .photo-strip-inner div:last-child { display: none; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(248,246,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text-dark); text-decoration: none; }
.mob-close { position: absolute; top: 24px; right: 24px; font-size: 22px; background: none; border: none; cursor: pointer; color: var(--text-dark); padding: 6px; }
