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

:root {
  --gold:         #C6A75E;
  --gold-light:   #E8D5A3;
  --gold-dark:    #A08840;
  --gold-grad:    linear-gradient(135deg, #A08840 0%, #C6A75E 50%, #E8D5A3 100%);
  --gold-shimmer: linear-gradient(90deg, #B8933A 0%, #C6A75E 20%, #E8D5A3 40%, #FAF0CB 50%, #E8D5A3 60%, #C6A75E 80%, #B8933A 100%);
  --red:          #8B0000;
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --light-grey:   #F5F3EF;
  --text-dark:    #1A1A1A;
  --text-mid:     #555555;
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --trans:        all .4s cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor {
  font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Music', serif;
  font-size: 15px; line-height: 1;
  color: var(--gold);
  user-select: none;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: all .18s var(--ease);
  opacity: .6;
}
.cursor.hover  { transform: translate(-50%, -50%) scale(1.25); }
.cursor-ring.hover { width: 50px; height: 50px; opacity: .35; }

/* ─── Splash Screen ─────────────────────────────────────── */
#splash {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9998;
  transition: opacity 1.3s ease, visibility 1.3s ease;
}
#splash.fade-out { opacity: 0; visibility: hidden; }

.splash-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(90deg,
    #7A6030 0%, #C6A75E 18%, #F0E0B0 36%,
    #C6A75E 54%, #E8D5A3 72%, #A08840 90%, #7A6030 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation:
    splashIn 1.4s var(--ease) .2s forwards,
    shimmer   3s linear       1s infinite;
}
.splash-divider {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px 0;
  animation: dividerGrow 1.4s var(--ease) .6s forwards;
}
.splash-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.6rem, 1.2vw, .78rem);
  font-weight: 400;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: splashIn 1.4s var(--ease) .8s forwards;
}

@keyframes splashIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dividerGrow {
  from { width: 0; opacity: 0; }
  to   { width: 100px; opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ─── Navigation ────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  height: 72px;
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}
#navbar.scrolled {
  border-bottom-color: rgba(198,167,94,.18);
  box-shadow: 0 2px 28px rgba(0,0,0,.05);
}
.nav-brand {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
}
.nav-logo-img-link {
  display: block; line-height: 0; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px; width: auto; display: block;
  mix-blend-mode: multiply;
}
.nav-brand-text {
  display: flex; flex-direction: column; gap: 2px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: .18em;
  background: var(--gold-shimmer);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 3s linear infinite;
  text-decoration: none;
  white-space: nowrap;
}
.nav-slogan {
  font-family: 'Playfair Display', serif;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
}
.nav-slogan em {
  font-style: italic;
  background: var(--gold-shimmer);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 3s linear infinite;
}
.nav-links {
  display: flex; align-items: center; gap: 38px; list-style: none;
}
.nav-links a {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-enroll {
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  color: var(--gold); font-size: .72rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
  transition: color .35s ease;
}
.nav-enroll::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
  z-index: -1;
}
.nav-enroll:hover { color: var(--white); }
.nav-enroll:hover::before { transform: scaleX(1); }
.nav-enroll::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--gold); display: block;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  padding: 0 32px;
  max-height: 0; overflow: hidden;
  border-bottom: 1px solid rgba(198,167,94,0);
  transition: max-height .5s var(--ease), padding .5s var(--ease),
              border-color .5s ease;
  z-index: 998;
}
.mobile-menu.open {
  max-height: 360px;
  padding: 28px 32px 32px;
  border-bottom-color: rgba(198,167,94,.2);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a {
  font-size: .85rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
}
.mobile-enroll {
  display: inline-block; margin-top: 22px;
  padding: 11px 26px;
  border: 1.5px solid var(--gold);
  color: var(--gold); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none;
}

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.88);
}
.hero-content {
  display: none;
  position: relative; z-index: 2;
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  padding: 52px 56px;
  margin-right: clamp(24px, 6vw, 80px);
  max-width: 600px;
  text-align: left;
  opacity: 0;
  animation: heroReveal 1.6s var(--ease) 3.8s forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerAnim {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 700; line-height: 1.1;
  white-space: nowrap;
  background: var(--gold-shimmer);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 3s linear infinite;
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 500; line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.hero-tagline em {
  font-style: italic;
  background: var(--gold-shimmer);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerAnim 3s linear infinite;
}
.hero-sub {
  font-size: clamp(.8rem, 1.4vw, .9rem);
  font-weight: 400; line-height: 1.7;
  color: #333;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 18px; justify-content: flex-start; flex-wrap: wrap; }
.btn-hero-outline {
  padding: 13px 36px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark); text-decoration: none;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  display: inline-block;
  transition: var(--trans);
}
.btn-hero-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-fill {
  padding: 16px 42px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white); text-decoration: none;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  display: inline-block; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.btn-gold-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.btn-gold-fill:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(198,167,94,.45); }
.btn-gold-fill:hover::after { opacity: 1; }
.btn-gold-fill span { position: relative; z-index: 1; }

.btn-gold-outline {
  padding: 14px 40px;
  background: transparent;
  border: 1.5px solid rgba(198,167,94,.75);
  color: var(--white); text-decoration: none;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  display: inline-block;
  transition: var(--trans);
}
.btn-gold-outline:hover {
  border-color: var(--gold);
  background: rgba(198,167,94,.12);
  transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .6rem; letter-spacing: .35em; text-transform: uppercase;
  opacity: 0; animation: heroReveal 1s var(--ease) 5.2s forwards;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.7) translateY(-4px); }
  50%      { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ─── Reveal Helpers ────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left   { opacity: 0; transform: translateX(-36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right  { opacity: 0; transform: translateX(36px);  transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }

/* ─── Section Common ────────────────────────────────────── */
.section-label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 500; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 0;
}
.gold-rule {
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
  transition: width 1.4s var(--ease);
}
.gold-rule.grown { width: 72px; }
.gold-rule.center { margin: 22px auto; }
.gold-rule.center.grown { width: 60px; }
.section-body {
  font-size: .97rem; line-height: 1.95;
  color: var(--text-mid); font-weight: 300;
}

/* ─── About Section ─────────────────────────────────────── */
#about {
  padding: 120px 64px;
  max-width: 1360px; margin: 0 auto;
}
.about-header { margin-bottom: 72px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
}

.about-img-wrap {
  position: relative; overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 560px;
  object-fit: cover; display: block;
  transition: transform .9s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-frame {
  position: absolute; top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid rgba(198,167,94,.28);
  pointer-events: none; z-index: -1;
}

.about-vline {
  width: 1px; height: 280px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  margin: 0 auto;
}

.about-copy { padding: 0 8px; }
.about-copy p { margin-bottom: 18px; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 44px;
}
.stat {
  border-top: 1px solid rgba(198,167,94,.3);
  padding-top: 18px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; line-height: 1;
}
.stat-lbl {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mid); margin-top: 6px; display: block;
}

/* ─── Programs Section ──────────────────────────────────── */
#programs {
  background: var(--light-grey);
  padding: 100px 64px;
}
.programs-header { text-align: center; margin-bottom: 60px; }
.programs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 26px; max-width: 1200px; margin: 0 auto;
}
.prog-card {
  background: var(--white);
  padding: 44px 34px;
  border: 1px solid rgba(198,167,94,.14);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.prog-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.prog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,.09); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-icon {
  font-size: 2rem; display: block; margin-bottom: 20px; line-height: 1;
}
.prog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.prog-desc {
  font-size: .88rem; line-height: 1.82;
  color: var(--text-mid); margin-bottom: 26px;
}
.prog-link {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s ease;
}
.prog-link:hover { gap: 14px; }

/* ─── Performances Carousel ─────────────────────────────── */
#performances {
  padding: 100px 0;
  background: var(--white);
}
.perf-header {
  text-align: center; padding: 0 64px; margin-bottom: 56px;
}
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .85s var(--ease);
}
.c-slide {
  flex-shrink: 0;
  padding: 0 12px;
}
.c-slide-inner {
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.c-slide.active .c-slide-inner {
  border-color: rgba(198,167,94,.5);
  box-shadow: 0 8px 36px rgba(198,167,94,.18);
}
.c-slide img {
  width: 100%; height: 390px;
  object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.c-slide:hover img { transform: scale(1.06); }
.c-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent);
  color: var(--white);
}
.c-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 500; margin-bottom: 3px;
}
.c-caption p { font-size: .7rem; color: rgba(255,255,255,.65); letter-spacing: .1em; }

.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 42px; padding: 0 64px;
}
.c-arrow {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  background: transparent; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
  transition: var(--trans);
}
.c-arrow:hover { background: var(--gold); color: var(--white); }
.c-dots { display: flex; gap: 7px; }
.c-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(198,167,94,.3); cursor: pointer;
  transition: var(--trans);
}
.c-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ─── Quote / Parallax ──────────────────────────────────── */
#quote {
  position: relative; height: 78vh; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute; inset: -25%;
  background-image: url('../images/quote-stage.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.28);
  will-change: transform;
}
.quote-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.15);
}
.quote-body {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px; max-width: 820px;
}
.quote-mark-lg {
  font-family: 'Playfair Display', serif;
  font-size: 7rem; line-height: .5;
  color: var(--gold); opacity: .25;
  display: block; margin-bottom: 18px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.52;
  letter-spacing: .02em; margin-bottom: 28px;
}
.quote-text em {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}
.quote-attr {
  font-size: .7rem; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold);
}

/* ─── Gallery Slider ────────────────────────────────────── */
#gallery { padding: 100px 0; background: var(--off-white); }
.gallery-header { text-align: center; padding: 0 64px; margin-bottom: 52px; }
.gallery-wrap { position: relative; overflow: hidden; }
.gallery-track {
  display: flex;
  transition: transform .85s var(--ease);
}
.g-slide { min-width: 100%; position: relative; }
.g-slide img {
  width: 100%; height: clamp(360px, 62vh, 600px);
  object-fit: cover; display: block;
}
.g-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 50%);
  transition: opacity .4s ease;
}
.g-slide.active .g-slide-overlay { background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 50%); }
.g-border {
  position: absolute; inset: 0;
  border: 3px solid transparent;
  transition: border-color .4s ease;
  pointer-events: none;
}
.g-slide.active .g-border { border-color: rgba(198,167,94,.45); }
.g-caption {
  position: absolute; bottom: 28px; left: 36px;
  color: var(--white);
}
.g-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500;
}
.g-caption p { font-size: .72rem; color: rgba(255,255,255,.65); margin-top: 4px; }

.gallery-dots {
  display: flex; gap: 8px;
  justify-content: center; margin-top: 28px;
}
.g-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(198,167,94,.3); cursor: pointer;
  transition: var(--trans);
}
.g-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ─── Testimonials ──────────────────────────────────────── */
#testimonials {
  padding: 100px 64px; background: var(--white); text-align: center;
}
.test-header { margin-bottom: 66px; }
.test-carousel-wrap {
  display: flex; align-items: center; gap: 18px;
  max-width: 1400px; margin: 0 auto;
}
.test-arrow {
  flex-shrink: 0; width: 46px; height: 46px;
  border: 1.5px solid var(--gold); background: transparent; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: var(--trans);
}
.test-arrow:hover { background: var(--gold); color: var(--white); }
.test-wrap { flex: 1; overflow: hidden; }
.test-track { display: flex; width: 100%; transition: transform .85s var(--ease); }
.t-card { flex-shrink: 0; padding: 0 10px; }
.t-inner {
  background: var(--white);
  border: 1px solid rgba(198,167,94,.22);
  padding: 36px 28px 32px;
  text-align: center;
  transition: box-shadow .4s ease;
  height: 100%;
}
.t-inner:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.t-qmark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; line-height: .85;
  color: rgba(198,167,94,.45);
  display: block; text-align: left; margin-bottom: 10px;
}
.t-stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 18px; }
.t-star { color: var(--gold); font-size: .8rem; }
.t-text {
  font-family: 'Playfair Display', serif;
  font-size: .88rem; font-style: italic;
  line-height: 1.85; color: var(--text-dark); margin-bottom: 26px;
  text-align: center;
}
.t-name {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dark); display: block; margin-bottom: 6px;
}
.t-role {
  font-size: .68rem; color: var(--gold);
  letter-spacing: .04em; display: block;
}
.test-dots { display: flex; gap: 7px; justify-content: center; margin-top: 28px; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(198,167,94,.3); cursor: pointer; transition: var(--trans);
}
.t-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ─── Contact Strip ─────────────────────────────────────── */
#contact-strip {
  background: var(--light-grey);
  padding: 80px 64px;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; max-width: 960px; margin: 0 auto;
  text-align: center;
}
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-icon { font-size: 1.6rem; color: var(--gold); }
.contact-lbl {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold);
}
.contact-val { font-size: .92rem; color: var(--text-mid); line-height: 1.7; }

/* ─── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.93);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-close {
  position: absolute; top: 22px; right: 30px;
  background: none; border: none;
  color: rgba(255,255,255,.7); font-size: 2.2rem; line-height: 1;
  cursor: pointer; transition: color .2s;
}
.lb-close:hover { color: var(--gold); }
.lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: 90vw; max-height: 78vh;
}
#lbImg {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(198,167,94,.3);
  transition: opacity .2s ease;
}
.lb-info {
  text-align: center; margin-top: 18px;
  padding: 0 24px;
}
.lb-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--gold-light);
}
.lb-info p { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 5px; }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(198,167,94,.45);
  color: var(--gold); font-size: 1.2rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
}
.lb-arrow:hover { background: rgba(198,167,94,.18); border-color: var(--gold); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.c-slide  { cursor: pointer; }
.g-slide  { cursor: pointer; }

/* ─── Footer ────────────────────────────────────────────── */
#footer {
  background: var(--white);
  border-top: 1px solid rgba(198,167,94,.28);
  padding: 72px 64px 38px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; letter-spacing: .18em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 14px;
}
.footer-brand p {
  font-size: .87rem; line-height: 1.82;
  color: var(--text-mid); max-width: 250px;
}
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(198,167,94,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); text-decoration: none;
  font-size: .82rem; transition: var(--trans);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: .67rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: .87rem; color: var(--text-mid);
  text-decoration: none; transition: color .3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: .87rem; color: var(--text-mid); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(0,0,0,.32); letter-spacing: .05em; }

/* ─── Floating Controls ─────────────────────────────────── */
.float-btn {
  position: fixed; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(198,167,94,.45);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 900;
  color: var(--gold); font-size: .95rem;
  transition: var(--trans);
}
.float-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 6px 22px rgba(198,167,94,.4); }

#scrollTopBtn { bottom: 88px; opacity: 0; pointer-events: none; }
#scrollTopBtn.visible { opacity: 1; pointer-events: all; }
#musicToggle { bottom: 34px; }
.music-icon { font-size: 1rem; line-height: 1; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-vline { display: none; }
  .about-img-wrap img { height: 340px; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 22px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #about, #programs, #performances, #testimonials, #contact-strip {
    padding: 70px 24px;
  }
  .perf-header, .gallery-header, .programs-header { padding: 0 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  #footer { padding: 52px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  #hero { justify-content: center; }
  .hero-content {
    text-align: center; margin-left: 0;
    padding: 36px 28px; max-width: 92vw;
  }
  .hero-tagline { text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  #testimonials { padding: 70px 24px; }
  .t-inner { padding: 44px 28px; }
  .carousel-nav { padding: 0 24px; }
}
@media (max-width: 480px) {
  .splash-logo { font-size: 1.5rem; letter-spacing: .25em; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
}
