/* ==========================================================================
   TWII (The Wonder that is India) - Museum-Grade Showcase SPA Stylesheet
   Color Palette:
   - Body Background: #f9f4f4
   - Header Background: #ffffff
   - Main Typography: #1f1d1b (Deep Charcoal)
   - Gold Accent: #c59b27 (Muted Heritage Gold)
   - Gold Hover: #9e7a1b
   - Secondary Slate: #524d49
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-body: #f9f4f4;
  --bg-card: #ffffff;
  --bg-header: #ffffff;
  --text-main: #1f1d1b;
  --text-muted: #615a55;
  --text-light: #8e8680;
  --gold-primary: #c59b27;
  --gold-dark: #9e7a1b;
  --gold-light: #f5eedb;
  --gold-glow: rgba(197, 155, 39, 0.15);
  --border-light: rgba(197, 155, 39, 0.2);
  --border-subtle: #e6dfdf;
  --shadow-sm: 0 4px 12px rgba(31, 29, 27, 0.04);
  --shadow-md: 0 10px 30px rgba(31, 29, 27, 0.08);
  --shadow-lg: 0 20px 40px rgba(31, 29, 27, 0.12);
  --font-serif-title: 'Cinzel', serif;
  --font-serif-body: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 85px;
}

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

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

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-title);
  color: var(--text-main);
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-family: var(--font-serif-body);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-style: italic;
  text-align: center;
}

.text-gold {
  color: var(--gold-primary);
}

/* Layout Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 110px 0;
}

/* ==========================================================================
   Cinematic Scroll Reveal Animations Engine
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(5px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s ease;
  will-change: opacity, transform, filter;
}

.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left-init {
  opacity: 0;
  transform: translateX(-55px);
  filter: blur(5px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s ease;
  will-change: opacity, transform, filter;
}

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

.reveal-right-init {
  opacity: 0;
  transform: translateX(55px);
  filter: blur(5px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s ease;
  will-change: opacity, transform, filter;
}

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

.reveal-scale-init {
  opacity: 0;
  transform: scale(0.88) translateY(30px);
  filter: blur(6px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s ease;
  will-change: opacity, transform, filter;
}

.reveal-scale-init.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==========================================================================
   Epic Cinematic Film Intro Splash Screen Overlay
   ========================================================================== */
.cinematic-splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #060504;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.cinematic-splash-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Obsidian Vignette Shader */
.obsidian-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(15, 13, 10, 0.2) 0%,
    rgba(8, 7, 5, 0.75) 60%,
    rgba(0, 0, 0, 0.98) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Golden Light Beam Sweeping */
.volumetric-light-beam {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(197, 155, 39, 0.08) 45%, transparent 70%);
  filter: blur(40px);
  animation: lightPulse 4s infinite alternate ease-in-out;
  z-index: 1;
  pointer-events: none;
}

@keyframes lightPulse {
  0% { transform: scale(0.9) translateY(-10px); opacity: 0.6; }
  100% { transform: scale(1.15) translateY(10px); opacity: 0.95; }
}

/* Particle Canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Central Emblem Presentation */
.intro-medallion-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(1.12);
  animation: cameraZoomIn 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cameraZoomIn {
  0% { transform: scale(1.15); opacity: 0; filter: blur(8px); }
  30% { opacity: 1; filter: blur(0px); }
  100% { transform: scale(1.0); opacity: 1; }
}

.medallion-frame {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(197, 155, 39, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.8);
  border: 3px solid rgba(197, 155, 39, 0.5);
  background: radial-gradient(circle, #24201c 0%, #0d0c0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
}

.medallion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: contrast(1.15) brightness(0.95);
}

.medallion-lens-flare {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 235, 180, 0.35) 50%,
    transparent 55%
  );
  animation: flareSweep 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes flareSweep {
  0% { transform: translate(-30%, -30%) rotate(0deg); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(30%, 30%) rotate(45deg); opacity: 0; }
}

/* Rhythmic Sequential Word-by-Word Title Reveal */
.intro-title-reveal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
  z-index: 5;
}

.intro-word {
  font-family: var(--font-serif-title);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #f7ebd0;
  text-shadow: 0 0 20px rgba(197, 155, 39, 0.8), 0 0 40px rgba(197, 155, 39, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-word.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-word.final-gold {
  color: #ffdf79;
  text-shadow: 0 0 25px rgba(255, 223, 121, 0.9), 0 0 50px rgba(197, 155, 39, 0.6);
}

.intro-tagline {
  font-family: 'Trajan Pro', 'Cinzel', serif;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #e2d5bd;
  text-shadow: 0 0 15px rgba(197, 155, 39, 0.5);
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.6s ease-out;
  z-index: 5;
}

.intro-tagline.visible {
  opacity: 0.92;
  transform: translateY(0);
}

.skip-intro-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.4);
  color: #e0d5c1;
  padding: 8px 20px;
  font-family: var(--font-serif-title);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition-smooth);
}

.skip-intro-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 75px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon-svg {
  width: 42px;
  height: 42px;
  transition: var(--transition-smooth);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-main);
  line-height: 1;
}

.brand-name span {
  color: var(--gold-primary);
}

.brand-tagline {
  font-family: var(--font-serif-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

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

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

.btn-header-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  padding: 10px 22px;
  font-family: var(--font-serif-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
}

.btn-header-cta:hover {
  background: var(--text-main);
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-replay-intro {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 16px;
  font-family: var(--font-serif-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-replay-intro:hover {
  background: var(--gold-glow);
  color: var(--gold-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999;
  padding: 100px 40px 40px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease-in-out;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
}

.mobile-nav-link {
  font-family: var(--font-serif-title);
  font-size: 1.2rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

/* ==========================================================================
   Hero Section - Full-Screen Slider & Cinematic Text Transitions
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  background-color: #0d0c0b;
  overflow: hidden;
}

.hero-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.5s ease-out;
  transform: scale(1.08);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 12, 11, 0.4) 0%,
    rgba(13, 12, 11, 0.2) 50%,
    rgba(13, 12, 11, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  right: 8%;
  max-width: 900px;
  z-index: 3;
  color: #ffffff;
}

/* Hero Slider Text Area Cinematic Entrance Animations */
.hero-slide.active .hero-badge {
  animation: heroBadgeCinematic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-slide.active .hero-title {
  animation: heroTitleCinematic 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-slide.active .hero-description {
  animation: heroDescCinematic 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-slide.active .hero-actions {
  animation: heroActionsCinematic 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

@keyframes heroBadgeCinematic {
  0% {
    opacity: 0;
    transform: translateY(-25px) scale(0.9);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroTitleCinematic {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    letter-spacing: 0.08em;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    letter-spacing: 0.04em;
  }
}

@keyframes heroDescCinematic {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroActionsCinematic {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-serif-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-family: var(--font-serif-body);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #ded9d5;
  margin-bottom: 35px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  padding: 16px 36px;
  font-family: var(--font-serif-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--text-main);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 36px;
  font-family: var(--font-serif-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 8%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 4;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--gold-primary);
  width: 32px;
  border-radius: 10px;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-body);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 8px solid #ffffff;
}

.about-badge-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 20px;
}

.badge-stat {
  font-family: var(--font-serif-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.about-statement {
  font-family: var(--font-serif-body);
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-top: 25px;
  margin-bottom: 35px;
  padding: 24px;
  border-left: 4px solid var(--gold-primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-radius: 0 4px 4px 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.highlight-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--gold-primary);
}

.highlight-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Meet Our Team Section
   ========================================================================== */
.team-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
  transition: var(--transition-smooth);
}

.team-photo-wrapper {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold-primary), var(--border-subtle));
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(15%);
  transition: var(--transition-smooth);
}

.team-card:hover .team-photo-wrapper {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  box-shadow: 0 12px 25px rgba(197, 155, 39, 0.3);
}

.team-card:hover .team-photo-wrapper img {
  filter: grayscale(0%);
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-designation {
  font-family: var(--font-serif-body);
  font-size: 0.95rem;
  color: var(--gold-primary);
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   Journey Section & Horizontal 4-Card Carousel Component
   ========================================================================== */
.journey-section {
  background-color: var(--bg-body);
  position: relative;
}

.journey-carousel-container {
  position: relative;
  margin-top: 20px;
}

.journey-carousel-header-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.journey-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.journey-nav-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
  transform: translateY(-2px);
}

.journey-carousel-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 10px 4px 35px 4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
}

.journey-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.journey-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: calc((100% - 72px) / 4);
  scroll-snap-align: start;
  background: #ffffff;
  padding: 38px 26px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.journey-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 14px 35px rgba(197, 155, 39, 0.22);
  transform: translateY(-6px);
}

.journey-card-number {
  font-family: var(--font-serif-title);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.9;
}

.journey-card-title {
  font-family: var(--font-serif-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.journey-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--gold-primary);
}

.journey-card-text {
  font-family: 'Trajan Pro', 'Cinzel', serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Carousel Responsive Breakpoints */
@media (max-width: 1200px) {
  .journey-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
  }
}

@media (max-width: 768px) {
  .journey-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 480px) {
  .journey-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  background-color: #ffffff;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 24px;
  font-family: var(--font-serif-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(31, 29, 27, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.overlay-content {
  color: #ffffff;
}

.overlay-tag {
  font-family: var(--font-serif-title);
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.overlay-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 4px 0 8px 0;
}

.gallery-info {
  padding: 20px;
}

.gallery-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-info-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 12, 11, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img-container {
  height: 100%;
  background: #0d0c0b;
}

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

.modal-details {
  padding: 40px 35px;
}

.modal-category {
  font-family: var(--font-serif-title);
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.modal-title {
  font-size: 1.6rem;
  margin: 8px 0 16px 0;
}

.modal-meta-list {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 15px 0;
}

.modal-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.modal-meta-item span:first-child {
  color: var(--text-muted);
}

.modal-meta-item span:last-child {
  font-weight: 600;
}

.modal-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-serif-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 28px;
  border-radius: 4px;
  background: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-primary);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #121110;
  color: #a6a09b;
  padding: 70px 0 30px 0;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-about-text {
  font-size: 0.88rem;
  margin-top: 15px;
  line-height: 1.7;
}

.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #a6a09b;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .btn-header-cta {
    display: none !important;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .modal-content-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-img-container {
    height: 250px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr !important;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .about-statement {
    font-size: 1.05rem;
    padding: 16px;
  }
}

/* ==========================================================================
   Museum-Grade Partner Profile Modal Component
   ========================================================================== */
.matrix-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 10, 8, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.matrix-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.matrix-modal-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: #181512;
  border: 1px solid rgba(197, 155, 39, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 155, 39, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transform: scale(0.94) translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-modal-backdrop.active .matrix-modal-container {
  transform: scale(1) translateY(0);
}

#matrix-rain-canvas {
  display: none;
}

.matrix-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 155, 39, 0.3);
  color: #e0d5c1;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.matrix-close-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}

.matrix-modal-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px;
}

@media (max-width: 768px) {
  .matrix-modal-content {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}

.matrix-photo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.matrix-photo-frame {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.25);
  overflow: hidden;
  margin-bottom: 20px;
}

.matrix-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.matrix-scan-line {
  display: none;
}

.matrix-status-tag {
  font-family: var(--font-serif-title);
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  background: rgba(197, 155, 39, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.matrix-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-primary);
}

.matrix-info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.matrix-code-badge {
  font-family: var(--font-serif-title);
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.matrix-partner-name {
  font-family: var(--font-serif-title);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.matrix-partner-title {
  font-family: var(--font-serif-body);
  font-size: 0.95rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.matrix-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.35), transparent);
  margin: 14px 0;
}

.matrix-label {
  font-family: var(--font-serif-title);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.matrix-skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.matrix-skill-pill {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #f0e6d2;
  background: rgba(197, 155, 39, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.matrix-partner-bio {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.75;
  color: #d0c5b4;
}

/* Team Card Pointer */
.team-card {
  cursor: pointer;
  position: relative;
}
