/* ═══════════════════════════════════════════════════════════
   DIVYA ODISHA — Spirituality Portal
   Design System: Kalinga Temple Gold + Sacred Saffron + Deep Lapis
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --gold:         #C8952A;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5E6C0;
  --saffron:      #E8621A;
  --saffron-lt:   #F5956A;
  --crimson:      #8B1A1A;
  --lapis:        #1A2B5A;
  --lapis-deep:   #0D1830;
  --sandstone:    #F2E8D5;
  --sandstone-dk: #E0CCAA;
  --earth:        #3D2B1A;
  --ivory:        #FDFAF4;
  --text-dark:    #1A1208;
  --text-mid:     #4A3520;
  --text-light:   #7A6040;
  --white:        #FFFFFF;

  --font-display: 'Cinzel Decorative', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Inter', sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-sm:    0 2px 12px rgba(30,15,0,0.08);
  --shadow-md:    0 8px 32px rgba(30,15,0,0.12);
  --shadow-lg:    0 20px 60px rgba(30,15,0,0.18);
  --shadow-gold:  0 8px 32px rgba(200,149,42,0.25);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.light .section-title { color: var(--gold-pale); }
.section-header.light .section-title em { color: var(--gold-light); }
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }
.section-header.light .section-eyebrow { color: var(--gold-light); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,149,42,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: clamp(60px, 8vw, 120px) 0; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(13,24,48,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-chakra {
  font-size: 1.8rem;
  color: var(--gold);
  animation: chakraSpin 20s linear infinite;
}
@keyframes chakraSpin {
  to { transform: rotate(360deg); }
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.logo-text em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0D1830;
}

/* Ken Burns slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenBurns 30s infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }

@keyframes kenBurns {
  0%   { opacity: 0; transform: scale(1.1); }
  8%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.04); }
  28%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.0); }
}

.hero-mandala {
  position: absolute;
  z-index: 2;
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(200,149,42,0.06) 30deg,
    transparent 60deg,
    rgba(232,98,26,0.04) 90deg,
    transparent 120deg,
    rgba(200,149,42,0.06) 150deg,
    transparent 180deg,
    rgba(232,98,26,0.04) 210deg,
    transparent 240deg,
    rgba(200,149,42,0.06) 270deg,
    transparent 300deg,
    rgba(232,98,26,0.04) 330deg,
    transparent 360deg
  );
  animation: mandalaRotate 60s linear infinite;
}

/* Concentric rings for mandala effect */
.hero-mandala::before,
.hero-mandala::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,149,42,0.12);
}
.hero-mandala::before {
  inset: 15%;
  border-color: rgba(200,149,42,0.08);
  animation: mandalaRotate 40s linear infinite reverse;
}
.hero-mandala::after {
  inset: 30%;
  border-color: rgba(232,98,26,0.1);
  animation: mandalaRotate 25s linear infinite;
}

@keyframes mandalaRotate {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(13,24,48,0.55) 0%, rgba(13,24,48,0.3) 50%, rgba(13,24,48,0.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(13,24,48,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2rem;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,149,42,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Floating diya lights */
.floating-diyas { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.diya {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 20px 8px rgba(232,184,75,0.3), 0 0 60px 20px rgba(232,98,26,0.15);
  animation: floatDiya 8s ease-in-out infinite;
}
.d1 { top: 20%; left: 15%; animation-delay: 0s; }
.d2 { top: 60%; right: 12%; animation-delay: 2.5s; width: 6px; height: 6px; }
.d3 { bottom: 25%; left: 25%; animation-delay: 5s; width: 5px; height: 5px; }
@keyframes floatDiya {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PHOTO STRIP ──────────────────────────────────────────── */
.photo-strip {
  overflow: hidden;
  background: var(--earth);
  padding: 14px 0;
  border-top: 1px solid rgba(200,149,42,0.15);
  border-bottom: 1px solid rgba(200,149,42,0.15);
  cursor: default;
}
.photo-strip:hover .photo-strip-track { animation-play-state: paused; }
.photo-strip-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: photoScroll 70s linear infinite;
}
.photo-strip-track img {
  height: 190px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(1.1);
}
.photo-strip-track img:hover {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.3);
}
@keyframes photoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── QUOTE STRIP ──────────────────────────────────────────── */
.quote-strip {
  background: linear-gradient(90deg, var(--earth), var(--lapis-deep), var(--earth));
  padding: 40px 0;
  border-top: 1px solid rgba(200,149,42,0.2);
  border-bottom: 1px solid rgba(200,149,42,0.2);
}
.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,80px);
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--sandstone);
  line-height: 1.8;
}
.quote-mark {
  color: var(--gold);
  font-size: 2rem;
  vertical-align: middle;
  line-height: 0;
}

/* ── STATS ────────────────────────────────────────────────── */
.stats-section {
  padding: 60px 0;
  background: var(--sandstone);
  border-bottom: 1px solid var(--sandstone-dk);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  padding: 40px 30px;
  text-align: center;
  background: var(--ivory);
  border-right: 1px solid var(--sandstone-dk);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--sandstone); transform: translateY(-4px); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ── TEMPLES ──────────────────────────────────────────────── */
.temples-section { background: var(--ivory); }
.temples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.temple-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 380px 1fr;
}

.temple-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.temple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.temple-img-wrap { overflow: hidden; }
.temple-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.6s ease;
}
.temple-featured .temple-img { height: 100%; min-height: 320px; }
.temple-card:hover .temple-img { transform: scale(1.03); }

/* SVG-like temple silhouettes using CSS */
.temple-silhouette {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 85%;
}
.temple-silhouette.jagannath {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 L90 40 L80 70 L70 100 L60 130 L40 160 L160 160 L140 130 L130 100 L120 70 L110 40 Z' fill='rgba(200,149,42,0.15)' stroke='rgba(200,149,42,0.4)' stroke-width='1'/%3E%3Ccircle cx='100' cy='8' r='8' fill='rgba(200,149,42,0.5)'/%3E%3C/svg%3E") center/contain no-repeat;
}

.temple-body {
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.temple-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}
.temple-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 6px;
}
.temple-deity {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 14px;
  font-family: var(--font-serif);
}
.temple-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.temple-facts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--sandstone);
}
.temple-facts span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Temple photo card */
.temple-img-photo {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.temple-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,28,2,0.55) 0%,
    rgba(122,58,0,0.35) 50%,
    rgba(13,24,48,0.4) 100%
  );
}

/* ── TRADITIONS ───────────────────────────────────────────── */
.traditions-section { background: var(--sandstone); }
.traditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tradition-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.tradition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.trad-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.tradition-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--earth);
  margin-bottom: 12px;
}
.tradition-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.trad-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trad-tags span {
  padding: 4px 10px;
  background: var(--sandstone);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ── SAINTS ───────────────────────────────────────────────── */
.saints-section { position: relative; }
.saints-bg {
  background: linear-gradient(135deg, var(--lapis-deep) 0%, var(--earth) 50%, var(--lapis-deep) 100%);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.saints-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8952A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.saints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.saint-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,149,42,0.2);
  border-radius: var(--radius-md);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  gap: 20px;
}
.saint-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,149,42,0.5);
  background: rgba(255,255,255,0.1);
}
.saint-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.saint-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-pale);
  margin-bottom: 4px;
}
.saint-era {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.saint-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}
.saint-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  line-height: 1.6;
}

/* ── FESTIVALS ────────────────────────────────────────────── */
.festivals-section { background: var(--ivory); }
.festivals-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.festival-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  position: relative;
}
.festival-item::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-pale), transparent);
}

.festival-month {
  padding: 32px 30px 32px 0;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 40px;
}
.festival-card-h {
  margin-left: 40px;
  margin-bottom: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  margin-top: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.festival-card-h:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.festival-icon { font-size: 2rem; flex-shrink: 0; }
.festival-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--earth);
  margin-bottom: 8px;
}
.festival-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.festival-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.festival-tags span {
  padding: 3px 10px;
  background: var(--sandstone);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── PILGRIMAGE ───────────────────────────────────────────── */
.pilgrimage-section { background: var(--sandstone); }
.pilgrimage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pilgrimage-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pilgrimage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pilgrimage-card.featured-p {
  background: linear-gradient(135deg, var(--earth), var(--lapis-deep));
  color: var(--white);
}
.p-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sandstone-dk);
  opacity: 0.3;
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
}
.featured-p .p-number { color: var(--gold); opacity: 0.25; }
.pilgrimage-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--earth);
  margin-bottom: 12px;
}
.featured-p h3 { color: var(--gold-pale); }
.pilgrimage-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.featured-p p { color: rgba(255,255,255,0.75); }
.p-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-tags span {
  padding: 4px 10px;
  background: rgba(200,149,42,0.15);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}
.featured-p .p-tags span {
  background: rgba(200,149,42,0.2);
}

/* ── SACRED ART ───────────────────────────────────────────── */
.art-section { background: var(--ivory); }
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.art-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.art-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.art-visual {
  height: 180px;
  position: relative;
}
.art-visual.pattachitra {
  background: linear-gradient(135deg, #8B3A0A, #C85A15);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.04) 10px,
    rgba(255,255,255,0.04) 20px
  );
}
.art-visual.odissi {
  background: linear-gradient(135deg, #1A0A2E, #4A1A6E);
}
.art-visual.saura {
  background: linear-gradient(135deg, #0A2A0A, #1A5A1A);
}
.art-visual.ikat {
  background: linear-gradient(135deg, #1A0A3A, #3A1A8A);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(200,149,42,0.1),
    rgba(200,149,42,0.1) 4px,
    transparent 4px,
    transparent 20px
  );
}
.art-visual.gotipua {
  background: linear-gradient(135deg, #2A0A1A, #7A2A4A);
}
.art-visual.stone {
  background: linear-gradient(135deg, #2A2010, #5A4820);
}
/* Art motif overlays */
.art-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(200,149,42,0.15) 0%, transparent 60%);
}
.art-body { padding: 24px; }
.art-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--earth);
  margin-bottom: 10px;
}
.art-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.art-origin {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
}

/* ── YOGA ─────────────────────────────────────────────────── */
.yoga-section {
  background: linear-gradient(180deg, var(--sandstone) 0%, var(--ivory) 100%);
}
.yoga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yoga-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.yoga-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.yoga-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.yoga-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--earth);
  margin-bottom: 10px;
}
.yoga-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.yoga-loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Festival photo card */
.festival-card-photo {
  background-size: cover !important;
  background-position: center top !important;
  position: relative;
}
.festival-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,24,48,0.72), rgba(61,28,2,0.65));
  border-radius: var(--radius-md);
  pointer-events: none;
}
.festival-card-photo .festival-icon,
.festival-card-photo .festival-content h3,
.festival-card-photo .festival-content p { position: relative; z-index: 1; }
.festival-card-photo .festival-content h3 { color: var(--gold-pale); }
.festival-card-photo .festival-content p  { color: rgba(255,255,255,0.82); }
.festival-card-photo .festival-tags span  {
  background: rgba(200,149,42,0.2);
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

/* Yoga Chilika photo card */
.yoga-card-photo {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  overflow: hidden;
}
.yoga-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,24,48,0.75), rgba(61,28,2,0.6));
  pointer-events: none;
}
.yoga-card-photo h3,
.yoga-card-photo p,
.yoga-card-photo .yoga-loc { position: relative; z-index: 1; }
.yoga-card-photo p { color: rgba(255,255,255,0.8) !important; }
.yoga-card-photo .yoga-loc { color: var(--gold-light) !important; }

/* ── CLOSING QUOTE ────────────────────────────────────────── */
.closing-quote-section {
  background-color: var(--lapis-deep);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: clamp(60px,8vw,100px) 0;
}
.closing-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,24,48,0.82), rgba(42,16,5,0.78));
}
.closing-quote-section .container { position: relative; z-index: 1; }
.closing-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cq-lotus { font-size: 2.5rem; margin-bottom: 24px; display: block; }
.closing-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,3vw,2rem);
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cq-translation {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 16px;
}
.closing-quote cite {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-section {
  background: var(--sandstone);
  padding: clamp(50px,6vw,80px) 0;
}
.newsletter-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px,6vw,70px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.nl-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  animation: chakraSpin 20s linear infinite;
}
.newsletter-box h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--earth);
  margin-bottom: 12px;
}
.newsletter-box > p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.nl-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.nl-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--sandstone-dk);
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--sandstone);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.nl-input:focus { border-color: var(--gold); }
.nl-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--lapis-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(50px,6vw,80px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-pale);
  margin-bottom: 16px;
  font-style: italic;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-om {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .temples-grid { grid-template-columns: 1fr 1fr; }
  .temple-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .temple-featured .temple-img { min-height: 240px; }
  .saints-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--lapis-deep);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--sandstone-dk); }
  .temples-grid { grid-template-columns: 1fr; }
  .traditions-grid { grid-template-columns: 1fr; }
  .saints-grid { grid-template-columns: 1fr; }
  .pilgrimage-grid { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
  .yoga-grid { grid-template-columns: 1fr; }
  .festival-item { grid-template-columns: 1fr; }
  .festival-item::before { display: none; }
  .festival-month { padding: 24px 0 0; text-align: left; }
  .festival-card-h { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nl-form { flex-direction: column; }
  .saint-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }
}
