/* ====================================================
   PRABAL PRATAP SINGH TOMAR – ULTRA-PREMIUM DESIGN SYSTEM
   Royal Authority × Modern Sports Energy × Spiritual Discipline
   ==================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Core Palette */
  --color-black: #0A0A0A;
  --color-deep-black: #050505;
  --color-surface: #111111;
  --color-surface-2: #1A1A1A;
  --color-surface-3: #222222;
  --color-gold: #C5A253;
  --color-gold-light: #D4B96A;
  --color-gold-dim: rgba(197, 162, 83, 0.15);
  --color-gold-glow: rgba(197, 162, 83, 0.4);
  --color-emerald: #0F3D3E;
  --color-emerald-light: #1A5E5F;
  --color-emerald-dim: rgba(15, 61, 62, 0.2);
  --color-blue: #1E90FF;
  --color-blue-dim: rgba(30, 144, 255, 0.15);
  --color-blue-glow: rgba(30, 144, 255, 0.3);
  --color-white: #FFFFFF;
  --color-off-white: #E8E4DC;
  --color-text: rgba(255, 255, 255, 0.85);
  --color-text-muted: rgba(255, 255, 255, 0.55);
  --color-text-dim: rgba(255, 255, 255, 0.35);
  --color-border: rgba(197, 162, 83, 0.12);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-overlay: rgba(5, 5, 5, 0.85);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 76px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(197, 162, 83, 0.15);
  --shadow-blue: 0 0 20px rgba(30, 144, 255, 0.15);

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Glass */
  --glass-bg: rgba(17, 17, 17, 0.6);
  --glass-border: rgba(197, 162, 83, 0.1);
  --glass-blur: blur(20px);
}

/* --- CSS Reset --- */
*, *::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(--color-text);
  background-color: var(--color-black);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  display: inline-block;
}

.label--blue {
  color: var(--color-blue);
}

/* ====================================================
   PASSWORD GATEWAY
   ==================================================== */
.gate {
  position: fixed;
  inset: 0;
  background: var(--color-deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.gate::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-gold-dim) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: gatePulse 4s ease-in-out infinite;
}

@keyframes gatePulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.gate__card {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 440px;
  padding: var(--space-3xl);
}

.gate__emblem {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-xl);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emblemFloat 3s ease-in-out infinite;
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gate__emblem svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
}

.gate__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.gate__subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-2xl);
}

.gate__input-wrap {
  position: relative;
  margin-bottom: var(--space-lg);
}

.gate__input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border-radius: 0;
}

.gate__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 20px var(--color-gold-dim), inset 0 0 20px rgba(197, 162, 83, 0.05);
}

.gate__input::placeholder {
  color: var(--color-text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gate__error {
  font-size: 0.78rem;
  color: #E53935;
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition-fast);
}

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

.gate__btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.gate__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.gate__btn:hover::before {
  left: 100%;
}

.gate__btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.gate__card.shake {
  animation: gateShake 0.5s ease;
}

/* ====================================================
   PARTICLE CANVAS
   ==================================================== */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ====================================================
   TOP NAVIGATION
   ==================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom-color: var(--color-border);
}

.nav__container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
  position: relative;
}

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

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-xl);
  z-index: 999;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--color-gold);
}

/* ====================================================
   LAYOUT UTILITIES
   ==================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
  z-index: 1;
}

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

.section--surface-2 {
  background: var(--color-surface-2);
}

.section--emerald {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #0A2E2F 100%);
}

.page-content {
  margin-top: var(--nav-height);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--asymmetric {
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
}

.grid--asymmetric-reverse {
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-3xl);
}

.grid--sidebar {
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
}

/* ====================================================
   SECTION HEADERS
   ==================================================== */
.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header .label {
  margin-bottom: var(--space-md);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 640px;
  font-size: 1.05rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

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

.section-header--center .section-divider {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* ====================================================
   GLASSMORPHISM PANELS
   ==================================================== */
.panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: var(--space-2xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-dim), transparent);
}

.panel:hover {
  border-color: rgba(197, 162, 83, 0.2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.panel--gold {
  border-top: 2px solid var(--color-gold);
}

.panel--emerald {
  border-top: 2px solid var(--color-emerald-light);
}

.panel--blue {
  border-top: 2px solid var(--color-blue);
}

.panel__icon {
  width: 52px;
  height: 52px;
  background: var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
  font-size: 1.4rem;
  border: 1px solid rgba(197, 162, 83, 0.1);
}

.panel__icon--emerald {
  background: var(--color-emerald-dim);
  color: var(--color-emerald-light);
  border-color: rgba(15, 61, 62, 0.2);
}

.panel__icon--blue {
  background: var(--color-blue-dim);
  color: var(--color-blue);
  border-color: rgba(30, 144, 255, 0.15);
}

.panel__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.panel__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.panel__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ====================================================
   STAT CARDS
   ==================================================== */
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.stat-card:hover::after {
  width: 60%;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.5) 50%, rgba(15,61,62,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

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

.hero__subtitle {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ====================================================
   PAGE HERO (INNER PAGES)
   ==================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--color-deep-black) 0%, var(--color-surface) 100%);
  padding: var(--space-5xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label {
  margin-bottom: var(--space-md);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  max-width: 600px;
  font-size: 1.05rem;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn--primary:hover::before {
  left: 100%;
}

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

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold-dim);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn--ghost:hover {
  color: var(--color-gold-light);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* ====================================================
   IMAGE BLOCKS
   ==================================================== */
.img-block {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border-subtle);
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

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

.img-block--cover img {
  object-fit: cover;
}

.img-block__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ====================================================
   TIMELINE
   ==================================================== */
.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

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

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl));
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.timeline__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ====================================================
   GALLERY GRID
   ==================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--color-border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(5,5,5,0.8));
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity var(--transition);
}

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

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

/* ====================================================
   FORM ELEMENTS
   ==================================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 0.9rem var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px var(--color-gold-dim);
}

.form-control::placeholder {
  color: var(--color-text-dim);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

/* ====================================================
   QUOTE BLOCK
   ==================================================== */
.quote-block {
  border-left: 2px solid var(--color-gold);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-gold-dim);
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-gold);
  position: absolute;
  top: -10px;
  left: var(--space-lg);
  line-height: 1;
  opacity: 0.5;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.quote-block cite {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 500;
}

/* ====================================================
   HORIZONTAL SCROLL SECTION
   ==================================================== */
.hscroll-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hscroll-container::-webkit-scrollbar {
  display: none;
}

.hscroll-track {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-md) 0;
}

.hscroll-track > * {
  flex: 0 0 350px;
  scroll-snap-align: start;
}

/* ====================================================
   SPLIT LAYOUT
   ==================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl);
}

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

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ====================================================
   FULL-WIDTH BANNER
   ==================================================== */
.banner {
  position: relative;
  padding: var(--space-5xl) 0;
  text-align: center;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__content {
  position: relative;
  z-index: 2;
}

/* ====================================================
   GLOW EFFECTS
   ==================================================== */
.glow-gold {
  box-shadow: 0 0 30px var(--color-gold-dim);
}

.glow-blue {
  box-shadow: 0 0 30px var(--color-blue-dim);
}

.glow-text {
  text-shadow: 0 0 20px var(--color-gold-glow);
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--color-deep-black);
  color: var(--color-text-muted);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

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

.footer__text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--color-text-dim);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 0;
}

.footer__bottom a {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--color-gold-light);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* ====================================================
   SCROLL REVEAL UTILITY
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

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

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

/* ====================================================
   LIGHT STREAK ANIMATION
   ==================================================== */
@keyframes lightStreak {
  0% { transform: translateX(-100%) rotate(-45deg); }
  100% { transform: translateX(300%) rotate(-45deg); }
}

.streak-container {
  position: relative;
  overflow: hidden;
}

.streak-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 20%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(197, 162, 83, 0.06), transparent);
  transform: rotate(-45deg);
  animation: lightStreak 6s ease-in-out infinite;
}

/* ====================================================
   PARALLAX UTILITY
   ==================================================== */
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  will-change: transform;
}

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

/* ====================================================
   RESPONSIVE DESIGN
   ==================================================== */
@media (max-width: 1024px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split {
    grid-template-columns: 1fr;
  }

  .split__content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .stat-card__number {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
}

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

  .hscroll-track > * {
    flex: 0 0 280px;
  }

  .split__content {
    padding: var(--space-2xl) var(--space-lg);
  }
}
