/* ============================================
   CHATTAL SHAKTIPEETH — SACRED MOUNTAIN DESIGN
   Designed and Managed by Creaa Designs
   ============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --c-earth-deepest: #1a0e07;
  --c-earth-deep: #2b170a;
  --c-earth: #3d2412;
  --c-earth-mid: #5c3a1f;
  --c-earth-soft: #7a5232;

  --c-saffron: #e87722;
  --c-saffron-deep: #c25c11;
  --c-saffron-glow: #ff9442;
  --c-sunset: #d4471c;

  --c-gold: #c9a227;
  --c-gold-bright: #e6b834;
  --c-gold-soft: #f0d97a;

  --c-mist-deepest: #2c2a28;
  --c-mist-deep: #4a4744;
  --c-mist: #8a8580;
  --c-mist-light: #cdc8c2;
  --c-mist-pale: #ece8e2;
  --c-mist-cream: #faf6ee;

  --c-text-dark: #2b170a;
  --c-text-mid: #5c3a1f;
  --c-text-light: #faf6ee;
  --c-text-muted: #8a8580;

  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-script: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-bengali: 'Noto Serif Bengali', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-soft: 0 6px 28px rgba(43, 23, 10, 0.12);
  --shadow-deep: 0 18px 60px rgba(26, 14, 7, 0.28);
  --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.32);

  --ease-mountain: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-text-dark);
  background: var(--c-mist-cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-earth-deep);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

p {
  font-size: 1.02rem;
  color: var(--c-text-mid);
}

[lang="bn"], .bn-text {
  font-family: var(--font-bengali);
}

/* ---------- LANGUAGE TOGGLE BEHAVIOR ---------- */
body.lang-en [data-lang="bn"] { display: none; }
body.lang-bn [data-lang="en"] { display: none; }
body.lang-bn { font-family: var(--font-bengali); }
body.lang-bn h1, body.lang-bn h2, body.lang-bn h3, body.lang-bn h4 {
  font-family: var(--font-bengali);
}

/* =============================================
   PRELOADER — MOUNTAIN MIST RISING
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 80%, var(--c-earth-deep), var(--c-earth-deepest));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.preloader-symbol {
  width: 88px;
  height: 88px;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  position: relative;
  animation: pulseRing 2.4s ease-in-out infinite;
}
.preloader-symbol::before {
  content: 'ॐ';
  font-family: var(--font-display);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-bright);
  font-size: 2.6rem;
}
.preloader-text {
  margin-top: 1.5rem;
  color: var(--c-gold-soft);
  letter-spacing: 0.4em;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,.4); transform: scale(1); }
  50% { box-shadow: 0 0 0 30px rgba(201,162,39,0); transform: scale(1.05); }
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 2.4rem;
  background: rgba(26, 14, 7, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  transition: all .4s var(--ease-soft);
}
.site-nav.scrolled {
  padding: 0.7rem 2.4rem;
  background: rgba(26, 14, 7, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--c-mist-cream);
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--c-gold-bright), var(--c-saffron-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--c-earth-deepest);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(232, 119, 34, 0.4);
}
.brand-mark::before {
  content: 'ॐ';
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--c-gold-soft);
  font-weight: 600;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--c-mist-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav-menu a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mist-light);
  font-weight: 500;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width .35s var(--ease-soft);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--c-gold-bright);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 30px;
  overflow: hidden;
  padding: 3px;
}
.lang-toggle button {
  padding: 0.35rem 0.95rem;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--c-mist-light);
  border-radius: 30px;
  transition: all .3s var(--ease-soft);
}
.lang-toggle button.active {
  background: var(--c-gold);
  color: var(--c-earth-deepest);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-gold-bright);
  margin: 6px auto;
  transition: .35s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 14, 7, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform .5s var(--ease-mountain);
    padding-top: 5rem;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.8rem 1.6rem;
  }
}

/* =============================================
   HERO — MOUNTAIN BASE
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-earth-deepest);
  padding-bottom: 8vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  to { transform: scale(1.15); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(232, 119, 34, 0.28), transparent 50%),
    linear-gradient(to top, rgba(26, 14, 7, 0.95) 5%, rgba(26, 14, 7, 0.55) 40%, rgba(26, 14, 7, 0.85) 100%);
  z-index: 1;
}
.hero-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(205, 200, 194, 0.3), transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(205, 200, 194, 0.25), transparent 60%);
  z-index: 2;
  pointer-events: none;
  animation: mistFlow 18s ease-in-out infinite alternate;
}
@keyframes mistFlow {
  0% { transform: translateX(-3%); opacity: .65; }
  100% { transform: translateX(3%); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2.4rem;
  color: var(--c-mist-cream);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--c-gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--c-mist-cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-title .gold {
  color: var(--c-gold-bright);
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--c-mist-light);
  max-width: 640px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2.6rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all .4s var(--ease-soft);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold-bright), var(--c-saffron));
  color: var(--c-earth-deepest);
  box-shadow: 0 8px 28px rgba(232, 119, 34, 0.45);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(232, 119, 34, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--c-mist-cream);
  border: 1.5px solid rgba(232, 232, 226, 0.35);
}
.btn-ghost:hover {
  background: rgba(232, 232, 226, 0.1);
  border-color: var(--c-gold-bright);
  color: var(--c-gold-bright);
}
.btn-arrow::after {
  content: '→';
  transition: transform .3s ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--c-gold-soft);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--c-gold-soft), transparent);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); }
}

/* =============================================
   PAGE HEADER (sub pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5vh;
  overflow: hidden;
  background: var(--c-earth-deepest);
}
.page-hero .hero-bg { filter: brightness(0.5) saturate(1.05); }
.page-hero .hero-veil {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(232, 119, 34, 0.22), transparent 55%),
    linear-gradient(to top, rgba(26, 14, 7, 0.96), rgba(26, 14, 7, 0.5) 70%, rgba(26, 14, 7, 0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  margin: 0 auto;
  padding: 8rem 2.4rem 0;
  width: 100%;
  color: var(--c-mist-cream);
}
.page-hero-content h1 {
  color: var(--c-mist-cream);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}
.page-hero-content h1 .gold {
  color: var(--c-gold-bright);
  font-family: var(--font-script);
  font-style: italic;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 1.6rem;
}
.breadcrumb a { opacity: .85; }
.breadcrumb a:hover { color: var(--c-gold-bright); opacity: 1; }
.breadcrumb span:not(:last-child)::after {
  content: '/';
  margin-left: 0.6rem;
  opacity: .5;
}

/* =============================================
   SECTION FRAMEWORK
   ============================================= */
section {
  position: relative;
  padding: 6rem 2.4rem;
}
.container {
  max-width: 1380px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 940px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--c-saffron);
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-bottom: 1.4rem;
}
.section-title .gold {
  font-family: var(--font-script);
  color: var(--c-saffron-deep);
  font-style: italic;
  font-weight: 500;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--c-text-mid);
  max-width: 720px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.section-head {
  margin-bottom: 4rem;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-eyebrow {
  justify-content: center;
}
.section-head.center .section-eyebrow::before { display: none; }
.section-head.center .section-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--c-saffron);
}
.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Decorative divider */
.divider-om {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.5rem auto;
  color: var(--c-gold);
}
.divider-om::before, .divider-om::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
}
.divider-om span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-saffron-deep);
}

/* =============================================
   ASCENT JOURNEY (Home — climb the hill)
   ============================================= */
.ascent {
  background: linear-gradient(180deg, var(--c-mist-cream) 0%, #f3ede1 100%);
  position: relative;
  overflow: hidden;
}
.ascent-mist-top, .ascent-mist-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.ascent-mist-top {
  top: 0;
  background: linear-gradient(to bottom, var(--c-mist-cream), transparent);
}
.ascent-mist-bottom {
  bottom: 0;
  background: linear-gradient(to top, #f3ede1, transparent);
}

.ascent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.ascent-step {
  display: grid;
  grid-template-columns: 110px 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border-left: 4px solid var(--c-saffron);
  backdrop-filter: blur(10px);
  transition: all .5s var(--ease-mountain);
  position: relative;
  overflow: hidden;
}
.ascent-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 119, 34, 0), rgba(232, 119, 34, 0.07));
  opacity: 0;
  transition: opacity .4s ease;
}
.ascent-step:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); }
.ascent-step:hover::before { opacity: 1; }

.ascent-step:nth-child(1) { margin-left: 0%; }
.ascent-step:nth-child(2) { margin-left: 4%; }
.ascent-step:nth-child(3) { margin-left: 8%; }
.ascent-step:nth-child(4) { margin-left: 12%; }
.ascent-step:nth-child(5) { margin-left: 16%; }

.ascent-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--c-gold);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  position: relative;
}
.ascent-step-num::after {
  content: 'M';
  position: absolute;
  bottom: 6px;
  right: -6px;
  font-size: 0.9rem;
  letter-spacing: .1em;
  color: var(--c-saffron-deep);
}
.ascent-step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.ascent-step-content p {
  font-size: 0.95rem;
  margin: 0;
}
.ascent-step-img {
  height: 180px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.ascent-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(232, 119, 34, 0.3));
  border-radius: 6px;
}

@media (max-width: 900px) {
  .ascent-step { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; margin-left: 0 !important; }
  .ascent-step-num { text-align: left; font-size: 3rem; }
  .ascent-step-img { height: 200px; }
}

/* =============================================
   SHAKTIPEETH SIGNIFICANCE BLOCK
   ============================================= */
.signify {
  background: linear-gradient(180deg, var(--c-earth-deep) 0%, var(--c-earth-deepest) 100%);
  color: var(--c-mist-cream);
  position: relative;
  overflow: hidden;
}
.signify::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(232, 119, 34, 0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(201, 162, 39, 0.15), transparent 40%);
  pointer-events: none;
}
.signify h2, .signify .section-title {
  color: var(--c-mist-cream);
}
.signify .section-eyebrow {
  color: var(--c-gold-bright);
}
.signify .section-eyebrow::before {
  background: var(--c-gold);
}
.signify .section-lead {
  color: var(--c-mist-light);
}
.signify-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.signify-text p {
  color: var(--c-mist-light);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.85;
}
.signify-text .highlight {
  color: var(--c-gold-soft);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.3rem;
  display: block;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--c-gold);
}
.signify-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4/5;
}
.signify-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1s var(--ease-soft);
}
.signify-image:hover img { transform: scale(1.05); }
.signify-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 14, 7, 0.7), transparent 40%);
}
.signify-image-cap {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: var(--c-gold-soft);
  font-family: var(--font-script);
  font-style: italic;
}

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

/* =============================================
   PILLAR CARDS (Quick info on home)
   ============================================= */
.pillars {
  background: var(--c-mist-cream);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  padding: 2.4rem 1.8rem;
  background: #fff;
  border-radius: 6px;
  border-top: 3px solid var(--c-saffron);
  box-shadow: 0 3px 18px rgba(43, 23, 10, 0.06);
  transition: all .4s var(--ease-soft);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.07), transparent);
  border-radius: 50%;
  transition: all .5s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--c-gold);
}
.pillar-card:hover::after { transform: scale(1.5); }
.pillar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-gold-bright), var(--c-saffron));
  color: var(--c-earth-deepest);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}
.pillar-card p {
  font-size: 0.95rem;
  color: var(--c-text-mid);
}

/* =============================================
   ABOUT SECTION (rich text)
   ============================================= */
.rich-section {
  background: var(--c-mist-cream);
}
.rich-section.alt {
  background: #f3ede1;
}
.rich-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rich-grid.reverse > div:first-child { order: 2; }
.rich-grid img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}
.rich-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.rich-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--c-gold);
  border-radius: 6px;
  z-index: -1;
}
.rich-text h2 {
  margin-bottom: 1.3rem;
}
.rich-text p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.85;
}
@media (max-width: 900px) {
  .rich-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rich-grid.reverse > div:first-child { order: 0; }
}

/* =============================================
   STORY (Mythology) — Long Form
   ============================================= */
.story {
  background: var(--c-mist-cream);
}
.story-block {
  margin-bottom: 5rem;
  position: relative;
}
.story-block:last-child { margin-bottom: 0; }
.story-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232, 119, 34, 0.15);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: 0;
}
.story-block h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
  color: var(--c-earth-deep);
  font-size: 1.7rem;
}
.story-block p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  color: var(--c-text-mid);
}
.story-block .verse {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--c-saffron-deep);
  font-size: 1.25rem;
  padding: 1.5rem 2rem;
  background: rgba(232, 119, 34, 0.06);
  border-left: 3px solid var(--c-saffron);
  margin: 1.8rem 0;
  border-radius: 0 6px 6px 0;
}

/* =============================================
   TIMELINE (Trek Experience)
   ============================================= */
.trek-timeline {
  position: relative;
  padding: 2rem 0;
}
.trek-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--c-saffron), var(--c-gold), transparent);
  transform: translateX(-50%);
}
.trek-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.trek-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-saffron);
  border: 4px solid var(--c-mist-cream);
  box-shadow: 0 0 0 3px var(--c-saffron), 0 0 0 8px rgba(232, 119, 34, 0.2);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.trek-card {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(43, 23, 10, 0.08);
  position: relative;
}
.trek-card .trek-time {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.trek-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--c-earth-deep);
}
.trek-card p {
  font-size: 0.95rem;
  margin: 0;
}
.trek-step:nth-child(odd) > :first-child { text-align: right; }
.trek-step:nth-child(even) > :first-child { visibility: hidden; }
.trek-step:nth-child(even) > :last-child { visibility: visible; }
.trek-step:nth-child(odd) > :last-child { visibility: hidden; }

@media (max-width: 800px) {
  .trek-timeline::before { left: 12px; }
  .trek-step { grid-template-columns: 24px 1fr; gap: 1rem; }
  .trek-step > :first-child { display: none; }
  .trek-step:nth-child(even) > :last-child,
  .trek-step:nth-child(odd) > :last-child { visibility: visible; text-align: left; }
}

/* =============================================
   FESTIVAL / RITUAL CARDS
   ============================================= */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.festival-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43, 23, 10, 0.08);
  transition: all .5s var(--ease-mountain);
  display: flex;
  flex-direction: column;
}
.festival-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}
.festival-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.festival-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 14, 7, 0.6));
}
.festival-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-saffron);
  color: var(--c-mist-cream);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  z-index: 2;
}
.festival-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.festival-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.festival-body p {
  font-size: 0.96rem;
  flex: 1;
}

/* =============================================
   KUNDS — Sacred Pools
   ============================================= */
.kunds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.kund-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(43, 23, 10, 0.08);
  transition: all .5s var(--ease-mountain);
}
.kund-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.kund-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.kund-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 119, 34, 0.1), rgba(26, 14, 7, 0.5));
}
.kund-symbol {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-saffron-deep);
  z-index: 2;
}
.kund-body {
  padding: 1.8rem;
}
.kund-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.kund-body .kund-sub {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--c-saffron-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}
.kund-body p { font-size: 0.95rem; }

/* =============================================
   GALLERY MASONRY
   ============================================= */
.gallery-masonry {
  columns: 4 280px;
  column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  box-shadow: 0 4px 20px rgba(43, 23, 10, 0.08);
  transition: all .4s var(--ease-soft);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .8s var(--ease-soft);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232, 119, 34, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-deep); transform: translateY(-3px); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  color: var(--c-mist-cream);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s ease;
}
.gallery-item:hover .gal-label {
  transform: translateY(0);
  opacity: 1;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 7, 0.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-mist-cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--c-saffron);
  border-color: var(--c-saffron);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* =============================================
   MANAGEMENT (About page)
   ============================================= */
.management {
  background: var(--c-mist-cream);
}
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 880px;
  margin: 3rem auto 0;
}
.mgmt-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(43, 23, 10, 0.08);
  text-align: center;
  transition: all .5s var(--ease-mountain);
  cursor: pointer;
  border: 1px solid rgba(201, 162, 39, 0.18);
}
.mgmt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: var(--c-gold);
}
.mgmt-photo {
  width: 100%;
  aspect-ratio: 4/4;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.mgmt-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(232, 119, 34, 0.15));
}
.mgmt-body {
  padding: 1.8rem 1.5rem 2rem;
}
.mgmt-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--c-earth-deep);
}
.mgmt-body .mgmt-role {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--c-saffron-deep);
  font-size: 1rem;
  line-height: 1.45;
  display: block;
  min-height: 60px;
}
.mgmt-body .mgmt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-saffron-deep);
}
.mgmt-body .mgmt-link::after {
  content: '→';
  transition: transform .3s ease;
}
.mgmt-card:hover .mgmt-link::after { transform: translateX(4px); }

/* =============================================
   MODAL (Profile popup)
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 7, 0.85);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .35s ease;
  overflow-y: auto;
}
.modal.open {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: var(--c-mist-cream);
  border-radius: 10px;
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform .4s var(--ease-soft);
}
.modal.open .modal-content { transform: scale(1); }
.modal-photo {
  background-size: cover;
  background-position: center top;
  min-height: 360px;
}
.modal-body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  overflow-y: auto;
}
.modal-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  color: var(--c-earth-deep);
}
.modal-body .modal-role {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--c-saffron-deep);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.modal-body p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.modal-body strong {
  color: var(--c-earth-deep);
}
.modal-body h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--c-saffron-deep);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}
.modal-body ul {
  list-style: none;
  margin-bottom: 1rem;
}
.modal-body ul li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--c-text-mid);
}
.modal-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 0.7rem;
  top: 0.4rem;
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  background: rgba(43, 23, 10, 0.85);
  color: var(--c-mist-cream);
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .3s ease;
}
.modal-close:hover {
  background: var(--c-saffron);
  transform: rotate(90deg);
}

@media (max-width: 760px) {
  .modal-content { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-photo { min-height: 280px; max-height: 320px; }
  .modal-body { padding: 1.5rem; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--c-mist-cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.contact-form {
  background: #fff;
  padding: 2.6rem;
  border-radius: 10px;
  box-shadow: 0 4px 28px rgba(43, 23, 10, 0.06);
}
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.contact-form p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.field {
  margin-bottom: 1.2rem;
  position: relative;
}
.field label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--c-mist-cream);
  border: 1px solid #e3dccf;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-text-dark);
  transition: all .3s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-saffron);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.contact-block {
  background: #fff;
  padding: 1.7rem;
  border-radius: 8px;
  border-left: 3px solid var(--c-saffron);
  box-shadow: 0 3px 18px rgba(43, 23, 10, 0.05);
}
.contact-block h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-saffron-deep);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.contact-block .contact-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-earth-deep);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-block a {
  display: block;
  color: var(--c-text-mid);
  font-size: 1rem;
  padding: 0.2rem 0;
  transition: color .25s ease;
}
.contact-block a:hover { color: var(--c-saffron-deep); }
.location-block {
  background: linear-gradient(135deg, var(--c-earth-deep), var(--c-earth-deepest));
  color: var(--c-mist-cream);
  padding: 2rem;
  border-radius: 10px;
}
.location-block h4 {
  color: var(--c-gold-bright);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.location-block p {
  color: var(--c-mist-light);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
}

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

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, var(--c-earth-deep), var(--c-earth-deepest));
  color: var(--c-mist-light);
  padding: 4.5rem 2.4rem 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--c-gold), var(--c-saffron), var(--c-gold), transparent);
}
.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
}
.footer-col h4 {
  color: var(--c-gold-bright);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col p, .footer-col a {
  color: var(--c-mist-light);
  font-size: 0.93rem;
  line-height: 1.7;
}
.footer-col a {
  display: block;
  padding: 0.25rem 0;
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--c-gold-bright); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-brand .brand-name {
  font-size: 1rem;
}
.footer-tag {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--c-mist);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-soft);
  transition: all .35s var(--ease-soft);
}
.social a:hover {
  background: var(--c-gold);
  color: var(--c-earth-deepest);
  border-color: var(--c-gold);
  transform: translateY(-3px);
}
.social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1380px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--c-mist);
  letter-spacing: 0.04em;
}
.footer-bottom .credit a {
  color: var(--c-gold-bright);
  font-weight: 600;
}
.footer-bottom .credit a:hover { color: var(--c-saffron-glow); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   ANIMATIONS / REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .9s var(--ease-mountain);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .25s; }
.reveal-delay-3 { transition-delay: .4s; }
.reveal-delay-4 { transition-delay: .55s; }

/* =============================================
   HELPERS
   ============================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

@media (max-width: 600px) {
  section { padding: 4rem 1.4rem; }
  .site-nav { padding: 0.85rem 1.2rem; }
  .hero-content, .page-hero-content { padding-left: 1.4rem; padding-right: 1.4rem; }
  .gallery-masonry { columns: 2 140px; column-gap: 0.8rem; }
}
