/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1B2A6B;
  --navy-dark: #111D4E;
  --navy-light: #243580;
  --gold: #C9941A;
  --gold-light: #E8B84B;
  --gold-pale: #FDF3D9;
  --gold-dark: #9E7010;
  --white: #FFFFFF;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #07091A;
  --bg2: #0D1130;
  --bg3: #111840;
  --bg4: #161E4A;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(201,148,26,0.2);
  --border2: rgba(201,148,26,0.4);
  --text: #FFFFFF;
  --text2: rgba(255,255,255,0.7);
  --text3: rgba(255,255,255,0.4);
  --shadow: rgba(0,0,0,0.6);
  --navbar-bg: rgba(7,9,26,0.95);
  --card-bg: rgba(13,17,48,0.9);
  --hero-overlay: linear-gradient(135deg, rgba(7,9,26,0.85) 0%, rgba(27,42,107,0.7) 100%);
  --footer-bg: #04060F;
}

[data-theme="light"] {
  --bg: #F5F3EE;
  --bg2: #EDEAE2;
  --bg3: #E5E0D5;
  --bg4: #DDD8CA;
  --surface: rgba(27,42,107,0.05);
  --surface2: rgba(27,42,107,0.09);
  --border: rgba(27,42,107,0.15);
  --border2: rgba(201,148,26,0.5);
  --text: #0A0E24;
  --text2: rgba(10,14,36,0.7);
  --text3: rgba(10,14,36,0.45);
  --shadow: rgba(27,42,107,0.15);
  --navbar-bg: rgba(245,243,238,0.97);
  --card-bg: rgba(255,255,255,0.95);
  --hero-overlay: linear-gradient(135deg, rgba(10,14,36,0.75) 0%, rgba(27,42,107,0.6) 100%);
  --footer-bg: #0D1130;
}

/* ===== CUSTOM CURSOR ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.native-cursor *, .native-cursor *::before, .native-cursor *::after {
  cursor: auto !important;
}

.cursor {
  position: fixed; z-index: 99999; pointer-events: none;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--gold-light);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  z-index: 99999; pointer-events: none;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
  z-index: 99998; pointer-events: none;
}
.cursor-dot.hovered { width: 12px; height: 12px; background: var(--gold); }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold-light); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,148,26,0.25);
  padding: 8px 5%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item i { color: var(--gold); font-size: 11px; }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.social-btn {
  width: 28px; height: 28px; border: 1px solid rgba(201,148,26,0.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 11px; text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  transition: all var(--transition);
}
.nav-logo { display: flex; align-items: center; gap: 14px; padding: 12px 0; text-decoration: none; }
.nav-logo img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(201,148,26,0.3)); }
.logo-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.5px; line-height: 1.2;
}
.logo-text p { font-size: 11px; color: var(--text3); }

.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 22px 15px; font-size: 13px; font-weight: 500;
  color: var(--text2); text-decoration: none;
  border: none; background: none; font-family: 'DM Sans', sans-serif;
  transition: color var(--transition); white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 2px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-item:hover .nav-link::after { transform: scaleX(1); }
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--gold-light); }
.nav-link .arr { font-size: 9px; color: var(--gold); transition: transform var(--transition); }
.nav-item:hover .arr { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 12px 12px;
  min-width: 250px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all var(--transition);
  box-shadow: 0 20px 60px var(--shadow);
  overflow: hidden; z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  padding: 12px 18px 8px; background: rgba(201,148,26,0.06);
  border-bottom: 1px solid var(--border);
}
.dropdown-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 18px; font-size: 13px; color: var(--text2);
  text-decoration: none; transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(201,148,26,0.08); color: var(--gold-light); }
.dropdown-icon {
  width: 34px; height: 34px; background: rgba(201,148,26,0.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 14px; color: var(--gold);
  flex-shrink: 0; transition: all 0.2s;
}
.dropdown-item:hover .dropdown-icon { background: var(--gold); color: #000; }
.dd-main { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.dd-sub { font-size: 11px; color: var(--text3); }

/* THEME & LANG */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--border); }
.theme-btn {
  width: 36px; height: 36px; border: 1px solid var(--border2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: none; color: var(--gold); font-size: 14px;
  transition: all var(--transition);
}
.theme-btn:hover { background: var(--gold); color: #000; }
.lang-switcher { display: flex; gap: 3px; }
.lang-btn {
  font-size: 11px; font-weight: 700; padding: 5px 9px;
  border-radius: 6px; border: 1px solid rgba(201,148,26,0.3);
  background: none; color: var(--text3);
  transition: all var(--transition); letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
}
.lang-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.lang-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* MOBILE MENU */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; background: var(--card-bg);
  border-top: 1px solid var(--border); padding: 16px 5%;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px; font-size: 14px; color: var(--text2);
  text-decoration: none; border-radius: 8px;
  transition: all 0.2s; display: flex; align-items: center; gap: 10px;
}
.mobile-link i { color: var(--gold); width: 16px; }
.mobile-link:hover { background: rgba(201,148,26,0.1); color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 60px),
                    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 60px);
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,26,0.15) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 80px 5%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,148,26,0.5); background: rgba(201,148,26,0.1);
  backdrop-filter: blur(10px);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  padding: 7px 16px; border-radius: 2px; margin-bottom: 24px;
  letter-spacing: 1.5px; text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { font-size: 10px; }
.hero-line {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
  animation: expandLine 1s ease both 0.3s;
}
@keyframes expandLine { from { width: 0; } to { width: 50px; } }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 700; line-height: 1.08;
  color: #fff; margin-bottom: 10px; letter-spacing: -1px;
  animation: fadeInUp 0.9s ease both 0.2s;
}
.hero-title em { color: var(--gold-light); font-style: italic; display: block; }
.hero-title .sub { color: rgba(255,255,255,0.25); font-size: 46px; }
.hero-desc {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.65); margin-bottom: 36px; font-weight: 300;
  max-width: 450px;
  animation: fadeInUp 0.9s ease both 0.4s;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease both 0.6s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000; border: none; padding: 14px 28px;
  border-radius: 3px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 9px;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px; box-shadow: 0 4px 20px rgba(201,148,26,0.3);
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity var(--transition);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,148,26,0.5); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold i { position: relative; z-index: 1; }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3); padding: 13px 26px;
  border-radius: 3px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,148,26,0.08); }

/* HERO STATS */
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  animation: fadeInRight 1s ease both 0.5s;
}
.hero-stat {
  background: rgba(7,9,26,0.7); backdrop-filter: blur(10px);
  padding: 28px 20px; text-align: center;
  transition: background var(--transition); position: relative;
}
[data-theme="light"] .hero-stat { background: rgba(255,255,255,0.15); }
.hero-stat::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gold); transition: width 0.4s;
}
.hero-stat:hover::after { width: 60%; }
.hero-stat:hover { background: rgba(201,148,26,0.1); }
.hero-stat i { font-size: 22px; color: var(--gold); margin-bottom: 12px; display: block; opacity: 0.85; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: #fff; line-height: 1;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.5px; }

/* SCROLL INDICATOR */
.scroll-ind {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  animation: bounce-down 2s ease infinite;
}
.scroll-ind i { font-size: 16px; color: var(--gold); }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* GOLD DIVIDER */
.gold-divider {
  height: 1px;
  margin: 40px 0;
  opacity: 0.45;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== SECTIONS ===== */
.section { padding: 90px 5%; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 90px 5%; }
.section-header { margin-bottom: 50px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.6;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 700; color: var(--text); line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle { font-size: 15px; color: var(--text3); line-height: 1.8; font-weight: 300; }

/* ===== PROGRAMS ===== */
.prog-bg { background: var(--bg2); }
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.prog-card {
  background: var(--card-bg); padding: 30px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.prog-card:hover { background: var(--bg3); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-card.reveal { animation: fadeInUp 0.7s ease both; }
.prog-icon-wrap {
  width: 52px; height: 52px; border: 1px solid var(--border2);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; transition: all var(--transition);
}
.prog-card:hover .prog-icon-wrap { background: var(--gold); border-color: var(--gold); }
.prog-icon-wrap i { font-size: 22px; color: var(--gold); transition: color var(--transition); }
.prog-card:hover .prog-icon-wrap i { color: #000; }
.prog-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.prog-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.prog-tag {
  font-size: 11px; border: 1px solid var(--border2);
  color: var(--gold); padding: 3px 10px; border-radius: 2px; letter-spacing: 0.3px;
}
.prog-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; background: var(--bg3);
}
.prog-more-icon {
  width: 48px; height: 48px; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px; transition: all var(--transition);
}
.prog-more:hover .prog-more-icon { background: var(--gold); border-color: var(--gold); }
.prog-more:hover .prog-more-icon i { color: #000; }
.prog-more-icon i { color: var(--gold); font-size: 16px; transition: color var(--transition); }
.prog-more span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--gold); font-style: italic;
}

/* ===== MEDIA ===== */
.media-bg { background: var(--bg); }
.media-tabs {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: 4px; width: fit-content; margin-bottom: 36px; overflow: hidden;
}
.media-tab {
  padding: 11px 26px; font-size: 13px; font-weight: 500;
  color: var(--text3); border: none; background: none;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.5px;
  border-right: 1px solid var(--border); transition: all var(--transition);
  cursor: pointer;
}
.media-tab:last-child { border-right: none; }
.media-tab.active {
  background: var(--gold);
  color: #0A0E24;
  font-weight: 700;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}
.media-tab:hover:not(.active) { background: rgba(201,148,26,0.08); }
.media-tab:focus-visible { outline: 2px solid rgba(201,148,26,0.5); outline-offset: 2px; }
.media-tab i { margin-right: 8px; font-size: 12px; }

.video-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 2px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.video-main {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-main img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.video-overlay {
  position: absolute; inset: 0; background: rgba(7,9,26,0.45);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; transition: background var(--transition);
}
.video-main:hover .video-overlay { background: rgba(7,9,26,0.25); }
.play-btn {
  width: 74px; height: 74px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(201,148,26,0.15); backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.play-btn:hover { background: var(--gold); transform: scale(1.12); }
.play-btn i { font-size: 28px; color: var(--gold); margin-left: 4px; transition: color 0.3s; }
.play-btn:hover i { color: #000; }
.video-info { color: #fff; text-align: center; }
.video-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; margin-bottom: 5px;
}
.video-info p { font-size: 12px; color: rgba(255,255,255,0.55); }
.video-sidebar { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
.video-mini {
  flex: 1; position: relative; background: var(--bg3);
  display: flex; align-items: center; overflow: hidden; transition: background 0.2s;
}
.video-mini:hover { background: var(--bg4); }
.video-mini-overlay {
  position: absolute; inset: 0; display: flex;
  align-items: center; gap: 12px; padding: 14px;
}
.play-mini {
  width: 34px; height: 34px; border: 1px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.2s;
  background: rgba(201,148,26,0.1);
}
.video-mini:hover .play-mini { background: var(--gold); }
.video-mini:hover .play-mini i { color: #000; }
.play-mini i { font-size: 11px; color: var(--gold); margin-left: 2px; transition: color 0.2s; }
.video-mini-info .v-title { font-size: 12px; font-weight: 500; color: var(--text2); margin-bottom: 3px; }
.video-mini-info .v-dur { font-size: 11px; color: var(--text3); }
.video-mini-info .v-dur i { font-size: 9px; color: var(--gold); margin-right: 4px; }
.mini-thumb {
  position: absolute; right: 0; top: 0; bottom: 0; width: 80px;
  opacity: 0.12; font-size: 48px; display: flex; align-items: center;
  justify-content: center;
}
.mini-thumb i { font-size: 48px; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  display: none;
}
.gallery-grid.active { display: grid; }
.gallery-item {
  background: var(--bg3); display: flex; align-items: center;
  justify-content: center; font-size: 40px; position: relative;
  overflow: hidden; transition: all var(--transition);
}
.gallery-item > i { font-size: inherit; }
.gallery-item:hover { background: var(--bg4); }
.gallery-main { grid-column: span 2; grid-row: span 2; font-size: 80px; }
.gallery-label {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  font-size: 11px; color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 3px; opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(201,148,26,0.15);
  border: 1px solid transparent; display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; border-color: rgba(201,148,26,0.5); }
.gallery-overlay i { font-size: 24px; color: var(--gold-light); }

/* VIDEO SECTION TOGGLE */
#video-section { display: block; }
#gallery-section { display: none; }
#video-section.hidden { display: none; }
#gallery-section.visible { display: block; }

/* ===== NEWS ===== */
.news-bg { background: var(--bg2); }
.news-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.news-card {
  background: var(--card-bg); transition: all var(--transition);
}
.news-card:hover { background: var(--bg3); }
.news-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 60px; position: relative; overflow: hidden;
}
.news-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,9,26,0.8), transparent 60%);
}
.ni1 { background: linear-gradient(135deg, #0B1035, #1B2A6B); }
.ni2 { background: linear-gradient(135deg, #0B1020, #142040); }
.ni3 { background: linear-gradient(135deg, #0A1510, #123020); }
.news-tag-pill {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 700; padding: 4px 12px;
  letter-spacing: 1px; text-transform: uppercase; z-index: 2;
  border-radius: 1px;
}
.news-emoji { opacity: 0.25; position: relative; z-index: 1; }
.news-body { padding: 22px; }
.news-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text3); margin-bottom: 10px;
}
.news-meta i { font-size: 10px; color: var(--gold); opacity: 0.8; }
.news-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.55; margin-bottom: 14px;
}
.news-card.featured .news-title {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700;
}
.news-link {
  font-size: 12px; color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none;
}
.news-link i { font-size: 10px; transition: transform 0.2s; }
.news-card:hover .news-link i { transform: translateX(4px); }

/* ===== TEAM ===== */
.team-bg { background: var(--bg); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.team-card {
  background: var(--card-bg); text-align: center;
  transition: all var(--transition);
}
.team-card:hover { background: var(--bg3); }
.team-avatar {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 72px; position: relative; overflow: hidden;
}
.team-avatar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; background: linear-gradient(to top, var(--card-bg), transparent);
  transition: all var(--transition);
}
.team-card:hover .team-avatar::after {
  background: linear-gradient(to top, var(--bg3), transparent);
}
.ta1 { background: radial-gradient(circle at 50% 40%, #1B2A6B55, #07091A); }
.ta2 { background: radial-gradient(circle at 50% 40%, #1B6B3355, #07091A); }
.ta3 { background: radial-gradient(circle at 50% 40%, #6B1B6B55, #07091A); }
.ta4 { background: radial-gradient(circle at 50% 40%, #6B1B1B55, #07091A); }
.ta5 { background: radial-gradient(circle at 50% 40%, #6B4E1B55, #07091A); }
.ta6 { background: radial-gradient(circle at 50% 40%, #1B5A6B55, #07091A); }
.ta7 { background: radial-gradient(circle at 50% 40%, #1B6B6B55, #07091A); }
.ta8 { background: radial-gradient(circle at 50% 40%, #2B6B1B55, #07091A); }
.team-badge {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  border: 1px solid rgba(201,148,26,0.45);
  background: rgba(7,9,26,0.85); backdrop-filter: blur(8px);
  padding: 4px 14px; font-size: 10px; font-weight: 700;
  color: var(--gold); white-space: nowrap; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 1px;
}
.team-info { padding: 18px 14px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 5px;
}
.team-role { font-size: 11px; color: var(--text3); margin-bottom: 14px; line-height: 1.5; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-soc {
  width: 30px; height: 30px; border: 1px solid var(--border2);
  border-radius: 2px; display: flex; align-items: center;
  justify-content: center; transition: all 0.2s;
}
.team-soc:hover { background: var(--gold); border-color: var(--gold); }
.team-soc i { font-size: 11px; color: var(--gold); transition: color 0.2s; }
.team-soc:hover i { color: #000; }

/* ===== ACHIEVEMENTS ===== */
.achieve-bg {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-dark));
  border-top: 1px solid rgba(201,148,26,0.2);
  border-bottom: 1px solid rgba(201,148,26,0.2);
}
.achieve-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.achieve-card {
  padding: 60px 20px; text-align: center;
  border-right: 1px solid rgba(201,148,26,0.15); position: relative;
}
.achieve-card:last-child { border-right: none; }
.achieve-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gold); transition: width 0.5s;
}
.achieve-card:hover::after { width: 60%; }
.achieve-icon {
  width: 60px; height: 60px; border: 1px solid rgba(201,148,26,0.35);
  margin: 0 auto 20px; display: flex; align-items: center;
  justify-content: center; border-radius: 3px; transition: all var(--transition);
}
.achieve-card:hover .achieve-icon { background: rgba(201,148,26,0.15); border-color: var(--gold); }
.achieve-icon i { font-size: 24px; color: var(--gold); opacity: 0.9; }
.achieve-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.achieve-label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 8px; letter-spacing: 1px; text-transform: uppercase;
}

/* ===== CTA ===== */
.cta-wrap { background: var(--bg2); padding: 90px 5%; }
.cta-box {
  border: 1px solid var(--border2); border-radius: 6px;
  padding: 70px 40px; max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.cta-desc { font-size: 15px; color: var(--text3); margin-bottom: 36px; line-height: 1.8; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(201,148,26,0.15);
  padding: 70px 5% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,148,26,0.1);
  max-width: 1200px; margin: 0 auto;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold-light); font-weight: 600;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,0.35);
  line-height: 1.8; margin-bottom: 22px; font-weight: 300;
}
.footer-socs { display: flex; gap: 8px; }
.footer-soc {
  width: 34px; height: 34px; border: 1px solid rgba(201,148,26,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); border-radius: 2px; text-decoration: none;
}
.footer-soc:hover { background: var(--gold); border-color: var(--gold); }
.footer-soc i { font-size: 13px; color: var(--gold); transition: color var(--transition); }
.footer-soc:hover i { color: #000; }
.footer-col-title {
  font-size: 11px; font-weight: 700; color: var(--gold);
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: 2px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: none; display: flex; align-items: flex-start; gap: 8px;
  transition: color var(--transition); font-weight: 300; line-height: 1.5;
}
.footer-links li a i { font-size: 9px; color: var(--gold); opacity: 0.7; margin-top: 3px; flex-shrink: 0; }
.footer-links li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
  color: rgba(255,255,255,0.2); letter-spacing: 0.3px;
  max-width: 1200px; margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-title { font-size: 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { max-width: 460px; }
  .hero-stat-num { font-size: 32px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-card:nth-child(2) { border-right: none; }
  .achieve-card:nth-child(3) { border-right: 1px solid rgba(201,148,26,0.15); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .topbar-left { gap: 12px; font-size: 11px; }
  .topbar-item:last-child { display: none; }
  .nav-menu { display: none; }
  .burger { display: flex; }
  .hero-title { font-size: 38px; }
  .hero-title .sub { font-size: 30px; }
  .section-title { font-size: 32px; }
  .programs-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-sidebar { flex-direction: row; overflow-x: auto; }
  .video-mini { min-width: 200px; aspect-ratio: 16/9; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-card { padding: 36px 16px; }
  .achieve-card:nth-child(odd) { border-right: 1px solid rgba(201,148,26,0.15); }
  .achieve-card:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-box { padding: 44px 20px; }
  .cta-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-main { grid-column: span 2; }
  .nav-actions { gap: 6px; }
}

/* ===== DYNAMIC CONTENT & LIGHT MODE FIXES ===== */
[data-theme="light"] {
  --hero-overlay: linear-gradient(135deg, rgba(245,243,238,0.72) 0%, rgba(229,224,213,0.6) 100%);
}

[data-theme="light"] .topbar {
  background: #e7dfcf;
  color: rgba(10,14,36,0.78);
  border-bottom-color: rgba(27,42,107,0.14);
}

[data-theme="light"] .topbar-item i,
[data-theme="light"] .logo-text h2 {
  color: var(--navy-dark);
}

[data-theme="light"] .hero-badge {
  background: rgba(255,255,255,0.75);
  color: var(--navy-dark);
  border-color: rgba(201,148,26,0.5);
}

[data-theme="light"] .hero-title {
  color: var(--navy-dark);
}

[data-theme="light"] .hero-title .sub {
  color: rgba(27,42,107,0.35);
}

[data-theme="light"] .hero-desc {
  color: rgba(10,14,36,0.82);
}

[data-theme="light"] .hero-stat {
  background: rgba(255,255,255,0.78);
}

[data-theme="light"] .hero-stat-num {
  color: var(--navy-dark);
}

[data-theme="light"] .hero-stat-label,
[data-theme="light"] .scroll-ind {
  color: rgba(10,14,36,0.72);
}

.video-embed-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.video-info-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 16px 18px;
  background: rgba(7,9,26,0.62);
  color: #fff;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.video-info-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.video-info-panel p {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

[data-theme="light"] .video-info-panel {
  background: rgba(255,255,255,0.82);
  color: var(--navy-dark);
}

[data-theme="light"] .video-info-panel p {
  color: rgba(10,14,36,0.72);
}

.video-switcher {
  border: none;
  width: 100%;
  text-align: left;
}

.active-video {
  background: rgba(201,148,26,0.14);
}

.gallery-item img,
.news-image-shell img,
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme="light"] .team-badge {
  background: rgba(255,255,255,0.84);
  color: var(--navy-dark);
  border-color: rgba(201,148,26,0.52);
}

[data-theme="light"] .footer-brand-desc,
[data-theme="light"] .footer-links li a,
[data-theme="light"] .footer-bottom,
[data-theme="light"] .achieve-label {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .video-embed-shell iframe {
    min-height: 260px;
  }
}
