/* ============================================================
   TRISROTA SRI SRI APARNA SHAKTI PEETH
   Premium Sacred Heritage Theme
   ============================================================ */

/* Language toggle visibility */
html[data-lang="en"] .t-bn,
html[data-lang="bn"] .t-en { display: none !important; }

html[data-lang="bn"] body { font-family: "Noto Serif Bengali", "Hind Siliguri", "SolaimanLipi", "Cormorant Garamond", Georgia, serif; }

/* Language toggle button (in nav) */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.45);
  margin-left: 10px;
}
.lang-toggle button[data-lang-btn] {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  font-weight: 500;
}
.lang-toggle button[data-lang-btn].active {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
}
.lang-toggle button[data-lang-btn]:hover:not(.active) {
  color: var(--c-saffron-deep);
}
@media (max-width: 1024px) {
  .lang-toggle {
    margin-left: auto;
    margin-right: 6px;
  }
}
@media (max-width: 480px) {
  .lang-toggle button[data-lang-btn] {
    padding: 5px 9px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}

:root {
  --c-bg: #0e0806;
  --c-ivory: #faf3e3;
  --c-cream: #f6ead0;
  --c-gold: #c9a14a;
  --c-gold-bright: #e9c66a;
  --c-saffron: #d77a2b;
  --c-saffron-deep: #b65a1a;
  --c-maroon: #5b1416;
  --c-maroon-deep: #3a0a0c;
  --c-text: #2a1410;
  --c-muted: #6e524a;
  --c-line: rgba(201, 161, 74, 0.28);
  --c-line-strong: rgba(201, 161, 74, 0.55);
  --shadow-soft: 0 12px 40px -12px rgba(45, 10, 8, 0.18);
  --shadow-deep: 0 30px 80px -25px rgba(45, 10, 8, 0.35);
  --shadow-gold: 0 0 60px -10px rgba(201, 161, 74, 0.35);
  --r-card: 6px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-body: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --ff-deva: "Cinzel", "Cormorant Garamond", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-ivory);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-maroon-deep);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   ORNAMENTS & DIVIDERS
   ============================================================ */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto;
  color: var(--c-gold);
}

.ornament::before, .ornament::after {
  content: "";
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.ornament-mark {
  width: 14px;
  height: 14px;
  border: 1px solid var(--c-gold);
  transform: rotate(45deg);
  position: relative;
}

.ornament-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--c-gold);
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-deva);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-bottom: 18px;
  font-weight: 500;
  padding-left: 38px;
  position: relative;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--c-saffron-deep);
}

.eyebrow.center {
  padding-left: 0;
  display: block;
  text-align: center;
}

.eyebrow.center::before {
  display: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-saffron) 0%, var(--c-maroon) 100%);
  color: var(--c-cream);
  box-shadow: 0 10px 30px -8px rgba(91, 20, 22, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px -10px rgba(91, 20, 22, 0.6);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(250, 243, 227, 0.55);
}

.btn-ghost:hover {
  background: var(--c-cream);
  color: var(--c-maroon-deep);
  border-color: var(--c-cream);
}

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

.btn-outline:hover {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  border-color: var(--c-maroon-deep);
}

.btn-arrow::after {
  content: "→";
  margin-left: 4px;
  transition: transform 0.4s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(6px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.topbar {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a:hover { color: var(--c-gold-bright); }

.topbar-mantra {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-gold-bright);
  letter-spacing: 0.1em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 227, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 6px 30px -10px rgba(45, 10, 8, 0.2);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.nav-inner .nav-links { margin-left: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-saffron) 0%, var(--c-maroon) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 20px -4px rgba(91, 20, 22, 0.4);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(250, 243, 227, 0.5);
}

.brand-mark span {
  color: var(--c-cream);
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

.brand-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-maroon-deep);
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text);
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--c-saffron);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--c-saffron-deep);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 22px;
}

.nav-links a.nav-cta {
  padding: 10px 22px;
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  margin-left: 6px;
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active {
  background: var(--c-saffron-deep);
  color: var(--c-cream);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-maroon-deep);
  transition: all 0.4s var(--ease);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--c-maroon-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 40px;
    gap: 8px;
    transition: right 0.5s var(--ease);
    z-index: 99;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--c-cream);
    font-size: 1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(201, 161, 74, 0.18);
  }

  .nav-links a:hover, .nav-links a.active { color: var(--c-gold-bright); }

  .menu-toggle { display: flex; z-index: 101; position: relative; }

  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--c-cream); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--c-cream); }
}

/* ============================================================
   HERO BANNERS
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--c-cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.14); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(91, 20, 22, 0.35) 0%, rgba(14, 8, 6, 0.85) 100%),
    linear-gradient(180deg, rgba(14, 8, 6, 0.6) 0%, rgba(14, 8, 6, 0.4) 50%, rgba(14, 8, 6, 0.85) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(201, 161, 74, 0.04) 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(201, 161, 74, 0.04) 20px 21px);
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 60px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--ff-deva);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 28px;
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(201, 161, 74, 0.45);
  border-left: none;
  border-right: none;
  position: relative;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-gold-bright);
  font-size: 0.7rem;
}

.hero-eyebrow::before { left: -28px; }
.hero-eyebrow::after { right: -28px; }

.hero h1 {
  color: var(--c-cream);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
  color: var(--c-gold-bright);
  font-style: italic;
  display: block;
  font-weight: 400;
  font-size: 0.78em;
  margin-top: 6px;
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--c-cream);
  max-width: 700px;
  margin: 0 auto 44px;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--c-cream);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.75;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--c-gold-bright));
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--c-cream);
  animation: scrollFlow 2.4s ease-in-out infinite;
}

@keyframes scrollFlow {
  to { top: 100%; }
}

/* Page hero (for inner pages) */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-cream);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 10, 12, 0.65) 0%, rgba(14, 8, 6, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 28px 40px;
}

.page-hero h1 {
  color: var(--c-cream);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--c-cream);
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 18px;
}

.breadcrumb a:hover { color: var(--c-cream); }

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }
.section-soft { background: var(--c-cream); }
.section-dark {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--c-cream);
}

.section-dark .eyebrow { color: var(--c-gold-bright); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-head .eyebrow.center { margin-bottom: 18px; }

.section-head .lead {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--c-muted);
  margin-top: 20px;
}

.section-dark .section-head .lead { color: rgba(250, 243, 227, 0.78); }

/* ============================================================
   INTRO / OVERVIEW
   ============================================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text p {
  font-size: 1.05rem;
  color: var(--c-text);
  margin-bottom: 18px;
}

.intro-text p:first-of-type {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--c-maroon-deep);
  font-style: italic;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--c-gold);
  z-index: -1;
}

.intro-image::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--c-saffron);
  z-index: -1;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-saffron), var(--c-gold), var(--c-saffron));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--c-gold);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  font-size: 1.7rem;
  font-family: var(--ff-display);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--c-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ============================================================
   TRISROTA RIVERS SECTION
   ============================================================ */

.trisrota {
  background:
    linear-gradient(180deg, rgba(14, 8, 6, 0.85) 0%, rgba(58, 10, 12, 0.95) 100%),
    url("images/QwRY54Li1HMwD7oNfosdZe21QVWzzGKUkaxpu3EaGV.webp") center/cover;
  color: var(--c-cream);
  text-align: center;
}

.trisrota h2 { color: var(--c-cream); }

.rivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.river-card {
  position: relative;
  padding: 50px 30px;
  border: 1px solid rgba(201, 161, 74, 0.35);
  background: rgba(14, 8, 6, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.5s var(--ease);
}

.river-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold-bright);
  background: rgba(91, 20, 22, 0.6);
}

.river-card .river-symbol {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-bright);
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-style: italic;
}

.river-card h3 {
  color: var(--c-gold-bright);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.river-card p {
  color: rgba(250, 243, 227, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

/* ============================================================
   GODDESS APARNA SECTION
   ============================================================ */

.aparna {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 620px;
  padding: 0;
}

.aparna-image {
  position: relative;
  overflow: hidden;
}

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

.aparna-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 20, 22, 0.15), transparent 50%);
}

.aparna-content {
  background: linear-gradient(135deg, var(--c-maroon) 0%, var(--c-maroon-deep) 100%);
  color: var(--c-cream);
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.aparna-content::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid rgba(201, 161, 74, 0.25);
  pointer-events: none;
}

.aparna-content h2 { color: var(--c-cream); margin-bottom: 24px; }

.aparna-content .eyebrow { color: var(--c-gold-bright); }

.aparna-content p {
  color: rgba(250, 243, 227, 0.88);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.aparna-mantra {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 161, 74, 0.3);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-gold-bright);
  text-align: center;
}

@media (max-width: 900px) {
  .aparna { grid-template-columns: 1fr; }
  .aparna-image { aspect-ratio: 16/10; }
  .aparna-content { padding: 60px 32px; }
}

/* ============================================================
   HISTORICAL TIMELINE STRIP
   ============================================================ */

.legacy-strip {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.legacy-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 161, 74, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(215, 122, 43, 0.08) 0%, transparent 50%);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.legacy-item {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.legacy-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--c-gold), transparent);
  transform: translateY(-50%);
}

.legacy-num {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--c-gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.legacy-label {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 243, 227, 0.85);
}

@media (max-width: 800px) {
  .legacy-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .legacy-item:nth-child(2)::after { display: none; }
}

@media (max-width: 480px) {
  .legacy-grid { grid-template-columns: 1fr; }
  .legacy-item::after { display: none !important; }
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
  margin-bottom: 50px;
}

.gallery-preview-grid .gp-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-preview-grid .gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-preview-grid .gp-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58, 10, 12, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-preview-grid .gp-item:hover img { transform: scale(1.08); }
.gallery-preview-grid .gp-item:hover::after { opacity: 1; }

.gp-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 800px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gp-item.large { grid-column: span 2; grid-row: span 1; }
}

/* ============================================================
   PILGRIM PREVIEW & MANAGEMENT PREVIEW
   ============================================================ */

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

.split-image {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}

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

.split-image .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  padding: 12px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-left: 3px solid var(--c-gold);
}

.split.reverse .split-image { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-image { order: 0; }
}

/* List with golden bullets */
.gold-list {
  list-style: none;
  margin: 24px 0;
}

.gold-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
}

.gold-list li::before {
  content: "❖";
  position: absolute;
  left: 0;
  color: var(--c-saffron);
  font-size: 0.9rem;
  top: 14px;
}

.gold-list li:last-child { border-bottom: none; }

/* ============================================================
   MANAGEMENT / EXECUTIVE CARDS
   ============================================================ */

.exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1080px;
  margin: 0 auto;
}

.exec-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  position: relative;
}

.exec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--c-gold);
}

.exec-photo {
  width: 100%;
  aspect-ratio: 4/4.4;
  overflow: hidden;
  background: var(--c-maroon-deep);
  position: relative;
}

.exec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}

.exec-card:hover .exec-photo img { transform: scale(1.05); }

.exec-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 10, 12, 0.4) 100%);
}

.exec-info {
  padding: 32px 30px 36px;
  text-align: center;
  position: relative;
}

.exec-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  background: var(--c-gold);
  transform: translateX(-50%);
}

.exec-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--c-maroon-deep);
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.exec-role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-bottom: 16px;
  font-weight: 500;
}

.exec-tag {
  font-size: 0.92rem;
  color: var(--c-muted);
  font-style: italic;
  font-family: var(--ff-display);
  margin-bottom: 22px;
}

.exec-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--c-saffron-deep);
  padding-bottom: 4px;
}

@media (max-width: 800px) {
  .exec-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 6, 0.86);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

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

.modal {
  background: var(--c-ivory);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.6s var(--ease);
  border: 1px solid var(--c-gold);
}

.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: var(--c-saffron);
  transform: rotate(90deg);
}

.modal-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 40px 40px 30px;
  align-items: center;
  background: linear-gradient(135deg, var(--c-maroon) 0%, var(--c-maroon-deep) 100%);
  color: var(--c-cream);
}

.modal-header img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--c-gold);
}

.modal-name {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--c-cream);
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 600;
}

.modal-role {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 14px;
}

.modal-spec {
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(250, 243, 227, 0.92);
  font-size: 1.02rem;
}

.modal-body {
  padding: 40px;
}

.modal-body h4 {
  font-size: 1.1rem;
  color: var(--c-saffron-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
}

.modal-body h4:first-child { margin-top: 0; }

.modal-body p { font-size: 0.96rem; color: var(--c-text); }

.modal-body ul { list-style: none; margin: 12px 0; }

.modal-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
}

.modal-body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--c-saffron);
  top: 8px;
}

@media (max-width: 700px) {
  .modal-header { grid-template-columns: 1fr; padding: 30px; text-align: center; }
  .modal-header img { margin: 0 auto; width: 160px; height: 200px; }
  .modal-body { padding: 30px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  background: linear-gradient(180deg, var(--c-cream), var(--c-ivory));
  position: relative;
}

.testimonial-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 280px;
}

.testimonial {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  padding: 60px 50px 50px;
  text-align: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial::before {
  content: "❝";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--c-gold);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-maroon-deep);
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  font-weight: 600;
}

.testimonial-loc {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 4px;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-saffron);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.testimonial-dots button.active {
  background: var(--c-saffron);
  transform: scale(1.3);
}

/* ============================================================
   COUNTERS
   ============================================================ */

.counters {
  background:
    linear-gradient(135deg, rgba(58, 10, 12, 0.93), rgba(91, 20, 22, 0.93)),
    url("images/Tristotra-Shakti-peeth-Maa-Brahmari.jpg") center/cover fixed;
  color: var(--c-cream);
  padding: 110px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item {
  padding: 30px 20px;
  border: 1px solid rgba(201, 161, 74, 0.25);
  position: relative;
}

.counter-item::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 2px solid var(--c-gold-bright);
  border-left: 2px solid var(--c-gold-bright);
}

.counter-item::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 30px; height: 30px;
  border-bottom: 2px solid var(--c-gold-bright);
  border-right: 2px solid var(--c-gold-bright);
}

.counter-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--c-gold-bright);
  line-height: 1;
  margin-bottom: 14px;
}

.counter-label {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 243, 227, 0.9);
  font-weight: 500;
}

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

/* ============================================================
   GALLERY PAGE
   ============================================================ */

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

.gallery-filter {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-maroon-deep);
  padding: 10px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s var(--ease);
}

.gallery-filter.active, .gallery-filter:hover {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  border-color: var(--c-maroon-deep);
}

.masonry {
  column-count: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}

.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58, 10, 12, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.masonry-item .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--c-cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}

.masonry-item:hover img { transform: scale(1.06); }
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover .caption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 6, 0.95);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--c-gold);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(91, 20, 22, 0.8);
  color: var(--c-cream);
  border: 1px solid var(--c-gold);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(91, 20, 22, 0.8);
  color: var(--c-cream);
  border: 1px solid var(--c-gold);
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-nav:hover { background: var(--c-saffron); }

/* ============================================================
   ABOUT / CONTENT BLOCKS
   ============================================================ */

.content-block {
  max-width: 880px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 18px;
}

.content-block h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--c-saffron);
}

.content-block p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--c-text);
}

.content-block .pullquote {
  border-left: 3px solid var(--c-saffron);
  padding: 18px 28px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-maroon-deep);
  background: var(--c-cream);
  margin: 30px 0;
}

/* Two-column content with side image */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}

.content-split:last-child { margin-bottom: 0; }

.content-split.reverse > *:first-child { order: 2; }

.content-split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.content-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-split-image .frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(250, 243, 227, 0.5);
  pointer-events: none;
}

@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; gap: 40px; }
  .content-split.reverse > *:first-child { order: 0; }
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-saffron), var(--c-gold), var(--c-maroon));
}

.timeline-item {
  position: relative;
  padding: 0 0 60px 50px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-saffron);
  border: 4px solid var(--c-ivory);
  box-shadow: 0 0 0 1px var(--c-saffron);
}

.timeline-era {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-item h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--c-muted);
  font-size: 0.98rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

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

.contact-info-card {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--c-saffron) 0%, transparent 70%);
  opacity: 0.15;
}

.contact-info-card h3 {
  color: var(--c-cream);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.contact-info-card .lead {
  color: rgba(250, 243, 227, 0.85);
  margin-bottom: 36px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
}

.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
}

.contact-block:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.15);
  border: 1px solid var(--c-gold);
  color: var(--c-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-block-text {
  flex: 1;
}

.contact-block-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 4px;
}

.contact-block-value {
  font-size: 1rem;
  color: var(--c-cream);
}

.contact-block-value a:hover { color: var(--c-gold-bright); }

.contact-form {
  background: var(--c-ivory);
  padding: 50px 40px;
  border: 1px solid var(--c-line);
}

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

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: 0.98rem;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-saffron);
  background: rgba(255, 255, 255, 0.6);
}

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

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

.map-block {
  margin-top: 60px;
  height: 380px;
  background: var(--c-cream);
  border: 1px solid var(--c-gold);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(201, 161, 74, 0.06) 0 30px, transparent 30px 60px),
    radial-gradient(circle at 50% 50%, rgba(215, 122, 43, 0.1), transparent 60%);
}

.map-pin {
  width: 60px;
  height: 60px;
  background: var(--c-saffron);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -8px rgba(91, 20, 22, 0.5);
  position: relative;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--c-cream);
  border-radius: 50%;
}

.map-block-content {
  text-align: center;
  z-index: 2;
}

.map-block-content h3 {
  font-family: var(--ff-display);
  margin-bottom: 8px;
}

.map-block-content p {
  color: var(--c-muted);
  margin-bottom: 0;
}

/* ============================================================
   VISIT / TRAVEL CARDS
   ============================================================ */

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.travel-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.travel-card:hover {
  background: var(--c-maroon-deep);
  color: var(--c-cream);
  transform: translateY(-4px);
}

.travel-card:hover h3, .travel-card:hover .travel-num { color: var(--c-gold-bright); }
.travel-card:hover p, .travel-card:hover li { color: rgba(250, 243, 227, 0.85); }

.travel-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--c-saffron);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s var(--ease);
}

.travel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}

.travel-card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.travel-card ul { list-style: none; }

.travel-card ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--c-text);
  border-bottom: 1px dashed var(--c-line);
}

.travel-card ul li:last-child { border-bottom: none; }

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

/* ============================================================
   MISSION PILLARS
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--c-gold);
}

.pillar {
  padding: 50px 36px;
  border-right: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  background: var(--c-ivory);
  transition: all 0.4s var(--ease);
}

.pillar:hover {
  background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
  color: var(--c-cream);
}

.pillar:hover h3, .pillar:hover .pillar-num { color: var(--c-gold-bright); }
.pillar:hover p { color: rgba(250, 243, 227, 0.9); }

.pillar-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--c-saffron-deep);
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}

.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}

.pillar p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--c-bg);
  color: rgba(250, 243, 227, 0.78);
  padding: 80px 0 30px;
  border-top: 4px solid var(--c-saffron);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-saffron) 0%, var(--c-gold) 50%, var(--c-saffron) 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
}

.footer-brand h3 {
  font-family: var(--ff-display);
  color: var(--c-gold-bright);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(250, 243, 227, 0.7);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 22px;
  font-family: var(--ff-body);
  font-weight: 600;
}

.footer-col ul { list-style: none; }

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

.footer-col a {
  color: rgba(250, 243, 227, 0.7);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--c-gold-bright);
  padding-left: 6px;
}

.footer-contact a, .footer-contact span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(250, 243, 227, 0.78);
}

.footer-contact a:hover { color: var(--c-gold-bright); }

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-bright);
  transition: all 0.4s var(--ease);
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.social-icons a:hover {
  background: var(--c-saffron);
  border-color: var(--c-saffron);
  color: var(--c-cream);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(250, 243, 227, 0.55);
}

.footer-bottom a { color: var(--c-gold-bright); }
.footer-bottom a:hover { color: var(--c-cream); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PASSCODE / ENTRY PAGE
   ============================================================ */

.passcode-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(14, 8, 6, 0.92), rgba(58, 10, 12, 0.92)),
    url("images/QwRY54Li1HMwD7oNfosdZe21QVWzzGKUkaxpu3EaGV.webp") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--c-cream);
}

.passcode-card {
  background: rgba(14, 8, 6, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 161, 74, 0.3);
  padding: 70px 60px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.6);
}

.passcode-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(201, 161, 74, 0.4);
  pointer-events: none;
}

.passcode-symbol {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--c-saffron), var(--c-maroon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  color: var(--c-cream);
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  box-shadow: 0 0 40px -10px rgba(215, 122, 43, 0.6);
}

.passcode-symbol::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 161, 74, 0.5);
  border-radius: 50%;
}

.passcode-card h1 {
  color: var(--c-cream);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
}

.passcode-card .subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-gold-bright);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.passcode-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.passcode-form input {
  width: 100%;
  padding: 18px 22px;
  background: rgba(250, 243, 227, 0.05);
  border: 1px solid rgba(201, 161, 74, 0.4);
  color: var(--c-cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.passcode-form input::placeholder {
  color: rgba(250, 243, 227, 0.4);
  letter-spacing: 0.2em;
}

.passcode-form input:focus {
  outline: none;
  border-color: var(--c-gold-bright);
  background: rgba(250, 243, 227, 0.08);
}

.passcode-error {
  color: #f4a59a;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  min-height: 20px;
  margin-top: -10px;
  font-style: italic;
}

.passcode-card .footer-note {
  margin-top: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 243, 227, 0.55);
}

@media (max-width: 600px) {
  .passcode-card { padding: 50px 30px; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.no-pad-top { padding-top: 0 !important; }
.no-pad-bottom { padding-bottom: 0 !important; }

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
}
