:root {
  --ivory: #fbf5ec;
  --paper: #fffcf6;
  --maroon-950: #33090f;
  --maroon-900: #54121c;
  --maroon-700: #7a1f2b;
  --maroon-600: #8e2a36;
  --gold-700: #9c7327;
  --gold-600: #b8863b;
  --gold-400: #d4af6a;
  --gold-200: #ead9ae;
  --blush: #f2d9d8;
  --ink: #2a211c;
  --ink-soft: #000;
  --line: rgba(184, 134, 59, 0.28);
  --shadow: 0 20px 60px rgba(51, 9, 15, 0.14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--gold-200);
  color: var(--maroon-950);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--maroon-950);
  letter-spacing: 0.01em;
}
.eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  position: relative;
  padding: 80px 0;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-top: 18px;
  line-height: 1.15;
}
.section-head p {
  color: var(--ink-soft);
  margin-top: 18px;
  font-size: 1.05rem;
}

/* subtle mandala texture backdrop */
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(184, 134, 59, 0.06) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(122, 31, 43, 0.05) 0,
      transparent 40%
    );
  pointer-events: none;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(251, 245, 236, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
header.nav.scrolled {
  padding: 12px 0;
  background: rgba(251, 245, 236, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(51, 9, 15, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1180px; */
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .om {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-400), var(--gold-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-950);
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 1.15rem;
  box-shadow:
    0 0 0 1px var(--gold-600),
    0 6px 16px rgba(184, 134, 59, 0.35);
}
.brand-text {
  line-height: 1.15;
}
.brand-text .name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--maroon-950);
}
.brand-text .sub {
  font-family: "Cinzel", serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--gold-700);
  text-transform: uppercase;
}
nav.links {
  display: flex;
  gap: 34px;
  align-items: center;
}
nav.links a {
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-600);
  transition: width 0.3s ease;
}
nav.links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 2px solid var(--maroon-900);
  border-radius: 2px;
  color: var(--maroon-900);
  transition: all 0.35s ease;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--maroon-900);
  color: var(--gold-200);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--maroon-900);
}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  position:relative;
  width:26px;
  height:20px;
  justify-content:center;
}
.nav-toggle span{
  width:24px;
  height:1.5px;
  background:var(--maroon-900);
  transition:transform 0.32s ease, opacity 0.32s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }
/* ---------- HERO ---------- */
.banner-section {
  padding-bottom: 0px;
}
.banner-section img {
  width: 100%;
}
.hero-frame img,
.hero-frame video {
  width: 100%;
  height: auto;
  display: block;
}
.hero {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(
      ellipse 900px 500px at 50% -10%,
      rgba(232, 217, 169, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--ivory) 0%, #f7eedf 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 134, 59, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-700);
  display: block;
}
.hero-copy p.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-mantra {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--maroon-700);
  margin-bottom: 36px;
  border-left: 2px solid var(--gold-600);
  padding-left: 18px;
}
.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  transition: all 0.35s ease;
  display: inline-block;
}
.btn-primary {
  background: var(--maroon-900);
  color: var(--gold-200);
  box-shadow: 0 14px 30px rgba(84, 18, 28, 0.28);
}
.btn-primary:hover {
  background: var(--maroon-950);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--maroon-700);
  color: var(--maroon-900);
}
.btn-outline:hover {
  background: var(--maroon-700);
  color: var(--gold-200);
}

.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-400);
}
.hero-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  border-radius: 3px;
}
.stat-chip {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-chip .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--maroon-900);
  font-weight: 600;
}
.stat-chip .lbl {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-700);
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-600), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0% {
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0.3);
    transform-origin: bottom;
  }
}

/* ---------- IDEOLOGY (About) ---------- */
.ideology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.ideology-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px 34px;
  text-align: center;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.ideology-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.ideology-card .glyph {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--gold-200), var(--gold-400));
  color: var(--maroon-950);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.ideology-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.ideology-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.ideology-quote {
  margin-top: 56px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--maroon-800, var(--maroon-700));
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ---------- HISTORY (editorial) ---------- */
.history {
  background: var(--maroon-950);
  color: var(--gold-200);
  position: relative;
}
.history .eyebrow {
  color: var(--gold-400);
}
.history .eyebrow::before {
  background: var(--gold-400);
}
.history h2 {
  color: var(--paper);
}
.history-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.history-figure {
  position: sticky;
  top: 120px;
}
.history-figure .big-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-400);
  font-weight: 600;
}
.history-figure .tag {
  font-family: "Cinzel", serif;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-top: 18px;
}
.history-figure p {
  color: rgba(234, 217, 174, 0.75);
  margin-top: 18px;
  font-size: 0.95rem;
}
.history-body p {
  color: rgba(255, 252, 246, 0.86);
  font-size: 1.03rem;
  margin-bottom: 22px;
}
.history-body p:first-child::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  float: left;
  line-height: 0.8;
  padding: 6px 10px 0 0;
  color: var(--gold-400);
  font-weight: 600;
}

/* ---------- FLAME LINEAGE (signature) ---------- */
.lineage {
  background: var(--ivory);
  position: relative;
}
.flame-track {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}
.flame-line {
  position: absolute;
  left: 29px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gold-600),
    var(--maroon-700) 50%,
    var(--gold-600)
  );
  opacity: 0.4;
}
.flame-node {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  padding-bottom: 48px;
}
.flame-node:last-child {
  padding-bottom: 0;
}
.flame-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(184, 134, 59, 0.18);
}
.flame-icon svg {
  width: 45px;
  height: 45px;
}
.flame-node .era {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-700);
  text-transform: uppercase;
}
.flame-node h4 {
  font-size: 1.35rem;
  margin: 5px 0 8px;
}
.flame-node p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 520px;
}
.flame-node.present .flame-icon {
  background: var(--maroon-900);
  border-color: var(--maroon-900);
}
.flame-node.present .flame-icon svg {
  fill: var(--gold-400) !important;
}

/* ---------- GURU CARDS ---------- */
.guru-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 10px;
}
.guru-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 26px;
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.guru-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.guru-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: conic-gradient(
    from 220deg,
    var(--gold-400),
    var(--blush),
    var(--gold-600),
    var(--gold-400)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.guru-ring span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--maroon-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-200);
  font-size: 1.6rem;
  font-weight: 600;
}
.guru-card .role {
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.guru-card h4 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
.guru-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- EVENTS ---------- */
.events {
  background: #f7eedf;
}
.events-list {
  max-width: 880px;
  margin: 0 auto;
}
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.event-row:last-child {
  border-bottom: none;
}
.event-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--maroon-900);
  font-weight: 600;
}
.event-date span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold-700);
  margin-top: 2px;
}
.event-body h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.event-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.event-body .place {
  display: inline-block;
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon-700);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
  background: #fff;
}

/* ---------- SOCIAL IMPACT ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.impact-card {
  background: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.impact-top {
  height: 6px;
  background: linear-gradient(90deg, var(--gold-400), var(--maroon-700));
}
.impact-card .inner {
  padding: 32px 28px;
}
.impact-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold-700);
}
.impact-card h4 {
  font-size: 1.5rem;
  margin: 10px 0 12px;
}
.impact-card p {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ---------- DARBARS ---------- */
.darbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.darbar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.darbar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.darbar-card .pin {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.darbar-card .pin svg {
  width: 26px;
  height: 26px;
  fill: var(--maroon-800, var(--maroon-700));
}
.darbar-card h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.darbar-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(
    150deg,
    var(--ivory),
    var(--blush) 60%,
    var(--gold-200)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-tile:hover img {
  transform: scale(1.08);
}
.gallery-tile.tall {
  grid-row: span 2;
}
.gallery-tile.wide {
  grid-column: span 2;
}
.gallery-tile .om-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold-600);
  opacity: 0.55;
}
.gallery-tile .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(0deg, rgba(51, 9, 15, 0.78), transparent);
  color: var(--gold-200);
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.35s ease;
}
.gallery-tile:hover .caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(51, 9, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  border: 1px solid var(--gold-400);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  color: var(--gold-200);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: var(--gold-400);
  color: var(--maroon-950);
}

/* ---------- CONTRIBUTE ---------- */
.contribute {
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-950));
  color: var(--gold-200);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contribute::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 106, 0.16),
    transparent 70%
  );
  top: -200px;
  right: -150px;
}
.contribute .section-head p {
  color: rgba(234, 217, 174, 0.8);
}
.contribute .section-head h2 {
  color: var(--paper);
}
.give-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 50px auto 0;
}
.give-way {
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 10px;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.03);
}
.give-way h4 {
  color: var(--gold-200);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.give-way p {
  font-size: 0.95rem;
  color: rgba(234, 217, 174, 0.72);
}
.contribute .btn-row {
  justify-content: center;
  margin-top: 44px;
}
.contribute .btn-primary {
  background: var(--gold-400);
  color: var(--maroon-950);
  box-shadow: 0 14px 30px rgba(212, 175, 106, 0.3);
}
.contribute .btn-primary:hover {
  background: var(--gold-200);
}
.contribute .btn-outline {
  border-color: var(--gold-400);
  color: var(--gold-200);
}
.contribute .btn-outline:hover {
  background: var(--gold-400);
  color: var(--maroon-950);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 400px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail .ic svg {
  width: 15px;
  height: 15px;
  fill: var(--maroon-700);
}
.contact-detail div span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.contact-detail div strong {
  font-size: 1rem;
  color: var(--maroon-950);
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.full {
  grid-template-columns: 1fr;
}
.contact-form label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  color: var(--gold-700);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: "Jost", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold-400);
  outline-offset: 1px;
}
.contact-form .btn {
  margin-top: 6px;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--maroon-950);
  color: rgba(234, 217, 174, 0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(212, 175, 106, 0.18);
}
.footer-brand .brand-text .name {
  color: var(--paper);
}
.footer-mantra {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gold-200);
}
footer h5 {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 11px;
  font-size: 0.88rem;
}
footer ul li a:hover {
  color: var(--gold-200);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  nav.links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    /* order: -1; */
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-grid {
    gap: 30px; 
  }
  .history-grid {
    grid-template-columns: 1fr;
  }
  .history-figure {
    position: static;
  }
  .ideology-grid,
  .guru-grid,
  .impact-grid,
  .darbar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-tile.wide {
    grid-column: span 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  section {
    padding: 40px 0;
  }
  .hero {
    padding: 40px 0;
  }
  .ideology-grid,
  .guru-grid,
  .impact-grid,
  .darbar-grid,
  .give-ways {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 60px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .history-figure .big-number {
    font-size: 4.5rem;
  }
  .stat-chip {
    left: 0;
  }
  .nav-cta {
    padding: 7px 10px;
  }
  .nav-inner {
    padding: 0 15px;
    gap: 20px;
  }
  .banner-section {
    padding-bottom: 0px;
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
