/* =============================================
   AISHWARYA MAJMUDAR — PREMIUM CORPORATE SITE
   Complete Design System & All Page Styles
   ============================================= */

/* ===========================================
   1. CSS CUSTOM PROPERTIES
   =========================================== */
:root {
  /* Primary Palette — Refined Maroon + Navy + Gold */
  --color-primary: #7B2D4E;
  --color-primary-dark: #5A1835;
  --color-primary-light: #9E4068;
  --color-navy: #141432;
  --color-navy-mid: #1E1E48;
  --color-navy-light: #2A2A5C;
  --color-gold: #C8A24D;
  --color-gold-light: #DABB6A;
  --color-gold-dark: #A8863D;

  /* Neutrals */
  --color-cream: #F9F6F1;
  --color-cream-dark: #EFE9DF;
  --color-white: #FFFFFF;
  --color-black: #09090B;
  --color-text: #2A2A32;
  --color-text-light: #5E5E6E;
  --color-text-muted: #8E8E9E;
  --color-border: rgba(0, 0, 0, 0.07);

  /* Glass */
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-strong: rgba(255, 255, 255, 0.14);
  --color-glass-border: rgba(255, 255, 255, 0.12);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 32px rgba(200, 162, 77, 0.25);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.35s var(--ease-smooth);
  --transition-slow: 0.55s var(--ease-out);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 880px;
  --nav-height: 72px;
  --section-gap: clamp(5rem, 10vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

::selection {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h5 { font-size: 1.05rem; }
h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

.text-accent { font-family: var(--font-accent); }
.text-gold   { color: var(--color-gold); }

/* ===========================================
   4. LAYOUT — CONTAINER
   =========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow { max-width: var(--container-narrow); }

/* ===========================================
   5. SECTIONS — SPACING & THEMES
   =========================================== */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section--dark {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 {
  color: var(--color-white);
}

.section--cream {
  background: var(--color-cream-dark);
}

.section--primary {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  color: rgba(255, 255, 255, 0.9);
}
.section--primary h1, .section--primary h2, .section--primary h3 {
  color: var(--color-white);
}

/* Section Headers — BEM classes from index.html */
.section__header {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.section__title {
  margin-bottom: 1rem;
}

.section__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.7;
}

/* Also support hyphenated versions for sub-pages */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-light);
  font-style: italic;
  max-width: 700px;
}

/* ===========================================
   6. PASSWORD PAGE
   =========================================== */
.password-page {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0C0B1E 0%, #1A1840 40%, #141432 100%);
  overflow: hidden;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.password-page.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

#password-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.password-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  animation: cardAppear 0.9s var(--ease-out) forwards;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
}

@keyframes cardAppear {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.password-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200, 162, 77, 0.3);
}

.password-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-navy);
  fill: none;
}

.password-card__title,
.password-card h2 {
  color: var(--color-white) !important;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.password-card__subtitle,
.password-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.password-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 1.5rem;
}

.password-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.password-dots .dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(200, 162, 77, 0.5);
}

/* Password input — direct class (.password-input) */
.password-input,
.password-input-group input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-align: center;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  margin-bottom: 1rem;
}

.password-input::placeholder,
.password-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}

.password-input:focus,
.password-input-group input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 24px rgba(200, 162, 77, 0.12);
}

/* Password button — .password-submit or .password-btn */
.password-submit,
.password-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.password-submit:hover,
.password-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.password-submit svg {
  stroke: var(--color-navy);
  transition: transform var(--transition-fast);
}

.password-submit:hover svg {
  transform: translateX(3px);
}

.password-error {
  color: #F87171;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.password-error.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   7. PAGE LOADER
   =========================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(200, 162, 77, 0.15);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ===========================================
   8. NAVIGATION
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.nav-logo span { color: var(--color-gold); }

.navbar.scrolled .nav-logo { color: var(--color-navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold);
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
}

/* CTA Button in Nav */
.nav-cta {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy) !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--color-navy) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 0;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span { background: var(--color-navy); }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-navy);
  z-index: 999;
  padding: 100px 2rem 2rem;
  transition: right var(--transition-slow);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu .nav-link {
  display: block;
  font-size: 1.1rem;
  padding: 0.9rem 0;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-menu .nav-link::after { display: none; }

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: var(--color-gold);
}

.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 1.5rem;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

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

/* ===========================================
   9. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover svg { transform: translateX(3px); }

/* ===========================================
   10. HERO SECTION (Homepage)
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 50, 0.97) 0%,
    rgba(90, 24, 53, 0.55) 50%,
    rgba(20, 20, 50, 0.92) 100%
  );
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 162, 77, 0.12);
  border: 1px solid rgba(200, 162, 77, 0.25);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--color-white) !important;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.hero__stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero Image */
.hero__image {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.hero__image-frame img {
  width: 100%;
  height: clamp(400px, 50vw, 580px);
  object-fit: cover;
  object-position: top center;
}

.hero__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(200, 162, 77, 0.25);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.hero__image-dots {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--color-gold) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.25;
  pointer-events: none;
}

/* Hero responsive */
@media (max-width: 968px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__content { max-width: 100%; }
  .hero__description { margin: 0 auto 2rem; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__stat { text-align: center; }
  .hero__image { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 580px) {
  .hero__image { display: none; }
  .hero__stats { gap: 1.2rem; }
  .hero__stat-number { font-size: 1.4rem; }
}

/* Old class aliases for sub-pages */
.hero-bg       { position: absolute; inset: 0; z-index: 0; }
.hero-bg img   { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: brightness(0.5); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,20,50,0.95), rgba(90,24,53,0.6), rgba(20,20,50,0.9)); z-index: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content  { position: relative; z-index: 3; max-width: var(--container-max); margin: 0 auto; padding: calc(var(--nav-height) + 4rem) clamp(1.25rem, 4vw, 3rem) 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text     { animation: heroFadeIn 1s ease-out 0.3s forwards; opacity: 0; transform: translateY(40px); }
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,162,77,0.12); border: 1px solid rgba(200,162,77,0.25); padding: 7px 18px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.5rem; }
.hero h1 { color: var(--color-white); margin-bottom: 1.5rem; line-height: 1.08; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.6); max-width: 540px; margin-bottom: 2rem; line-height: 1.8; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat .number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-gold); line-height: 1; }
.hero-stat .label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-image { position: relative; }
.hero-image__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.35); }
.hero-image__frame img { width: 100%; height: 580px; object-fit: cover; object-position: top center; }
.hero-image__accent { position: absolute; top: -16px; right: -16px; width: 100px; height: 100px; border: 2px solid rgba(200,162,77,0.25); border-radius: var(--radius-md); pointer-events: none; }
.hero-image__dots { position: absolute; bottom: -24px; left: -24px; width: 80px; height: 80px; background-image: radial-gradient(var(--color-gold) 1.5px, transparent 1.5px); background-size: 10px 10px; opacity: 0.25; pointer-events: none; }
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
}

/* ===========================================
   11. ALBUMS SECTION (Homepage)
   =========================================== */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.album-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.album-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.album-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
}

.album-card__placeholder svg {
  stroke: var(--color-gold);
  opacity: 0.5;
}

.album-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.album-card:hover .album-card__image img {
  transform: scale(1.05);
}

.album-card__info {
  padding: 1.5rem;
}

.album-card__genre {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.album-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.album-card__description {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Waveform player */
.album-card__player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
}

.album-card__play {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.album-card__play:hover { transform: scale(1.1); }

.album-card__play svg {
  fill: var(--color-navy);
  margin-left: 2px;
}

.album-card__waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}

.album-card__waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: 0.3;
  height: var(--h, 40%);
}

/* Generate random-looking bar heights via nth-child */
.album-card__waveform span:nth-child(1)  { --h: 30%; }
.album-card__waveform span:nth-child(2)  { --h: 55%; opacity: 0.5; }
.album-card__waveform span:nth-child(3)  { --h: 80%; opacity: 0.7; }
.album-card__waveform span:nth-child(4)  { --h: 45%; }
.album-card__waveform span:nth-child(5)  { --h: 70%; opacity: 0.6; }
.album-card__waveform span:nth-child(6)  { --h: 95%; opacity: 0.8; }
.album-card__waveform span:nth-child(7)  { --h: 60%; opacity: 0.5; }
.album-card__waveform span:nth-child(8)  { --h: 40%; }
.album-card__waveform span:nth-child(9)  { --h: 75%; opacity: 0.7; }
.album-card__waveform span:nth-child(10) { --h: 50%; opacity: 0.5; }
.album-card__waveform span:nth-child(11) { --h: 85%; opacity: 0.8; }
.album-card__waveform span:nth-child(12) { --h: 35%; }
.album-card__waveform span:nth-child(13) { --h: 65%; opacity: 0.6; }
.album-card__waveform span:nth-child(14) { --h: 90%; opacity: 0.7; }
.album-card__waveform span:nth-child(15) { --h: 45%; }
.album-card__waveform span:nth-child(16) { --h: 70%; opacity: 0.6; }
.album-card__waveform span:nth-child(17) { --h: 55%; opacity: 0.5; }
.album-card__waveform span:nth-child(18) { --h: 80%; opacity: 0.7; }
.album-card__waveform span:nth-child(19) { --h: 40%; }
.album-card__waveform span:nth-child(20) { --h: 60%; opacity: 0.5; }

.album-card__duration {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Also support old .album-grid for sub-pages */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.album-card__cover {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.album-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-navy);
  transition: transform var(--transition-slow);
}

.album-card:hover .album-card__cover img { transform: scale(1.05); }

.album-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .albums-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .albums-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   12. PERFORMANCES SECTION (Homepage)
   =========================================== */
.performances-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.performances__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.performances__image img {
  width: 100%;
  height: auto;
  display: block;
}

.performances__content {
  padding-top: 0.5rem;
}

.performances__subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.performances__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.performances__highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.performances__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.performances__highlights li svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--color-gold);
}

@media (max-width: 768px) {
  .performances-grid {
    grid-template-columns: 1fr;
  }
  .performances__image {
    position: relative;
    top: auto;
  }
}

/* ===========================================
   13. COUNTER / ACHIEVEMENTS
   =========================================== */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.counter-item {
  text-align: center;
  padding: 2rem 1rem;
}

.counter-item .count {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.counter-item__label,
.counter-item .count-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.counter-item__desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .counter-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   14. TESTIMONIALS
   =========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  margin-bottom: 1.25rem;
}

.testimonial-card__quote svg {
  opacity: 0.15;
  fill: var(--color-gold);
}

.testimonial-card__quote p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-card__info { flex: 1; }

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Also support the old flat class structure */
.testimonial-card__text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@media (max-width: 968px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}

/* ===========================================
   15. CTA BANNER
   =========================================== */
.cta-banner {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.cta-banner__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner__image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.cta-banner__content {
  max-width: 560px;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-white) !important;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-banner__image-wrapper { max-width: 360px; margin: 0 auto; }
  .cta-banner__content { margin: 0 auto; }
}

/* ===========================================
   16. FOOTER
   =========================================== */
.footer {
  background: #0B0B1A;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--color-gold) 50%, transparent 95%);
  opacity: 0.5;
}

.footer-main {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-col { }

/* Brand column */
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__logo span { color: var(--color-gold); }

/* Also support footer-brand__logo for sub-pages */
.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.footer-brand__logo span { color: var(--color-gold); }

.footer__description,
.footer-brand__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 340px;
}

.footer__socials,
.footer-social {
  display: flex;
  gap: 10px;
}

.footer__socials a,
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), transform var(--transition-base);
}

.footer__socials a:hover,
.footer-social a:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.footer__socials a svg,
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill var(--transition-fast);
}

.footer__socials a:hover svg,
.footer-social a:hover svg {
  fill: var(--color-navy);
}

/* Footer columns */
.footer-col__title,
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-col__links li,
.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col__links a,
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col__links a:hover,
.footer-col ul li a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-col__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Newsletter */
.footer__newsletter,
.newsletter-form {
  margin-bottom: 1.25rem;
}

.footer__newsletter-group,
.newsletter-form {
  display: flex;
  gap: 6px;
}

.footer__newsletter-group input,
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-base);
  min-width: 0;
}

.footer__newsletter-group input::placeholder,
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer__newsletter-group input:focus,
.newsletter-form input:focus {
  border-color: var(--color-gold);
}

.footer__newsletter-group button,
.newsletter-form button {
  padding: 10px 14px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer__newsletter-group button:hover,
.newsletter-form button:hover {
  background: var(--color-gold-light);
}

.footer__newsletter-group button svg {
  stroke: var(--color-navy);
}

/* Footer map */
.footer__map,
.footer-map {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer__map iframe,
.footer-map iframe {
  width: 100%;
  height: 130px;
  border: none;
  filter: grayscale(0.7) brightness(0.65);
  transition: filter var(--transition-base);
}

.footer__map iframe:hover,
.footer-map iframe:hover {
  filter: grayscale(0.3) brightness(0.8);
}

/* Footer bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom__inner,
.footer-bottom > .container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Support direct children layout */
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom__copyright,
.footer-bottom__left {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__copyright a,
.footer-bottom__left a {
  color: var(--color-gold);
  font-weight: 600;
}

.footer-bottom__copyright a:hover,
.footer-bottom__left a:hover {
  color: var(--color-gold-light);
}

.footer-bottom__links,
.footer-bottom__right {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a,
.footer-bottom__right a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__links a:hover,
.footer-bottom__right a:hover {
  color: var(--color-gold);
}

/* Footer responsive */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container,
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom__links { justify-content: center; }
}

/* ===========================================
   17. BACK TO TOP
   =========================================== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 162, 77, 0.35);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-navy);
}

/* ===========================================
   18. SCROLL REVEAL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   19. LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(9, 9, 11, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image,
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.92);
  transition: transform var(--transition-base);
}

.lightbox.open .lightbox__image,
.lightbox.open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.15); }
.lightbox__close svg { stroke: white; }

.lightbox__prev,
.lightbox__next,
.lightbox__nav--prev,
.lightbox__nav--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox__prev:hover,
.lightbox__next:hover,
.lightbox__nav--prev:hover,
.lightbox__nav--next:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox__prev, .lightbox__nav--prev { left: 1.5rem; }
.lightbox__next, .lightbox__nav--next { right: 1.5rem; }

.lightbox__prev svg,
.lightbox__next svg,
.lightbox__nav--prev svg,
.lightbox__nav--next svg {
  stroke: white;
}

/* ===========================================
   20. PAGE HEADER (Inner Pages)
   =========================================== */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
  background: var(--color-navy);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: brightness(0.4);
}

.page-header__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 50, 0.75), rgba(20, 20, 50, 0.95));
  z-index: 1;
}

.page-header__content,
.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.page-header__breadcrumb a { color: var(--color-gold); }
.page-header__breadcrumb span { opacity: 0.5; }

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  max-width: 580px;
}

/* ===========================================
   21. CARDS (Generic - Sub Pages)
   =========================================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image { position: relative; overflow: hidden; }

.card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img { transform: scale(1.05); }

.card__body { padding: 1.5rem; }

.card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.card__title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card__text { color: var(--color-text-light); font-size: 0.9rem; }

/* Glass Card */
.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition-base), transform var(--transition-base);
}

.glass-card:hover {
  background: var(--color-glass-strong);
  transform: translateY(-4px);
}

/* Featured Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) { .featured-grid { grid-template-columns: 1fr; } }

/* ===========================================
   22. TIMELINE (Sub Pages)
   =========================================== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 32px);
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 32px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-cream);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.15);
}

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 460px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .timeline::before { left: 16px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 44px;
    justify-content: flex-start;
  }
  .timeline-item::before { left: 16px; }
  .timeline-content { max-width: 100%; }
}

/* ===========================================
   23. PERFORMANCES SHOWCASE (Sub Pages)
   =========================================== */
.performance-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.performance-showcase:nth-child(even) { direction: rtl; }
.performance-showcase:nth-child(even) > * { direction: ltr; }

.performance-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.performance-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.performance-visual__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity var(--transition-base);
  cursor: pointer;
}

.performance-visual:hover .performance-visual__play { opacity: 1; }

.performance-visual__play-btn {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-base);
}

.performance-visual:hover .performance-visual__play-btn { transform: scale(1.08); }

.performance-visual__play-btn svg {
  fill: var(--color-navy);
  margin-left: 3px;
}

@media (max-width: 768px) {
  .performance-showcase,
  .performance-showcase:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ===========================================
   24. AWARDS (Sub Pages)
   =========================================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.award-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.award-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(200, 162, 77, 0.08), rgba(200, 162, 77, 0.16));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.award-card__icon svg { width: 24px; height: 24px; fill: var(--color-gold); }

.award-card__year {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.award-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.award-card__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* ===========================================
   25. COLLABORATIONS (Sub Pages)
   =========================================== */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.collab-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-align: center;
}

.collab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collab-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  font-weight: 700;
}

.collab-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.collab-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}

.collab-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* ===========================================
   26. GALLERY (Gallery Page)
   =========================================== */
.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 50, 0.75), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 500;
}

@media (max-width: 968px) { .gallery-masonry { columns: 2; } }
@media (max-width: 580px) { .gallery-masonry { columns: 1; } }

/* ===========================================
   27. CONTACT FORM (Contact Page)
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.08);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(200, 162, 77, 0.06), transparent);
  pointer-events: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(200, 162, 77, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
}

.contact-info-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-info-item__value a {
  color: var(--color-white);
}

.contact-info-item__value a:hover { color: var(--color-gold); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Map */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* ===========================================
   28. FAQ ACCORDION (Contact Page)
   =========================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item,
details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq-question,
details > summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-question:hover,
details > summary:hover { color: var(--color-primary); }

details > summary::-webkit-details-marker { display: none; }
details > summary::marker { display: none; }

details > summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] > summary::after {
  content: '−';
}

.faq-answer,
details > div,
details > p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================================
   29. AUDIO PLAYER (Sub Pages)
   =========================================== */
.audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
}

.audio-player__btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.audio-player__btn:hover { transform: scale(1.1); }
.audio-player__btn svg { fill: var(--color-navy); margin-left: 2px; }

.audio-player__waveform {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.audio-player__bar {
  width: 3px;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: 0.3;
  transition: opacity var(--transition-fast);
}

.audio-player__bar.active { opacity: 0.85; }

.audio-player__time {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ===========================================
   30. ASYMMETRIC GRID HELPER
   =========================================== */
.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.asymmetric-grid--reverse {
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 768px) {
  .asymmetric-grid,
  .asymmetric-grid--reverse {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   31. PARALLAX
   =========================================== */
.parallax-section { position: relative; overflow: hidden; }

.parallax-bg {
  position: absolute;
  inset: -15%;
  z-index: 0;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* ===========================================
   32. UTILITIES
   =========================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: 1.25rem 0;
}

.embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.embed-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.12em; }

.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ===========================================
   33. PRINT
   =========================================== */
@media print {
  .navbar, .password-page, .page-loader, .back-to-top, .lightbox,
  .mobile-menu, .mobile-overlay { display: none !important; }
  body { background: white; color: black; }
  .section--dark, .section--primary { background: white; color: black; }
  .footer { background: white; color: black; }
}
