/* ===== Indian Royal Design System ===== */
:root {
  --navy: #070f1e;
  --navy-mid: #122240;
  --navy-light: #1e3358;
  --saffron: #ff8c1a;
  --saffron-deep: #e07000;
  --gold: #c9a227;
  --gold-light: #f0d875;
  --gold-pale: rgba(201, 162, 39, 0.15);
  --maroon: #7a1535;
  --maroon-deep: #5c0f28;
  --magenta: #e91e8c;
  --cyan: #00bcd4;
  --lime: #8bc34a;
  --yellow: #ffd700;
  --peacock: #0d7377;
  --cream: #fdf6ec;
  --cream-deep: #f5ebe0;
  --lavender: #f3edf8;
  --white: #ffffff;
  --text: #1e1e2e;
  --text-light: #5c5c6e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --shadow: 0 4px 24px rgba(7, 15, 30, 0.1);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.18);
  --shadow-lg: 0 16px 48px rgba(7, 15, 30, 0.16);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --pattern-dots: radial-gradient(circle, rgba(201, 162, 39, 0.12) 1px, transparent 1px);
  --pattern-size: 28px 28px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Global subtle mandala-like background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    var(--pattern-dots) 0 0 / var(--pattern-size),
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 140, 26, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(201, 162, 39, 0.07), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 40%, var(--cream-deep) 100%);
  pointer-events: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Logo ===== */
.c-yellow { color: var(--yellow); }
.c-magenta { color: var(--magenta); }
.c-cyan { color: var(--cyan); }
.c-lime { color: var(--lime); }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-img-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img--footer {
  height: 72px;
}

.logo-img-wrap--footer {
  display: inline-flex;
  margin-bottom: 4px;
}

.about-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 3;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-badge-logo {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.contact-card a {
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-card a:hover { color: var(--saffron); }

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover { color: var(--gold-light); }

.logo-line { display: block; }
.logo-kids { font-size: 1.65rem; letter-spacing: 4px; }
.logo-sm { font-size: 0.72rem; }
.logo-sm .logo-kids { font-size: 1.25rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33% 66%, var(--peacock) 66%);
  opacity: 0.85;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--saffron), var(--gold), transparent);
}

.header.scrolled {
  background: rgba(7, 15, 30, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
  z-index: 1002;
}

@media (min-width: 769px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 max(28px, calc((100% - 1180px) / 2 + 28px));
    pointer-events: none;
  }

  .nav-list,
  .nav .social-links {
    pointer-events: auto;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  position: relative;
  z-index: 1003;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 8px 11px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255, 140, 26, 0.35);
  margin-left: 6px;
  cursor: default;
}

.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--navy) !important;
  transform: none;
}

.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
  border-left-color: var(--saffron);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(201, 162, 39, 0.25);
}

.social-links a,
.social-links .social-icon {
  color: rgba(255, 255, 255, 0.65);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  transition: all var(--transition);
}

.social-links a:hover {
  color: var(--white);
  background: rgba(201, 162, 39, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-links .social-icon--static {
  cursor: default;
  pointer-events: none;
}

.social-links svg { width: 100%; height: 100%; }

.nav-mobile-head,
.nav-mobile-foot,
.nav-social-label {
  display: none;
}

/* ===== Hero Banner Carousel ===== */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.hero-banner {
  width: 100%;
  aspect-ratio: 21 / 10.35;
  max-height: min(82.8vh, 943px);
  min-height: 345px;
  background: var(--navy);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--hero-pos, center center);
  opacity: 0;
  transition: opacity 0.9s ease, background-position 0.3s ease;
}

.hero-slide.active { opacity: 1; }

/* 桌面端 / 平板：逐张微调焦点（保证最高脑袋尽量露出） */
.hero-slide--01 { --hero-pos: 50% 10%; }
.hero-slide--02 { --hero-pos: 50% 0%; }
.hero-slide--03 { --hero-pos: 68% 12%; }
.hero-slide--04 { --hero-pos: 50% 16%; }
.hero-slide--05 { --hero-pos: 50% 6%; }
.hero-slide--06 { --hero-pos: 50% 14%; }
.hero-slide--07 { --hero-pos: 50% 22%; }
.hero-slide--08 { --hero-pos: 50% 26%; }
.hero-slide--09 { --hero-pos: 50% 4%; }
.hero-slide--10 { --hero-pos: 50% 44%; }
.hero-slide--11 { --hero-pos: 50% 36%; }
.hero-slide--12 { --hero-pos: 50% 8%; }

@media (max-width: 1024px) {
  .hero-banner {
    aspect-ratio: 16 / 11.5;
    max-height: min(74.75vh, 828px);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    aspect-ratio: 4 / 5.75;
    max-height: none;
    min-height: 414px;
  }

  /* 手机端：容器更高，单独调整焦点 */
  .hero-slide--01 { --hero-pos: 50% 8%; }
  .hero-slide--02 { --hero-pos: 50% 0%; }
  .hero-slide--03 { --hero-pos: 62% 10%; }
  .hero-slide--04 { --hero-pos: 50% 12%; }
  .hero-slide--05 { --hero-pos: 50% 4%; }
  .hero-slide--06 { --hero-pos: 50% 10%; }
  .hero-slide--07 { --hero-pos: 50% 18%; }
  .hero-slide--08 { --hero-pos: 50% 22%; }
  .hero-slide--09 { --hero-pos: 50% 2%; }
  .hero-slide--10 { --hero-pos: 50% 32%; }
  .hero-slide--11 { --hero-pos: 50% 24%; }
  .hero-slide--12 { --hero-pos: 50% 6%; }
}

@media (max-width: 480px) {
  .hero-banner {
    aspect-ratio: 3 / 4.6;
    min-height: 368px;
  }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(7, 15, 30, 0.45);
  color: var(--white);
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(201, 162, 39, 0.85);
  border-color: var(--gold-light);
  color: var(--navy);
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(7, 15, 30, 0.35);
  backdrop-filter: blur(6px);
}

.hero-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dots .dot.active {
  background: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

.hero-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon), var(--maroon-deep));
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 12px 28px;
  font-size: 0.84rem;
  font-weight: 500;
  flex-wrap: wrap;
  border-top: 2px solid rgba(201, 162, 39, 0.4);
  letter-spacing: 0.3px;
}

.hero-contact-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* legacy hero text — removed from markup */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(255, 140, 26, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 140, 26, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(201, 162, 39, 0.55);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ===== Ornament Divider ===== */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  background: var(--white);
}

.ornament-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-divider .ornament {
  color: var(--gold);
  font-size: 1.1rem;
  padding: 10px 0;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pattern-dots) 0 0 / var(--pattern-size);
  opacity: 0.5;
  pointer-events: none;
}

.section-cream {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.section-cream::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--peacock));
  opacity: 0.35;
}

.section-lavender {
  background: linear-gradient(160deg, var(--lavender) 0%, #ebe3f5 100%);
}

.section-talent {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 50%, #0f3d4a 100%);
  overflow: hidden;
}

.section-talent::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(201, 162, 39, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 140, 26, 0.08) 0%, transparent 45%),
    var(--pattern-dots) 0 0 / var(--pattern-size);
  opacity: 0.6;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.section-header.light .section-tag,
.section-header.light .section-title { color: var(--white); }

.section-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}

.section-header.light .section-tag { color: var(--saffron); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.title-ornament {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.title-ornament::before,
.title-ornament::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--gold);
}

.title-ornament::before { left: -18px; }
.title-ornament::after { right: -18px; }

.title-ornament.gold {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}

/* ===== Gallery ===== */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 2px solid rgba(201, 162, 39, 0.2);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item--event img {
  object-position: center 12%;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(7, 15, 30, 0.92));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  border-left: 3px solid var(--saffron);
  padding-left: 12px;
}

/* ===== Carousel Controls ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: -23px; }
.carousel-btn.next { right: -23px; }

.carousel-btn.light {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.carousel-btn.light:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--navy);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(7, 15, 30, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

.carousel-dots.light .dot { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); }
.carousel-dots.light .dot.active { background: var(--gold); border-color: var(--gold-light); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 2;
}

.about-image > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.logo-kids-sm {
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 0.97rem;
}

.about-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 32px 0 14px;
  position: relative;
  padding-left: 20px;
}

.about-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: linear-gradient(var(--saffron), var(--gold));
  border-radius: 2px;
}

.feature-list li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--text-light);
  font-size: 0.94rem;
}

.feature-list li::before {
  content: '❋';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-size: 0.7rem;
  top: 9px;
}

.check-list li::before { content: '✦'; color: var(--gold); font-size: 0.75rem; top: 8px; }

.about-contact {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(255, 140, 26, 0.08));
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.25);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* ===== Talent ===== */
.talent-carousel { position: relative; z-index: 1; }

.talent-slides { overflow: hidden; }

.talent-slide {
  display: none;
  animation: fadeIn 0.55s ease;
}

.talent-slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.talent-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.talent-image {
  background: #0a1528;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  object-position: center center;
}

.talent-text {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #faf5eb 0%, #f0f4f8 100%);
  position: relative;
}

.talent-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--saffron), var(--gold));
}

.talent-text h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.talent-text p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 0.95rem;
}

.talent-carousel .carousel-btn.prev { left: 0; }
.talent-carousel .carousel-btn.next { right: 0; }

/* ===== Brands ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.brand-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.brand-card img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.05);
  transition: transform var(--transition), filter var(--transition);
}

.brand-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.brand-card:hover::before { transform: scaleX(1); }

.brand-card span {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 1.2px;
}

.brand-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

/* ===== Ambassador ===== */
.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}

.ambassador-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.15);
  box-shadow: var(--shadow);
}

.ambassador-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 162, 39, 0.35);
}

.ambassador-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px var(--gold-pale), 0 8px 24px rgba(7, 15, 30, 0.15);
  transition: all var(--transition);
}

.ambassador-card:hover .ambassador-photo {
  box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.25), 0 12px 32px rgba(201, 162, 39, 0.2);
}

.ambassador-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ambassador-card h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.ambassador-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-pale);
  opacity: 0.5;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 162, 39, 0.35);
}

.step-num {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.step-card h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.step-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== Video ===== */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
  background: var(--navy);
  aspect-ratio: 16/9;
  z-index: 1;
}

.event-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background:
    linear-gradient(transparent 40%, rgba(7, 15, 30, 0.45) 100%),
    transparent;
  cursor: pointer;
  transition: opacity var(--transition), visibility var(--transition);
}

.video-play-overlay svg {
  width: 52px;
  height: 52px;
  color: var(--white);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.video-play-ring {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(7, 15, 30, 0.55);
  border: 2px solid rgba(201, 162, 39, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform var(--transition), background var(--transition);
}

.video-play-overlay:hover .video-play-ring {
  transform: scale(1.08);
  background: rgba(201, 162, 39, 0.35);
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-wrapper.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}

.faq-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.4);
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--saffron);
}

.faq-item[open] summary {
  background: linear-gradient(135deg, var(--cream), var(--gold-pale));
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.faq-item p,
.faq-answer {
  padding: 18px 28px 24px;
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.75;
  background: linear-gradient(180deg, #f5f9fc 0%, #eef6fb 100%);
}

.faq-answer p {
  padding: 0 0 10px;
  background: none;
}

.faq-answer ul {
  margin: 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
  color: var(--text-light);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(201, 162, 39, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.contact-card:hover::before { transform: scaleX(1); }

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 162, 39, 0.3);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.contact-icon-tg {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #229ED9, #1a8bc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.35);
}

.contact-icon-tg svg { width: 100%; height: 100%; }

.contact-card h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #040a14 100%);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 64px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--peacock));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.fab svg { width: 26px; height: 26px; }

.fab-telegram {
  bottom: 26px;
  right: 26px;
  background: linear-gradient(135deg, #229ED9, #1a7fb8);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.fab-telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.55);
}

.fab--static {
  cursor: default;
  pointer-events: none;
}

.fab--static:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.fab-top {
  bottom: 92px;
  right: 26px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-light);
  border: 2px solid rgba(201, 162, 39, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.fab-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(122, 21, 53, 0.45);
  background: linear-gradient(135deg, var(--maroon), var(--navy-mid));
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .talent-card { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ambassador-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-mobile-head,
  .nav-mobile-foot {
    display: flex;
  }

  .nav-social-label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    padding: 0 24px 10px;
    flex-shrink: 0;
  }

  .nav-item-registration {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background: linear-gradient(180deg, #070f1e 0%, #0c1a32 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition);
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }

  .nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile-head {
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    flex-shrink: 0;
  }

  .nav-mobile-title {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
  }

  .nav-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
  }

  .nav-list {
    flex: 1;
    flex-direction: column;
    width: 100%;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 16px 16px;
  }

  .nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    padding: 14px 12px;
    font-size: 0.92rem;
    width: 100%;
    border-radius: 10px;
    justify-content: space-between;
  }

  .nav-link.active {
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.1);
  }

  .nav-link.nav-cta {
    display: none;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    margin: 0 0 0 8px;
    padding: 0;
    border-left: 2px solid rgba(201, 162, 39, 0.25);
    border-radius: 0;
    transition: max-height 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    max-height: 240px;
    padding: 4px 0 10px;
  }

  .nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
  }

  .dropdown-menu a {
    padding: 11px 16px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    border-left: none;
  }

  .dropdown-menu a:hover {
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.08);
  }

  .nav-mobile-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }

  .nav-cta--mobile {
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 14px 24px;
    font-size: 0.92rem;
    border-radius: 50px;
  }

  .social-links {
    margin: 0;
    padding: 8px 24px 24px;
    border: none;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .social-links a,
  .social-links .social-icon {
    width: 38px;
    height: 38px;
  }

  .gallery-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .gallery-carousel .carousel-btn {
    display: flex;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: rgba(7, 15, 30, 0.32);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .gallery-carousel .carousel-btn.prev { left: 10px; }
  .gallery-carousel .carousel-btn.next { right: 10px; }

  .gallery-carousel .carousel-btn:active {
    background: rgba(201, 162, 39, 0.78);
    border-color: var(--gold-light);
    color: var(--navy);
  }

  .steps-grid { grid-template-columns: 1fr; }
  .ambassador-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-contact-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 0.76rem;
    padding: 12px 16px;
  }

  .hero-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .hero-dots { bottom: 72px; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .about-contact { flex-direction: column; gap: 10px; }
  .hero-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
