/* ==========================================================================
   KARUNASAGAR FOUNDATION — STYLESHEET
   Design tokens
   ------------------------------------------------------------------------
   Colour    : maroon (robe) + saffron/gold (temple gilding) + deep navy
               (dharma-wheel blue) on a warm cream/white working surface.
   Type      : 'Yatra One' for display headings (a nod to the Foundation's
               Dhamma "Yatra" tours) + 'Work Sans' for body/UI text.
   Signature : the 24-spoke Ashoka Dharma Chakra, used sparingly as a
               section-divider / hero watermark — not as a decorative bullet.
   ========================================================================== */

:root {
  --maroon: #7a1f2e;
  --maroon-dark: #531320;
  --maroon-light: #9c2f41;
  --saffron: #e08e2d;
  --saffron-light: #f4c572;
  --navy: #16315c;
  --navy-light: #234a85;
  --cream: #fbf6ec;
  --cream-deep: #f3ead7;
  --charcoal: #2a2420;
  --charcoal-soft: #5a4f47;
  --white: #ffffff;

  --font-display: 'Yatra One', cursive;
  --font-body: 'Work Sans', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(42, 36, 32, 0.08);
  --shadow-md: 0 10px 30px rgba(42, 36, 32, 0.14);
  --shadow-lg: 0 20px 50px rgba(42, 36, 32, 0.22);

  --container-w: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--maroon);
}
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Custom Cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body, a, button, .gallery-item, .tour-card, .work-card { cursor: none !important; }
  .cursor-dot {
    position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    background: var(--maroon); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-outline {
    position: fixed; top: 0; left: 0; width: 36px; height: 36px;
    border: 1.5px solid var(--saffron); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
  }
  .cursor-outline.hovering {
    width: 50px; height: 50px;
    background: rgba(224, 142, 45, 0.1);
    border-color: transparent;
  }
  .cursor-dot.hovering {
    width: 0; height: 0; opacity: 0;
  }
}

/* ---------- Animations ---------- */
@keyframes spinSlow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--saffron);
  display: inline-block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-sub {
  max-width: 640px;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow::before { display: none; }

section { padding: 86px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-maroon { background: linear-gradient(155deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: rgba(255,255,255,0.92); }
.bg-maroon h2, .bg-maroon h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}
.btn-outline::after, .btn-outline-dark::after { display: none; }
.btn-primary { background: var(--saffron); color: var(--maroon-dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--saffron-light); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--maroon); color: var(--maroon); }
.btn-outline-dark:hover { background: var(--maroon); color: var(--white); transform: translateY(-2px); }
.btn-donate { background: var(--navy); color: var(--white); }
.btn-donate:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-greet { color: var(--saffron-light); font-weight: 600; letter-spacing: 0.02em; }
.topbar-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; opacity: 0.9; }
.topbar-links a:hover { opacity: 1; color: var(--saffron-light); }

@media (max-width: 640px) {
  .topbar-links a:not(:last-child) { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(122, 31, 46, 0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.18rem; color: var(--maroon); }
.brand-text span { font-size: 0.72rem; color: var(--charcoal-soft); letter-spacing: 0.03em; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--maroon); }
.nav-mobile-donate { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--maroon); border-radius: 2px; }

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 22px;
    border-bottom: 1px solid rgba(122,31,46,0.12);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-mobile-donate {
    display: block; width: 100%; text-align: center;
    background: var(--maroon); color: var(--white) !important;
    padding: 12px 0; margin-top: 10px; border-radius: var(--radius-sm);
  }
  .nav-mobile-donate::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-sm-text { display: none; }
  .nav-cta .btn-donate { display: none; }
}

/* ---------- Dharma wheel (signature element) ---------- */
.dharma-wheel { display: block; }
.divider-wheel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 40px;
  width: fit-content;
}
.divider-wheel .line { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--saffron)); }
.divider-wheel .line.right { background: linear-gradient(90deg, var(--saffron), transparent); }
.divider-wheel svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 80% 0%, var(--maroon-light) 0%, var(--maroon) 45%, var(--navy) 100%);
  color: var(--white);
  padding: 100px 0 110px;
}
.hero-wheel {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: 0.12;
  pointer-events: none;
  animation: spinSlow 80s linear infinite;
}
.hero-wheel svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 680px; }
.hero .eyebrow { color: var(--saffron-light); }
.hero .eyebrow::before { background: var(--saffron-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--saffron-light); font-style: normal; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}
.hero-strip div strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--saffron-light); }
.hero-strip div span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* simple page hero (non-home pages) */
.page-hero {
  background: linear-gradient(155deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 70px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-wheel { width: 420px; height: 420px; opacity: 0.10; right: -90px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin-top: 12px; position: relative; z-index: 2; }
.breadcrumb { font-size: 0.85rem; color: var(--saffron-light); margin-bottom: 14px; position: relative; z-index: 2; }
.breadcrumb a { text-decoration: underline; text-decoration-color: rgba(244,197,114,0.4); }

/* ---------- About snippet (home) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-media .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about-media .badge strong { font-family: var(--font-display); color: var(--saffron); font-size: 1.6rem; display: block; }
.about-media .badge span { font-size: 0.78rem; color: var(--charcoal-soft); }
.about-text p { margin-bottom: 16px; color: var(--charcoal-soft); }
.about-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--charcoal); }
.about-list svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--saffron); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media .badge { left: 14px; bottom: -18px; }
}

/* ---------- Work cards ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-card {
  background: var(--white);
  border: 1px solid rgba(122,31,46,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.work-card:hover .work-icon { background: var(--maroon); color: var(--saffron-light); animation: iconBounce 1s ease infinite; }
.work-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--maroon);
  transition: background 0.3s ease, color 0.3s ease;
}
.work-icon svg { width: 26px; height: 26px; }
.work-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.work-card p { color: var(--charcoal-soft); font-size: 0.95rem; }

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

/* ---------- Impact stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat strong { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--saffron-light); display: block; }
.stat span { font-size: 0.92rem; color: rgba(255,255,255,0.78); }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }

/* ---------- Tour cards ---------- */
/* ---------- Tour cards ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122,31,46,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tour-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tour-card .tour-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.tour-card .tour-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.78rem; }
.tour-meta span {
  background: var(--cream-deep);
  color: var(--maroon);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.tour-body h3 { font-size: 1.25rem; margin-bottom: 2px; }
.tour-body .subtitle { color: var(--charcoal-soft); font-size: 0.85rem; margin-bottom: 2px; }
.tour-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--maroon); }
.tour-price small { font-family: var(--font-body); font-size: 0.7rem; color: var(--charcoal-soft); display: block; font-weight: 400; }
.tour-body .btn { margin-top: auto; }

.tour-detail {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.tour-detail .tour-img-detail {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: auto;
  border: 1px solid rgba(122,31,46,0.1);
  background: var(--cream);
}
.tour-detail .tour-img-detail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.tour-detail-info {
  display: flex;
  flex-direction: column;
}
.tour-detail-info h2 { font-size: 1.6rem; margin-bottom: 2px; }
.tour-detail-info .subtitle { color: var(--charcoal-soft); margin-bottom: 6px; font-size: 0.9rem; }
.price-box {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 8px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-box .amount { font-family: var(--font-display); font-size: 1.7rem; color: var(--maroon); }
.price-box .note { color: var(--charcoal-soft); font-size: 0.8rem; }
.tour-detail-info .price-box {
  margin: 6px 0 10px;
  padding: 8px 14px;
}
.highlight-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px; }
.highlight-pills span {
  background: var(--white);
  border: 1px solid rgba(122,31,46,0.15);
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.terms-list { margin-top: 6px; }
.terms-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--charcoal-soft);
  font-size: 0.88rem;
}
.terms-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--saffron);
  font-weight: 700;
}
.tour-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  flex-wrap: wrap;
}

.tour-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  margin: 10px 0;
}
.tour-info-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.tour-info-grid .highlight-pills {
  margin: 0;
}
.tour-info-grid .highlight-pills span {
  padding: 4px 10px;
  font-size: 0.75rem;
}
.tour-info-grid .terms-list {
  margin-top: 0;
}
.tour-info-grid .terms-list li {
  margin-bottom: 5px;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .tour-grid { grid-template-columns: 1fr; }
  .tour-detail { grid-template-columns: 1fr; gap: 20px; margin-bottom: 45px; }
  .tour-detail .tour-img-detail { height: auto; max-width: 420px; margin: 0 auto; }
  .tour-detail .tour-img-detail img { height: auto; object-fit: contain; }
  .tour-info-grid { grid-template-columns: 1fr; gap: 18px; }
}

.tour-packages-section {
  padding: 40px 0;
}

/* ---------- Gallery ---------- */
.gallery-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-tab {
  background: var(--cream);
  border: 1px solid rgba(122,31,46,0.15);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.gallery-tab.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: var(--white);
  font-size: 0.82rem;
  padding: 28px 14px 12px;
}
.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--charcoal-soft);
}
.gallery-empty svg { width: 56px; height: 56px; color: var(--saffron); margin: 0 auto 18px; }

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 14, 10, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.12);
  border: none; color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
}
.lightbox-cap { color: rgba(255,255,255,0.8); margin-top: 14px; text-align: center; font-size: 0.9rem; }

/* ---------- Leadership ---------- */
.leader-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; }
.leader-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(122, 31, 46, 0.06);
}
.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.leader-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--maroon-light), var(--maroon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--saffron-light);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-avatar svg { width: 36px; height: 36px; }
.leader-card h3 { font-size: 1.18rem; margin-bottom: 6px; color: var(--maroon-dark); }
.leader-card .role { color: var(--saffron); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.leader-card p { color: var(--charcoal-soft); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 860px) { .leader-grid { flex-direction: column; align-items: center; } }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; max-width: 760px; margin: 0 auto; }
.quote-band .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--saffron-light); line-height: 1; }
.quote-band p.quote-text { font-size: 1.3rem; color: var(--white); margin: 10px 0 22px; font-style: italic; }
.quote-band .quote-by { color: var(--saffron-light); font-weight: 700; }
.quote-band .quote-role { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ---------- Donate CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--saffron) 0%, var(--saffron-light) 100%);
  border-radius: var(--radius);
  padding: 56px 50px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--maroon-dark); margin-bottom: 8px; }
.cta-band p { color: var(--maroon-dark); opacity: 0.85; max-width: 480px; }
.cta-band .btn-primary { background: var(--maroon); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--maroon-dark); }

/* ---------- Donate page ---------- */
.donate-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.bank-card {
  background: var(--white);
  border: 1px solid rgba(122,31,46,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.bank-card .bank-head {
  background: var(--navy);
  color: var(--white);
  padding: 20px 26px;
  display: flex; align-items: center; gap: 12px;
}
.bank-card .bank-head svg { width: 24px; height: 24px; color: var(--saffron-light); }
.bank-rows { padding: 8px 26px 22px; }
.bank-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(122,31,46,0.15);
  font-size: 0.95rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row .label { color: var(--charcoal-soft); }
.bank-row .value { font-weight: 700; color: var(--charcoal); text-align: right; }
.copy-btn {
  background: var(--cream-deep);
  border: none;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maroon);
  margin-left: 8px;
}
.upi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 22px;
}
.upi-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.note-box {
  background: var(--cream-deep);
  border-left: 3px solid var(--saffron);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin-top: 18px;
}
.donate-other { display: flex; flex-direction: column; gap: 18px; }
.other-way {
  background: var(--white);
  border: 1px solid rgba(122,31,46,0.1);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.other-way h4 { font-size: 1.02rem; margin-bottom: 6px; }
.other-way p { color: var(--charcoal-soft); font-size: 0.9rem; }
.qr-code-box {
  text-align: center;
  padding: 24px 26px;
  border-top: 1px dashed rgba(122,31,46,0.15);
  background: var(--cream);
}
.qr-code-box img { max-width: 160px; margin: 0 auto 12px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.qr-code-box p { font-size: 0.88rem; color: var(--charcoal-soft); font-weight: 600; margin-bottom: 0; }
.legal-strip {
  margin-top: 50px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  border-top: 1px solid rgba(122,31,46,0.12);
  padding-top: 26px;
}
@media (max-width: 900px) { .donate-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.contact-card h3 svg { width: 20px; height: 20px; color: var(--saffron); }
.contact-card p, .contact-card a { color: var(--charcoal-soft); font-size: 0.95rem; }
.contact-card .person { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(122,31,46,0.15); font-size: 0.92rem; }
.contact-card .person:last-child { border-bottom: none; }
.contact-card .person strong { color: var(--charcoal); display: block; font-size: 0.88rem; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
  box-shadow: var(--shadow-sm);
}
.social-row a:hover { background: var(--maroon); color: var(--white); }
.social-row svg { width: 18px; height: 18px; }

.form-card { background: var(--white); border: 1px solid rgba(122,31,46,0.1); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid rgba(122,31,46,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--white);
}
.form-alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-alert.success { background: #e7f3e8; color: #245c30; border: 1px solid #bfe0c4; }
.form-alert.error { background: #fbeaea; color: #8a2a2a; border: 1px solid #f0c4c4; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

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

/* ---------- About page extras ---------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card { background: var(--cream); border-radius: var(--radius); padding: 32px; }
.mission-card .work-icon { background: var(--white); }
.mission-card h3 { margin-bottom: 10px; }
.mission-card p { color: var(--charcoal-soft); }
.legal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.legal-item { background: var(--cream); border-radius: var(--radius-sm); padding: 18px 20px; }
.legal-item span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-soft); margin-bottom: 4px; }
.legal-item strong { color: var(--maroon); font-size: 0.95rem; word-break: break-word; }
@media (max-width: 860px) { .mission-grid { grid-template-columns: 1fr; } .legal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; margin-bottom: 18px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--saffron-light); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); color: var(--saffron-light); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; border: 1.5px solid rgba(255,255,255,0.2); }
.footer-social a:hover { background: var(--saffron); color: var(--charcoal); transform: translateY(-2px); border-color: var(--saffron); }
.footer-social svg { width: 22px; height: 22px; }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; }
.footer-bottom span { color: rgba(255,255,255,0.5); }

@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Misc page bits ---------- */
.text-page { max-width: 760px; }
.text-page h2 { margin-top: 36px; margin-bottom: 12px; font-size: 1.5rem; }
.text-page p { color: var(--charcoal-soft); margin-bottom: 14px; }

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 70px 0 80px; }
  .cta-band { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .hero-strip { gap: 20px; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .topbar-greet { font-size: 0.75rem; }
  .bank-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 0; }
  .bank-row .value { text-align: left; }
}

/* ---------- Tour Leaders (Tours Page) ---------- */
.tour-leader-section {
  padding: 50px 0 40px;
}
.tour-leader-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.tour-leader-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(122,31,46,0.06);
}
.tour-leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tour-leader-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--maroon-light), var(--maroon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.tour-leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--maroon-dark);
}
.tour-leader-card .role {
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.tour-leader-card p {
  color: var(--charcoal-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
@media (max-width: 860px) {
  .tour-leader-grid {
    flex-direction: column;
    align-items: center;
  }
}

