/* ============================================================================
 *  MANDIR SIDDHASHWARI PEETH DHAM — STYLES
 *  Theme: saffron / maroon / gold on cream. Edit the colour tokens in :root.
 * ========================================================================== */

/* ------------------------------------------------------------------ TOKENS */
:root {
  --saffron: #E8710A;
  --saffron-dark: #C85B00;
  --maroon: #7A1F1F;
  --maroon-deep: #4A0F0F;
  --gold: #D4A017;
  --gold-soft: #F2C14E;
  --cream: #FFF8EE;
  --cream-2: #FCEDD8;
  --paper: #FFFDF8;
  --ink: #33210F;
  --ink-soft: #6B5540;
  --line: rgba(122, 31, 31, .14);
  --shadow-sm: 0 4px 14px rgba(74, 15, 15, .07);
  --shadow: 0 14px 38px rgba(74, 15, 15, .12);
  --shadow-lg: 0 26px 60px rgba(74, 15, 15, .18);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --maxw: 1180px;
  --head-h: 78px;
  --font-head: "Playfair Display", "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-hi: "Mukta", "Noto Sans Devanagari", "Poppins", sans-serif;
}

/* Devanagari-first typography when Hindi is selected */
html[data-lang="hi"] {
  --font-body: "Mukta", "Noto Sans Devanagari", "Poppins", sans-serif;
  --font-head: "Mukta", "Noto Sans Devanagari", Georgia, serif;
}
html[data-lang="hi"] h1, html[data-lang="hi"] h2, html[data-lang="hi"] h3 { letter-spacing: 0; }

/* -------------------------------------------------------------------- BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; overscroll-behavior-x: none; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--saffron); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--maroon); line-height: 1.22; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .95em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.skip {
  position: absolute; top: 0; left: 0;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap;
  background: var(--maroon); color: #fff; padding: 10px 16px; z-index: 999;
}
.skip:focus {
  width: auto; height: auto; overflow: visible; clip: auto;
  left: 8px; top: 8px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 34px); }
.muted { color: var(--ink-soft); font-size: .93rem; }
.lead { font-size: 1.08rem; color: var(--ink-soft); }
.mobile-only { display: none !important; }

/* ----------------------------------------------------------------- BUTTONS */
.btn {
  --btn-bg: var(--saffron);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 26px; border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  text-align: center; white-space: nowrap;
}
.btn svg { flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  color: #fff; box-shadow: 0 10px 24px rgba(232, 113, 10, .32);
}
.btn--primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(232, 113, 10, .42); }
.btn--outline { background: transparent; color: var(--maroon); border-color: rgba(122, 31, 31, .3); }
.btn--outline:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); transform: translateY(-3px); }
.btn--ghost { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--maroon); transform: translateY(-3px); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--lg { padding: 16px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.chip {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 999px;
  background: var(--cream-2); color: var(--maroon);
}
.chip--gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--maroon-deep); }
.chip--date { background: rgba(212, 160, 23, .16); }
.chip--pick {
  font-family: var(--font-body); font-size: .95rem; text-transform: none; letter-spacing: 0;
  padding: 10px 20px; border: 2px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer; transition: .2s;
}
.chip--pick:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.chip--pick.is-on { background: var(--saffron); border-color: var(--saffron); color: #fff; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.link-arrow svg { transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------ HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255, 248, 238, .92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
body { padding-top: var(--head-h); }
.header__inner { display: flex; align-items: center; gap: 18px; min-height: var(--head-h); min-width: 0; }
.brand { display: flex; align-items: center; gap: 8px; flex: 1 1 auto; min-width: 0; }
.brand__logo { width: 52px; height: 52px; filter: drop-shadow(0 4px 8px rgba(122,31,31,.22)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--maroon); font-size: clamp(0.85rem, 3vw, 1.06rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;  }
.brand__tag { font-size: .74rem; color: var(--ink-soft); letter-spacing: .03em; }

.nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav__link {
  position: relative; padding: 9px 13px; border-radius: 999px; font-size: .95rem;
  font-weight: 500; color: var(--maroon); transition: .22s;
}
.nav__link:hover { background: rgba(232, 113, 10, .1); color: var(--saffron-dark); }
.nav__link.is-active { color: var(--saffron-dark); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2.5px;
  border-radius: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.header__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.lang {
  display: flex; align-items: center; gap: 4px; padding: 4px 8px;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
}
.lang__btn {
  border: 0; background: none; cursor: pointer; font-family: var(--font-body);
  font-size: .88rem; font-weight: 600; color: var(--ink-soft); padding: 5px 9px; border-radius: 999px; transition: .2s;
}
.lang__btn:hover { color: var(--saffron-dark); }
.lang__btn.is-on { background: linear-gradient(135deg, var(--saffron), var(--maroon)); color: #fff; }
.lang__sep { color: var(--line); }

.burger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; padding: 11px 10px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; width: 100%; height: 2.4px; border-radius: 2px; background: var(--maroon); flex: none; transition: .25s; }
.header.is-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------------------------------------------------------------------- HERO */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media, .hero__scrim { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  background:
    radial-gradient(120% 90% at 22% 30%, rgba(74,15,15,.42), transparent 62%),
    linear-gradient(180deg, rgba(74,15,15,.6) 0%, rgba(74,15,15,.52) 42%, rgba(74,15,15,.82) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(70px, 12vh, 130px); max-width: 820px; }
.hero__kicker {
  display: inline-block; font-size: .84rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; margin-bottom: 20px; color: #FFE8C6;
  max-width: 100%; white-space: normal; word-break: break-word;
}
.hero__om { font-size: 3rem; color: var(--gold-soft); line-height: 1; margin-bottom: 6px; font-family: Georgia, serif; text-shadow: 0 3px 20px rgba(0,0,0,.4); }
.hero h1 { color: #fff; text-shadow: 0 4px 26px rgba(0,0,0,.42); margin-bottom: .2em; }
.hero__tag { font-family: var(--font-head); font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--gold-soft); font-style: italic; margin-bottom: .7em; }
.hero__text { font-size: 1.06rem; color: rgba(255,255,255,.9); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ----------------------------------------------------------------- SECTIONS */
.section { padding-block: clamp(52px, 8vw, 92px); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--cream, .section--paper { position: relative; }
.sec-head { margin-bottom: 30px; }
.sec-head--center { text-align: center; }
.sec-head h2 { position: relative; display: inline-block; padding-bottom: .28em; }
.sec-head--center h2::after, .sec-head:not(.sec-head--center) h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 62px; height: 3.5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.sec-head--center h2::after { left: 50%; transform: translateX(-50%); }
.sec-sub { color: var(--ink-soft); max-width: 640px; margin: -12px 0 30px; }
.sec-head--center + .sec-sub { margin-inline: auto; text-align: center; }

.divider { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 6px 0; color: var(--gold); background: var(--paper); }
.section--cream + .divider, .section--paper + .divider { background: inherit; }
.divider--sm { padding: 0; }
.divider__line { flex: 1; max-width: 210px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* PAGE HEAD (inner pages) */
.pagehead {
  position: relative; padding-block: clamp(54px, 9vw, 96px) clamp(40px, 6vw, 64px);
  background:
    radial-gradient(90% 140% at 82% 0%, rgba(212,160,23,.22), transparent 60%),
    linear-gradient(135deg, var(--maroon-deep), var(--maroon) 55%, var(--saffron-dark));
  color: #fff; overflow: hidden;
}
.pagehead::after {
  content: "ॐ"; position: absolute; right: 4%; bottom: -34px; font-family: Georgia, serif;
  font-size: clamp(8rem, 20vw, 15rem); color: rgba(255,255,255,.07); line-height: 1; pointer-events: none;
}
.pagehead h1 { color: #fff; margin-bottom: .3em; }
.pagehead__text { color: rgba(255,255,255,.9); max-width: 680px; margin: 0; }

/* ----------------------------------------------------------------- GALLERY */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery__item {
  margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
}
.gallery__item img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .8s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(74,15,15,.86)); color: #fff;
  font-family: var(--font-head); font-size: 1.1rem;
}
.gallery__item:nth-child(3n+2) img { aspect-ratio: 4 / 3; }

/* ---------------------------------------------------------------- SPLIT BLOCKS */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(26px, 5vw, 56px); align-items: center; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split__media--portrait img { aspect-ratio: 3 / 4; }
.split__body p { color: var(--ink-soft); }
.split--form { align-items: start; }
.split--form .split__body { align-self: start; }

/* ------------------------------------------------------------------ CARDS */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { margin: 8px 0 0; }
.card__body p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.card__body > .chip { align-self: flex-start; }
.card__body .impact { color: var(--saffron-dark); font-weight: 600; margin-top: auto; padding-top: 8px; }
.card--cause .card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(74,15,15,.28)); }

.tile { margin: 0; border-radius: var(--r); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s; }
.tile:hover img { transform: scale(1.06); }
.tile figcaption { padding: 13px 16px; font-size: .92rem; color: var(--ink-soft); }

/* -------------------------------------------------------------- HIGHLIGHTS */
.highlights { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.hcard {
  position: relative; padding: 28px 26px; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hcard__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron-dark); font-weight: 600; }
.hcard h3 { margin: 10px 0 8px; }
.hcard__time { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--maroon); margin: 0 0 8px; }
.hcard p { color: var(--ink-soft); font-size: .95rem; }
.hcard .link-arrow, .hcard .btn { margin-top: auto; }
.hcard--donate { background: linear-gradient(150deg, var(--maroon), var(--saffron-dark)); border: 0; color: #fff; }
.hcard--donate h3 { color: #fff; }
.hcard--donate .hcard__label { color: var(--gold-soft); }
.hcard--donate p { color: rgba(255,255,255,.88); }
.hcard--event { background: linear-gradient(150deg, #fff, var(--cream-2)); }
.hcard::before { content: ""; position: absolute; top: -42px; right: -42px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(212,160,23,.22), transparent 70%); }

/* ------------------------------------------------------------------ TIMELINE */
.timeline { list-style: none; margin: 34px 0 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 100px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--saffron), var(--maroon));
  opacity: .5;
}
.timeline__item { display: grid; grid-template-columns: 92px 1fr; gap: 30px; align-items: start; margin-bottom: 26px; position: relative; }
.timeline__year { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--saffron-dark); text-align: right; padding: 16px 20px 0 0; }
.timeline__body {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.timeline__body::before {
  content: ""; position: absolute; left: -32px; top: 24px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold);
}
.timeline__body h3 { margin-bottom: .25em; }
.timeline__body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* -------------------------------------------------------------- MAHARAJ BLOCK */
.maharaj__name { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: .15em; }
.maharaj__role { color: var(--saffron-dark); font-weight: 600; margin-bottom: 1em; }
.quote {
  margin: 26px 0 0; padding: 22px 26px; border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--cream-2), #fff); border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-head); font-size: 1.12rem; font-style: italic; color: var(--maroon);
}
.seva-block { margin-top: 54px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px clamp(20px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 26px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
  background: rgba(232,113,10,.14); color: var(--saffron-dark);
}

/* ------------------------------------------------------------- EVENT BANNER */
.event-banner {
  background: linear-gradient(140deg, var(--maroon-deep), var(--maroon) 60%, var(--saffron-dark));
  color: #fff; padding-block: clamp(44px, 7vw, 76px); position: relative; overflow: hidden;
}
.event-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 18% 20%, rgba(212,160,23,.3), transparent 42%),
                    radial-gradient(circle at 88% 80%, rgba(232,113,10,.3), transparent 45%);
}
.event-banner__inner { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 5vw, 52px); align-items: center; }
.event-banner__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.event-banner__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.event-banner h2 { color: #fff; }
.event-banner p { color: rgba(255,255,255,.9); }
.event-banner__date { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gold-soft); }

.countdown { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 26px; max-width: 520px; }
.cd {
  text-align: center; padding: 14px 6px; border-radius: var(--r);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(4px);
}
.cd__num { display: block; font-family: var(--font-head); font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 700; color: var(--gold-soft); line-height: 1; }
.cd__lab { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 7px; }

/* ------------------------------------------------------------------- TABLES */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
.table { width: 100%; border-collapse: collapse; min-width: 560px; }
.table th, .table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.table th { background: linear-gradient(135deg, var(--cream-2), #fff); font-family: var(--font-head); color: var(--maroon); font-size: 1rem; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: rgba(212,160,23,.07); }
.table td strong { color: var(--maroon); }

/* ---------------------------------------------------------- TIMINGS + BADGE */
.badge-wrap { margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 12px; padding: 13px 22px; border-radius: 999px;
  font-weight: 600; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12);
  color: #fff; backdrop-filter: blur(6px);
}
.badge--open { background: rgba(34, 150, 83, .28); border-color: rgba(120, 240, 170, .5); }
.badge--closed { background: rgba(160, 30, 30, .3); border-color: rgba(255, 150, 150, .45); }
.badge__dot { width: 11px; height: 11px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2s infinite; }
.badge--open .badge__dot { background: #7CF1A8; }
.badge--closed .badge__dot { background: #FF9B9B; animation: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(124,241,168,.6); } 70% { box-shadow: 0 0 0 12px rgba(124,241,168,0); } 100% { box-shadow: 0 0 0 0 rgba(124,241,168,0); } }
.badge__sub { font-weight: 500; opacity: .9; font-size: .92rem; }
.badge__live { display: inline-flex; opacity: .8; }
.badge-note { color: rgba(255,255,255,.8); font-size: .9rem; margin: 14px 0 0; max-width: 560px; }

.timing-grid { display: grid; grid-template-columns: repeat(2,minmax(0, 1fr)); gap: 20px; }
.timing {
  display: flex; gap: 20px; align-items: flex-start; padding: 22px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.timing:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.timing__time {
  flex: none; min-width: 116px; text-align: center; font-family: var(--font-head); font-weight: 700;
  font-size: 1.15rem; color: #fff; padding: 12px 10px; border-radius: var(--r-sm);
  background: linear-gradient(140deg, var(--saffron), var(--maroon)); line-height: 1.25;
}
.timing__time span { display: block; font-size: .82rem; font-weight: 500; opacity: .9; }
.timing__body h3 { margin-bottom: .2em; }
.timing__body p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

.live {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); color: #fff;
  background: linear-gradient(140deg, var(--maroon-deep), var(--maroon) 60%, var(--saffron-dark));
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.live::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(212,160,23,.32), transparent 45%); }
.live__body { position: relative; max-width: 620px; }
.live h2 { color: #fff; margin-bottom: .25em; }
.live p { color: rgba(255,255,255,.9); margin: 0; }
.live .btn { position: relative; background: #fff; color: var(--maroon); box-shadow: var(--shadow); }
.live .btn:hover { background: var(--gold-soft); color: var(--maroon-deep); }

/* ----------------------------------------------------------------- COUNTERS */
.counters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.counter { text-align: center; padding: 30px 16px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.counter__num { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; color: var(--saffron-dark); line-height: 1.1; }
.counter__lab { display: block; color: var(--ink-soft); font-size: .92rem; margin-top: 8px; }

/* ----------------------------------------------------------------- DONATION */
.donate { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px clamp(18px, 3vw, 30px); box-shadow: var(--shadow-sm); }
.panel h3 { margin-bottom: .5em; }
.panel--trust { background: linear-gradient(140deg, var(--cream-2), #fff); margin-top: 22px; }
.donate__side { display: grid; gap: 22px; }
.donate__qr { text-align: center; }
.qr-frame {
  display: inline-block; padding: 16px; margin: 8px 0 16px; border-radius: var(--r); background: #fff;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
}
.qr-frame img { width: 260px; height: 260px; }
.copyline { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.copyline code { background: var(--cream-2); padding: 9px 15px; border-radius: 999px; font-weight: 600; color: var(--maroon); word-break: break-all; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bank { list-style: none; margin: 0 0 18px; padding: 0; }
.bank li { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); flex-wrap: wrap; }
.bank li:last-child { border-bottom: 0; }
.bank__lab { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); font-weight: 600; }
.bank__val { display: inline-flex; align-items: center; gap: 8px; }
.bank__val code { color: var(--maroon); font-weight: 600; }
.iconbtn { border: 1.5px solid var(--line); background: #fff; color: var(--maroon); width: 34px; height: 34px; border-radius: 10px; display: inline-grid; place-items: center; cursor: pointer; transition: .2s; flex: none; }
.iconbtn:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }

/* -------------------------------------------------------------------- FORMS */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.form__row { display: flex; flex-direction: column; gap: 7px; }
.form__row--full { grid-column: 1 / -1; }
.form label { font-size: .87rem; font-weight: 600; color: var(--maroon); }
.form input, .form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: .2s; width: 100%;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--saffron); background: #fff; box-shadow: 0 0 0 4px rgba(232,113,10,.12); }
.form textarea { resize: vertical; }
.form button { grid-column: 1 / -1; }
.form__ok { grid-column: 1 / -1; margin: 6px 0 0; padding: 13px 16px; border-radius: var(--r-sm); background: rgba(34,150,83,.1); color: #1c6b3c; font-weight: 600; font-size: .94rem; }

/* ------------------------------------------------------------------ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: start; }
.contact-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list__ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--cream-2), #fff); color: var(--saffron-dark); border: 1px solid var(--line);
}
.contact-list__lab { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 600; }
.contact-list a { font-weight: 500; }
.reach { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.reach:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.reach__mode { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--saffron-dark); font-weight: 600; }
.reach h3 { margin: 9px 0 6px; font-size: 1.1rem; }
.reach p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.map-band { padding-block: clamp(30px, 5vw, 56px); background: var(--paper); }
.map-band iframe { width: 100%; height: clamp(300px, 44vh, 460px); border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow); filter: saturate(110%); }

/* ------------------------------------------------------------------- FOOTER */
.footer { background: linear-gradient(170deg, var(--maroon-deep), #2c0a0a); color: rgba(255,255,255,.82); padding-top: clamp(44px, 6vw, 68px); }
.footer h3 { color: var(--gold-soft); font-size: 1.06rem; margin-bottom: 1em; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.4fr; gap: clamp(26px, 4vw, 52px); padding-bottom: 40px; }
.brand--foot .brand__name { color: #fff; }
.foot__about { font-size: .93rem; color: rgba(255,255,255,.72); margin: 16px 0; max-width: 340px; }
.foot__social { display: flex; gap: 12px; }
.foot__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); transition: .25s;
}
.foot__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-deep); transform: translateY(-3px); }
.foot__links, .foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot__links a, .foot__link { color: rgba(255,255,255,.8); font-size: .94rem; }
.foot__links a:hover, .foot__link:hover { color: var(--gold-soft); }
.foot__contact { display: flex; gap: 11px; align-items: flex-start; }
.foot__ico { color: var(--gold); flex: none; margin-top: 3px; }
.foot__bar { border-top: 1px solid rgba(255,255,255,.13); padding-block: 20px; font-size: .86rem; color: rgba(255,255,255,.6); text-align: center; }

/* -------------------------------------------------------- FLOATING + TOAST */
.whatsapp {
  position: fixed; right: 20px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42); transition: transform .25s;
}
.whatsapp:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 26px); z-index: 90;
  background: var(--maroon); color: #fff; padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------------------------------------------------------------- REVEAL ANIM */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .8s cubic-bezier(.2, .7, .25, 1); will-change: opacity, transform; }
.reveal-right[data-reveal] { transform: translateX(64px); }
.reveal-left[data-reveal] { transform: translateX(-64px); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------- RESPONSIVE */
@media (max-width: 1080px) {
  .nav { gap: 0; }
  .nav__link { padding: 9px 9px; font-size: .9rem; }
  .brand__name { font-size: .98rem; }
}
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2,minmax(0, 1fr)); }
  .highlights { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .donate, .contact-grid, .event-banner__inner { grid-template-columns: 1fr; }
  .event-banner__media { order: -1; }
  .ticks { grid-template-columns: 1fr; }
}

/* --- mobile navigation --- */
@media (max-width: 1240px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--head-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 18px 22px;
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.7,.25,1);
    max-height: calc(100vh - var(--head-h)); overflow-y: auto; margin: 0;
  }
  .header.is-open .nav { transform: translateY(0); }
  .nav__link { padding: 15px 14px; border-radius: var(--r-sm); border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: rgba(232,113,10,.1); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .gallery { grid-template-columns: minmax(0, 1fr); }
  .gallery__item img, .gallery__item:nth-child(3n+2) img { aspect-ratio: 16 / 11; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .timing-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 9px; }
  .timeline__item { grid-template-columns: 1fr; gap: 10px; padding-left: 34px; }
  .timeline__year { text-align: left; padding-top: 0; }
  .timeline__body::before { left: -32px; }
  .form { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(2,minmax(0, 1fr)); }
  .foot__grid { grid-template-columns: 1fr; }
  .mobile-only { display: inline-flex !important; }
  .hero { min-height: 92vh; }
  .hero__cta .btn { flex: 1 1 auto; }
  .whatsapp { width: 52px; height: 52px; right: 14px; bottom: 16px; }
  .bank li { flex-direction: column; align-items: flex-start; gap: 6px; }
  .badge { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .counters { grid-template-columns: 1fr; }
  .lang { padding: 3px 5px; }
  .lang__btn { padding: 5px 7px; font-size: .82rem; }
  .brand__tag { display: none; }
  .brand__logo { width: 40px; height: 40px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 12px 18px; font-size: .92rem; }
}

/* ------------------------------------------------------------------ PRINT */
@media print {
  .header, .whatsapp, .toast, .hero__scrim { display: none !important; }
  body { background: #fff; }
}
/* ===== Header redesign: logo far left, one-line links, clean spacing ===== */
.header__inner.container {
  max-width: none;                              /* lets the logo sit at the far left */
  padding-inline: clamp(16px, 2.5vw, 48px);
  gap: clamp(14px, 2vw, 36px);
}
.brand__name { white-space: nowrap; }
.nav { justify-content: center; gap: clamp(2px, .5vw, 8px); }
.nav__link { white-space: nowrap; }             /* keeps "Contact Us" on one line */

/* Laptops: hide tagline, slightly tighter links */
@media (max-width: 1400px) {
  .brand__tag { display: none; }
  .brand__name { font-size: .98rem; }
  .nav__link { padding: 9px 10px; font-size: .92rem; }
  .nav__link.is-active::after { left: 10px; right: 10px; }
}

/* Tablet and phone menu: donate button hides on phones only */
@media (max-width: 880px) { .header__donate { display: none; } }
@media (max-width: 720px) { .brand__name { white-space: normal; } }
