/* ===== VARIABLES ===== */
:root {
  --primary: #ef5929;
  --secondary: #f3efe4;
  --dark: #1a1208;
  --dark-2: #2c1f0e;
  --text: #3d2b1a;
  --text-light: #7a6555;
  --white: #ffffff;
  --border: rgba(239, 89, 41, 0.15);
  --shadow: 0 4px 24px rgba(239, 89, 41, 0.1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #d44a1f; transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 16px 44px; font-size: 1.05rem; }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(239,89,41,0.15);
  position: relative;
  z-index: 101;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  font-size: 0.75rem;
  color: rgba(243,239,228);
  letter-spacing: 0.3px;
}
.topbar-inner a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}
.topbar-inner a:hover { opacity: 0.75; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239,89,41,0.12);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-bottom-color: rgba(239,89,41,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 60px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-gjepc { height: 70px;}
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(239,89,41,0.3);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.lt-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.lt-sub {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav */
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav a:hover { color: var(--primary); }
nav a:hover::after { transform: scaleX(1); }

/* Header CTA button — smaller than page buttons */
.header-inner > .btn-primary {
  padding: 9px 22px;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  width: 100%;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid rgba(239,89,41,0.1);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.mobile-nav.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--primary); background: rgba(239,89,41,0.04); }
.mobile-nav .btn-primary {
  margin: 16px 24px 0;
  display: block;
  text-align: center;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1208 0%, #2c1f0e 40%, #3d1a08 70%, #1a1208 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 0, 0, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '◆';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  color: rgba(239,89,41,0.04);
  line-height: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  color: rgba(239,89,41,0.25);
  font-size: 1rem;
  animation: floatParticle 8s ease-in-out infinite;
}
.p1 { top: 15%; left: 12%; font-size: 0.7rem; animation-delay: 0s; }
.p2 { top: 30%; right: 18%; font-size: 1.1rem; animation-delay: 1.5s; }
.p3 { top: 65%; left: 8%; font-size: 0.85rem; animation-delay: 3s; }
.p4 { bottom: 20%; right: 12%; font-size: 0.65rem; animation-delay: 4.5s; }
.p5 { top: 50%; left: 50%; font-size: 0.9rem; animation-delay: 2s; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-18px) rotate(180deg); opacity: 0.5; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 90px;
  max-width: 780px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,89,41,0.12);
  border: 1px solid rgba(239,89,41,0.35);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* H1 */
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.08;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.h1-line1 { display: block; }
.h1-line2 { display: block; }
.hero-content h1 em {
  font-style: italic;
  color: var(--primary);
}

/* Tagline */
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(243,239,228,0.65);
  font-style: italic;
  margin-bottom: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
}

/* Info Strip */
.hero-info-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(239,89,41,0.2);
  border-radius: 8px;
  padding: 18px 26px;
  margin-bottom: 36px;
  width: fit-content;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(243,239,228,0.6);
}
.info-block svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.info-block strong {
  display: block;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.info-block p { color: var(--secondary); font-size: 0.92rem; font-weight: 500; margin: 0; }
.info-sep { width: 1px; height: 44px; background: rgba(239,89,41,0.2); flex-shrink: 0; }

/* Countdown */
.countdown-wrap { margin-bottom: 36px; }
.countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243,239,228,0.45);
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-block { text-align: center; }
.cd-block span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  min-width: 64px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(239,89,41,0.2);
  border-radius: 6px;
  padding: 10px 8px 8px;
}
.cd-block label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(243,239,228,0.4);
  margin-top: 6px;
}
.cd-sep {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}

/* CTA */
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(243,239,228,0.7);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(243,239,228,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--secondary); border-color: rgba(243,239,228,0.6); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateY(3px); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(239,89,41,0.6), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.bg-cream { background: var(--white); }
.bg-dark { background: var(--dark); }

/* Section Head */
.section-head { margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-head.light h2 { color: var(--secondary); }
.section-head.light .section-eyebrow { color: var(--primary); }
.head-rule {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.section-desc {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
}
.section-head.light .section-desc { color: rgba(243,239,228,0.6); }

/* ===== DELHI STRIP ===== */
.delhi-strip {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: var(--dark);
}
.delhi-strip-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.delhi-strip-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.88) 0%, rgba(44,31,14,0.82) 50%, rgba(61,26,8,0.88) 100%);
}
.delhi-strip-bg::after {
  content: '◆';
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(239,89,41,0.04);
  line-height: 1;
  pointer-events: none;
}
.delhi-strip-overlay {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(239,89,41,0.15);
  border-bottom: 1px solid rgba(239,89,41,0.15);
  pointer-events: none;
}
.delhi-strip-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}
.delhi-strip-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.delhi-strip-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(239,89,41,0.2);
}
.delhi-strip-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.delhi-strip-img:hover img { transform: scale(1.04); }
.ds-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}
.delhi-strip-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.15;
}
.delhi-strip-content > p {
  font-size: 0.95rem;
  color: rgba(243,239,228,0.5);
  letter-spacing: 0.3px;
}
.delhi-strip-content::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.delhi-strip-content::after { display: none; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 0; }
.about-left .section-eyebrow { margin-bottom: 12px; }
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-left .head-rule { margin-bottom: 24px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 500;
}
.about-lead strong { color: var(--primary); font-weight: 700; }
.about-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 28px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: rgba(239,89,41,0.04);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.about-features li svg { color: var(--primary); flex-shrink: 0; }

/* About Right */
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.astat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 20px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s;
}
.astat:nth-child(2n) { border-right: none; }
.astat:nth-child(5), .astat:nth-child(6) { border-bottom: none; }
.astat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(239,89,41,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.astat:hover::before { transform: scaleX(1); }
.astat.visible { opacity: 1; transform: translateY(0); }
.astat:hover { background: #fdfaf8; }
.astat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}
.astat-unit {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.astat-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}

/* Event info card */
.about-event-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
}
.aec-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  color: rgba(243,239,228,0.6);
}
.aec-item svg { color: var(--primary); flex-shrink: 0; }
.aec-item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}
.aec-item span {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 500;
}
.aec-divider {
  width: 1px;
  height: 40px;
  background: rgba(239,89,41,0.2);
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== PRODUCT SECTIONS ===== */
.product-sections .section-head { margin-bottom: 40px; }
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ps-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.ps-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(239,89,41,0.15);
  border-color: rgba(239,89,41,0.35);
}
.ps-card-wide {
  grid-column: 2 / 4;
}
.ps-icon {
  font-size: 1.5rem;
  color: var(--primary);
}
.ps-card p {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

/* ===== EXHIBIT & VISIT ===== */
.ev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ev-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(239,89,41,0.18);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
}
.ev-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.ev-card:hover {
  border-color: rgba(239,89,41,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ev-card-accent {
  background: rgba(239,89,41,0.06);
  border-color: rgba(239,89,41,0.3);
}
.ev-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ev-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(239,89,41,0.12);
  border: 1px solid rgba(239,89,41,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.ev-card-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.15;
}
.ev-list {
  flex: 1;
  margin-bottom: 32px;
}
.ev-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(243,239,228,0.06);
  color: rgba(243,239,228,0.7);
  font-size: 0.93rem;
  line-height: 1.6;
}
.ev-list li:last-child { border-bottom: none; }
.ev-list li::before {
  content: '◆';
  color: var(--primary);
  font-size: 0.45rem;
  position: absolute;
  left: 0;
  top: 14px;
}
.ev-card .btn-primary { align-self: flex-start; margin-top: auto; }

/* ===== INITIATIVES ===== */
.init-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.init-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  opacity: 0;
  transform: translateY(20px);
}
.init-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.init-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(239,89,41,0.3);
}
.init-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(239,89,41,0.18);
  line-height: 1;
}
.init-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(239,89,41,0.08);
  border: 1px solid rgba(239,89,41,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.init-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.init-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #c9441a 50%, #a8350f 100%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(0,0,0,0.15) 0%, transparent 60%);
}
.cta-bg::after {
  content: '◆';
  position: absolute;
  right: 3%;
  bottom: -4%;
  font-size: 22rem;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  pointer-events: none;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.cta-jewel {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  animation: pulse 2.5s ease-in-out infinite;
}
.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
}
.cta-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 22px;
  min-width: 90px;
  transition: background 0.2s;
}
.cta-step:hover { background: rgba(255,255,255,0.2); }
.cta-step span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.cta-step {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.cta-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.btn-primary.btn-xl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  font-size: 1.05rem;
  background: var(--white);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-primary.btn-xl:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
footer {
  background: #f3efe4;
  border-top: 1px solid rgba(239,89,41,0.15);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer-brand .logo {
  margin-bottom: 20px;
  gap: 12px;
}
.footer-brand .logo-gjepc { filter: brightness(0); opacity: 0.65; }
.footer-brand .logo-divider { background: rgba(239,89,41,0.3); }
.footer-brand .lt-main { color: var(--dark); }
.footer-brand .lt-sub { color: var(--primary); }
.footer-brand > p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 300px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(239,89,41,0.2);
}
.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
  width: fit-content;
}
.footer-links-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-card-wide { grid-column: 1 / 3; }
  .init-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  nav { display: none; }
  .header-inner > .btn-primary { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .topbar-inner span { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ev-grid { grid-template-columns: 1fr; }
  .delhi-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .logo-img { width: 100px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .init-grid { grid-template-columns: 1fr 1fr; }
  .hero-info-strip { flex-direction: column; gap: 16px; width: 100%; }
  .info-sep { width: 100%; height: 1px; }
  .hero-content { padding: 120px 24px 70px; }
  .cta-steps { gap: 6px; }
  .cta-step { min-width: 76px; padding: 12px 14px; }
  .countdown { gap: 4px; }
  .cd-block span { min-width: 52px; font-size: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* About */
  .about-features { padding: 16px 18px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .astat:nth-child(2n) { border-right: none; }
  .astat:nth-child(5), .astat:nth-child(6) { border-bottom: none; }
  .about-event-card { flex-direction: column; }
  .aec-divider { width: 100%; height: 1px; }
  .aec-item { padding: 16px 20px; }
}
@media (max-width: 420px) {
  .init-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .astat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .astat:nth-child(3n) { border-right: 1px solid var(--border); }
  .astat:nth-child(2n) { border-right: none; }
  .astat:nth-child(5), .astat:nth-child(6) { border-bottom: none; }
  .astat-num { font-size: 1.8rem; }
}
