:root {
  --maroon: #720018;
  --burgundy: #4a0010;
  --gold: #d4a72c;
  --gold-light: #f1d98a;
  --cream: #fff8e8;
  --off-white: #fffdf8;
  --ink: #241a16;
  --ink-soft: #5c4a3f;
  --line: color-mix(in srgb, var(--gold) 42%, transparent);
  --shadow: 0 18px 50px rgba(74, 0, 16, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --font-bn: "Tiro Bangla", "Noto Serif Bengali", serif;
  --font-script: "Montserrat", "Segoe UI", sans-serif;
  --max: 1180px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--burgundy);
  padding: 0.7rem 1rem;
  z-index: 1000;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.kicker::before, .kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--burgundy);
  margin-bottom: 0.85rem;
}
.section-lede { max-width: 42rem; color: var(--ink-soft); font-size: 1.08rem; }
.center { text-align: center; }
.center .section-lede { margin-inline: auto; }
.tbc {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  vertical-align: middle;
}
.section { position: relative; padding: clamp(4.2rem, 8vw, 7rem) 0; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--off-white); }
.section-maroon {
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 167, 44, 0.16), transparent 42%),
    linear-gradient(180deg, var(--burgundy), #32000b);
  color: var(--cream);
}
.section-maroon .section-title { color: var(--cream); }
.section-maroon .section-lede { color: color-mix(in srgb, var(--cream) 82%, var(--gold-light)); }
.alpana { position: relative; }
.alpana::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23D4A72C' stroke-width='0.8'%3E%3Ccircle cx='90' cy='90' r='22'/%3E%3Cpath d='M90 18c8 22 8 38 0 56C82 56 82 40 90 18zm0 144c8-22 8-38 0-56-8 18-8 34 0 56zM18 90c22-8 38-8 56 0-18 8-34 8-56 0zm144 0c-22-8-38-8-56 0 18 8 34 8 56 0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-link:focus-visible, .filter-btn:focus-visible, .amount-chip:focus-visible, .gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--burgundy);
  box-shadow: 0 8px 24px rgba(212, 167, 44, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: color-mix(in srgb, var(--gold) 70%, white 20%);
}
.btn-maroon { background: var(--maroon); color: var(--cream); }
.btn-hero-maroon {
  background: color-mix(in srgb, var(--maroon) 78%, transparent);
  color: var(--cream);
  border-color: color-mix(in srgb, var(--cream) 48%, transparent);
}
.btn-outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-wide { min-width: 180px; }
.flash {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
}
.flash-success { background: #e8f6ea; color: #1b4d24; }
.flash-error { background: #fdecea; color: #7a1c16; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--burgundy);
  box-shadow: 0 8px 24px rgba(36, 8, 12, 0.25);
}
.site-header.is-over-hero {
  position: fixed;
  width: 100%;
  background: transparent;
}
.site-header.is-scrolled { background: var(--burgundy); }
.site-header.is-over-hero.is-scrolled,
.site-header.is-over-hero .header-inner {
  background: color-mix(in srgb, var(--burgundy) 78%, transparent);
}
.site-header.is-over-hero .header-inner {
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  width: min(1360px, calc(100% - 1.5rem));
  margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
  background: var(--cream);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}
.brand-short {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-desktop { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  padding: 0.45rem 0.52rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-radius: 999px;
}
.nav-link:hover { color: var(--cream); }
.nav-link[aria-current="page"] {
  color: var(--cream);
  box-shadow: inset 0 -2px 0 var(--gold);
  border-radius: 0;
}
.nav-link.is-contribute {
  margin-left: 0.45rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--burgundy) !important;
  padding-inline: 1rem;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  top: 22px;
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.nav-panel { display: none; }
.header-cta {
  min-height: 42px;
  padding: 0.45rem 1.1rem;
  margin-left: 0.6rem;
  font-size: 0.72rem;
  border-radius: 8px;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: #3a000c;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 16%;
}
.hero-shade {
  background:
    radial-gradient(circle at 16% 18%, rgba(241, 217, 138, 0.18), transparent 28%),
    linear-gradient(90deg, #3a000c 0%, rgba(58, 0, 12, 0.92) 34%, rgba(58, 0, 12, 0.42) 58%, rgba(58, 0, 12, 0.12) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 38rem) 1fr;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 4.5rem;
  min-width: 0;
}
.hero-copy { min-width: 0; max-width: 100%; }
.hero-actions .btn { border-radius: 10px; }
.hero-bn {
  font-family: var(--font-bn);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.hero h1 {
  font-size: clamp(2.05rem, 8vw, 5.4rem);
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  overflow-wrap: anywhere;
}
.hero-org { font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--cream); margin-bottom: 0.45rem; }
.hero-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--cream) 86%, var(--gold));
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.idol-frame {
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  padding: 14px;
  background: conic-gradient(from 180deg, var(--gold), #8a6a1e, var(--gold-light), var(--gold));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: floaty 8s ease-in-out infinite;
}
.idol-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  background: #2a0009;
  border: 6px solid var(--burgundy);
  color: var(--gold-light);
}
.idol-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
}
.countdown {
  background:
    url("/assets/images/decor/corner.svg") left center / 110px no-repeat,
    url("/assets/images/decor/corner.svg") right center / 110px no-repeat,
    linear-gradient(180deg, #fff8e8, #f7ead0);
  color: var(--burgundy);
  padding: 1.85rem 0;
  border-block: 1px solid var(--line);
}
.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.countdown-copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.countdown-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.countdown-copy h2 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--burgundy);
}
.diya-mark {
  width: 36px;
  height: 36px;
  color: var(--maroon);
  flex-shrink: 0;
}
.diya-mark svg { width: 28px; height: 28px; }
.timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 160px));
  justify-content: center;
  gap: 1rem;
}
.timer-inline { gap: 0; }
.timer-inline .timer-cell {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.2rem 1.1rem;
  border-right: 1px solid var(--line);
}
.timer-inline .timer-cell:last-child { border-right: 0; }
.timer-cell {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 0.5rem 1rem;
  text-align: center;
}
.timer-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--maroon);
  line-height: 1;
}
.timer-label {
  margin-top: 0.45rem;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.about-grid, .contact-grid, .contribute-grid, .split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.contribute-side {
  display: grid;
  gap: 1.4rem;
}
.bank-card h3 { margin-bottom: 0.85rem; }
.banker-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  margin: 0 0 1rem;
  box-shadow: 0 8px 20px rgba(74, 0, 16, 0.08);
}
.banker-logo img {
  display: block;
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}
.file-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.upi-form {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.script-line {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  color: var(--maroon);
  margin-top: 1.4rem;
  line-height: 1.45;
}
.emblem-wrap { display: grid; place-items: center; }
.emblem-ring {
  width: min(380px, 100%);
  aspect-ratio: 1;
  padding: 18px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--gold), #8a6a1e, var(--gold-light), var(--gold));
  box-shadow: var(--shadow);
}
.emblem-ring img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: var(--cream); }
.ritual-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.ritual-icon {
  text-align: center;
  background: transparent;
  border: 0;
  padding: 0;
}
.ritual-icon .icon-badge {
  width: 86px;
  height: 86px;
  margin: 0 auto 0.7rem;
  border-radius: 18px;
  background: var(--off-white);
  border: 1.5px solid color-mix(in srgb, var(--maroon) 28%, var(--gold) 22%);
  color: var(--maroon);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(74, 0, 16, 0.06);
}
.ritual-icon svg { width: 32px; height: 32px; }
.ritual-icon h3 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.card {
  background: var(--off-white);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: 0 10px 30px rgba(74, 0, 16, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: color-mix(in srgb, var(--gold) 16%, var(--cream));
  color: var(--maroon);
}
.icon-badge svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.28rem; color: var(--burgundy); margin-bottom: 0.35rem; }
.card-meta { font-size: 0.82rem; color: var(--maroon); margin-bottom: 0.45rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.featured-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) 1.25rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 167, 44, 0.2), transparent 46%),
    var(--burgundy) url("/assets/images/decor/mandala.svg") center/min(720px, 90%) no-repeat;
  color: var(--cream);
}
.featured-band h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1rem; }
.featured-band p {
  max-width: 38rem;
  margin: 0 auto 1.8rem;
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--cream) 86%, var(--gold-light));
}
.schedule-note { margin-top: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }
.center-lede { margin-inline: auto; text-align: center; }
.schedule-intro { text-align: center; margin-bottom: 2.8rem; }
.schedule-intro .section-lede { margin-inline: auto; }
.schedule-band {
  background:
    radial-gradient(circle at 80% 12%, rgba(241, 217, 138, 0.16), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(212, 167, 44, 0.12), transparent 32%),
    linear-gradient(180deg, var(--burgundy), #32000b);
}
.puja-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0.4rem 0 0;
  max-width: 740px;
  position: relative;
}
.puja-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), color-mix(in srgb, var(--maroon) 70%, var(--gold)));
  border-radius: 99px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.35rem;
  align-items: start;
  position: relative;
  padding-bottom: 1.85rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-rail {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}
.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--burgundy);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold), 0 10px 24px rgba(74, 0, 16, 0.18);
  position: relative;
  z-index: 1;
}
.timeline-node svg { width: 22px; height: 22px; }
.timeline-item.is-last .timeline-node {
  background: var(--maroon);
  color: var(--gold-light);
  box-shadow: 0 0 0 2px var(--gold-light), 0 10px 24px rgba(74, 0, 16, 0.22);
}
.timeline-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem 1.45rem 1.3rem;
  box-shadow: var(--shadow);
}
.timeline-date {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.timeline-date span {
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: none;
  margin-left: 0.45rem;
}
.timeline-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--burgundy);
  margin-bottom: 0.45rem;
}
.timeline-card p { color: var(--ink-soft); margin: 0; }
.puja-timeline.tone-dark::before {
  background: linear-gradient(180deg, var(--gold-light), var(--gold), rgba(241, 217, 138, 0.25));
}
.puja-timeline.tone-dark .timeline-node {
  border-color: #4a0010;
  box-shadow: 0 0 0 2px var(--gold), 0 8px 22px rgba(0, 0, 0, 0.28);
}
.puja-timeline.tone-dark .timeline-item.is-last .timeline-node {
  background: var(--gold-light);
  color: var(--burgundy);
  box-shadow: 0 0 0 2px var(--gold-light), 0 8px 22px rgba(0, 0, 0, 0.28);
}
.puja-timeline.tone-dark .timeline-card {
  background: color-mix(in srgb, #2a0009 72%, transparent);
  border-color: color-mix(in srgb, var(--gold) 38%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.puja-timeline.tone-dark .timeline-date { color: var(--gold-light); }
.puja-timeline.tone-dark .timeline-date span { color: color-mix(in srgb, var(--cream) 70%, var(--gold)); }
.puja-timeline.tone-dark .timeline-card h3 { color: var(--cream); }
.puja-timeline.tone-dark .timeline-card p { color: color-mix(in srgb, var(--cream) 82%, var(--gold)); }
.puja-timeline.is-compact { max-width: none; }
.puja-timeline.is-compact .timeline-item { grid-template-columns: 44px 1fr; gap: 0.95rem; padding-bottom: 0.95rem; }
.puja-timeline.is-compact::before { left: 21px; }
.puja-timeline.is-compact .timeline-node { width: 44px; height: 44px; }
.puja-timeline.is-compact .timeline-node svg { width: 18px; height: 18px; }
.puja-timeline.is-compact .timeline-card { padding: 0.85rem 1.05rem 0.95rem; border-radius: 16px; box-shadow: none; }
.puja-timeline.is-compact .timeline-card h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.puja-timeline.is-compact .timeline-card p { font-size: 0.9rem; }
.schedule-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.day-card {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  min-width: 0;
  overflow: hidden;
}
.day-head { background: var(--maroon); color: var(--cream); padding: 1.1rem 1.15rem 1rem; position: relative; }
.day-head span { display: block; color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.day-head h3 { font-size: 1.25rem; margin: 0.2rem 0; letter-spacing: 0.02em; }
.day-head small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.day-head .day-icon {
  position: absolute;
  right: 0.95rem;
  top: 1rem;
  width: 28px;
  height: 28px;
  color: var(--gold-light);
}
.day-head .day-icon svg { width: 28px; height: 28px; }
.day-card ol { list-style: none; margin: 0; padding: 0.4rem 0 0.7rem; }
.day-card li { padding: 0.85rem 1.15rem; border-top: 1px solid color-mix(in srgb, var(--gold) 22%, transparent); }
.day-card strong { display: block; color: var(--burgundy); }
.day-card em { font-style: normal; font-size: 0.82rem; color: var(--maroon); }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.6rem 0 1.3rem; }
.filter-btn, .amount-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-btn.is-active, .amount-chip.is-active {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}
.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.event-card { display: grid; grid-template-columns: 180px minmax(0, 1fr); min-width: 0; overflow: hidden; padding: 0; }
.event-visual {
  min-height: 180px;
  background: linear-gradient(160deg, rgba(114, 0, 24, 0.18), rgba(212, 167, 44, 0.18)), var(--cream) url("/assets/images/decor/lotus.svg") center/60% no-repeat;
  overflow: hidden;
}
.event-visual img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-visual img, .gallery-item:hover img { transform: scale(1.06); }
.event-body { padding: 1.2rem 1.25rem 1.3rem; }
.event-cat { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.community-grid, .budget-grid, .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
.contribute-panel, .qr-panel, .contact-card {
  background: var(--off-white);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.pay-by { margin: 0 0 1.15rem; }
.pay-by-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.pay-by-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pay-by-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 5.35rem;
  padding: 0.5rem 0.55rem 0.4rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--gold) 36%, transparent);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(74, 0, 16, 0.05);
}
.pay-by-logo {
  display: grid;
  place-items: center;
  height: 28px;
}
.pay-by-logo svg {
  display: block;
  height: 22px;
  width: auto;
  max-width: 92px;
}
.pay-by-logo.is-mark svg { height: 26px; }
.pay-by-logo.is-wide svg { height: 20px; max-width: 108px; }
.pay-by-name {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-align: center;
}
.amount-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.1rem 0; }
.custom-amount { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.custom-amount input, .form-grid input, .form-grid textarea, .form-grid select, .subscribe-form input, .donor-fields input, .donor-fields select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: var(--cream);
  color: var(--ink);
}
.disclaimer { margin-top: 0.9rem; font-size: 0.88rem; color: var(--ink-soft); }
.donor-fields {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
[hidden] { display: none !important; }
.donor-intro { margin: 1.1rem 0 0.85rem; font-size: 0.92rem; }
.donor-fields label, .custom-amount label { font-size: 0.88rem; font-weight: 600; color: var(--burgundy); display: block; margin-bottom: 0.3rem; }
.donor-fields label span { font-weight: 400; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }
.donor-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.donate-error { color: #8a1c12; font-weight: 600; margin: 0.7rem 0 0; }
.pay-lines h3 { color: var(--burgundy); font-size: 1.15rem; margin: 1rem 0 0.8rem; }
.qr-box {
  max-width: 280px;
  margin: 0.6rem auto 1rem;
  border: 1px dashed var(--gold);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--maroon);
  background: var(--cream);
  overflow: hidden;
}
.qr-box.has-qr {
  padding: 0;
  border-style: solid;
  background: #fff;
}
.qr-box img {
  width: 100%;
  height: auto;
  display: block;
}
.pay-lines { font-size: 0.95rem; color: var(--ink-soft); }
.pay-lines strong { color: var(--burgundy); }
.budget-card { text-align: center; }
.budget-card .amount { font-family: var(--font-display); font-size: 1.7rem; color: var(--maroon); margin-top: 0.35rem; }
.budget-total {
  margin-top: 1.8rem;
  text-align: center;
  padding: 1.3rem;
  border-radius: 18px;
  background: var(--burgundy);
  color: var(--cream);
}
.budget-total strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  display: block;
}
.sponsor-block { margin-top: 2rem; }
.sponsor-block h3 {
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.9rem;
}
.sponsor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.sponsor-card {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  background: var(--off-white);
  color: var(--ink-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--cream);
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.ph-art {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff3d4, #f3e0b0 40%, #ead3a0);
  color: var(--burgundy);
  padding: 1rem;
}
.ph-art span { font-family: var(--font-display); font-size: 1.3rem; }
.gallery-item .photo-credit {
  position: absolute;
  inset: auto 0 0;
  padding: 0.45rem 0.7rem;
  background: linear-gradient(transparent, rgba(36, 8, 12, 0.72));
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(920px, 92vw); }
.lightbox::backdrop { background: rgba(20, 4, 8, 0.82); }
.lightbox-inner { background: var(--burgundy); color: var(--cream); border-radius: 18px; overflow: hidden; }
.lightbox img, .lightbox .ph-art { width: 100%; max-height: 72vh; object-fit: contain; background: #1a0006; }
.lightbox-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.9rem 1rem; }
.lightbox-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.lightbox-copy .photo-credit {
  font-size: 0.82rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--cream) 82%, var(--gold-light));
}
.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--gold) 18%, var(--cream));
  border: 2px solid var(--gold);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo svg { width: 42px; height: 42px; }
.team-grid .card { text-align: center; }
.form-grid { display: grid; gap: 0.8rem; }
.form-grid label { font-size: 0.88rem; font-weight: 600; color: var(--burgundy); }
.form-grid label span { font-weight: 400; color: var(--ink-soft); }
.page-hero {
  background:
    linear-gradient(180deg, rgba(74, 0, 16, 0.72), rgba(36, 8, 12, 0.88)),
    var(--page-banner, url("/assets/images/gallery/maa-jagadhatri-portrait.webp")) center 18%/cover;
  color: var(--cream);
  padding: 3.5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); margin-bottom: 0.6rem; }
.page-hero p {
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: 0.25rem;
  color: color-mix(in srgb, var(--cream) 84%, var(--gold-light));
}
.flat-page .wrap { width: min(1280px, calc(100% - 2rem)); }
.flat-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 12;
  background: #f4eee8;
  border-bottom: 1px solid var(--line);
}
.flat-jump-row {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.7rem 0;
  scrollbar-width: thin;
}
.flat-jump-row a {
  flex: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding: 0.4rem 0.7rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ead9c8;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}
.flat-jump-row a em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--burgundy);
}
.flat-jump-row a:hover { background: var(--maroon); color: #fff; }
.flat-jump-row.is-wrap {
  flex-wrap: wrap;
  overflow: visible;
}
.contribute-report {
  display: grid;
  gap: 1.2rem;
  background: var(--off-white);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 24px;
  padding: 1.5rem 1.6rem 1.4rem;
  box-shadow: var(--shadow);
}
.contribute-report-copy p { margin-bottom: 1rem; }
.contribute-report-label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.flat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.flat-legend i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-right: 0.4rem;
  vertical-align: -2px;
}
.flat-legend i.is-empty { background: #cfc9c2; }
.flat-legend i.is-paid { background: #1f8a46; }
.flat-summary {
  margin: 0 0 1.6rem;
  font-weight: 600;
  color: var(--burgundy);
}
.flat-block { margin-bottom: 2.2rem; scroll-margin-top: calc(var(--header-h) + 3.2rem); }
.flat-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  margin-bottom: 0.7rem;
}
.flat-block-head h2 { font-size: 1.2rem; color: var(--burgundy); margin: 0; }
.flat-block-head p { margin: 0; color: var(--ink-soft); font-weight: 600; font-size: 0.88rem; }
.flat-block-sum {
  margin-left: auto;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
}
.contribute-report-total {
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 1rem;
}
.flat-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.45rem;
}
.flat-box {
  min-height: 72px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0.4rem 0.3rem;
  line-height: 1.15;
}
.flat-box strong { font-size: 0.82rem; }
.flat-box em { display: block; font-style: normal; font-size: 0.68rem; font-weight: 700; margin-top: 0.2rem; }
.flat-box.is-empty {
  background: #cfc9c2;
  color: #5a534c;
}
.flat-box.is-paid {
  background: #1f8a46;
  color: #fff;
}
.flat-cta { margin: 1.4rem 0 0; }
.admin-body .flat-jump {
  position: sticky;
  top: 0;
  z-index: 8;
  background: #fff;
  border: 1px solid #efe4d8;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 0.2rem 0.65rem;
}
.admin-body .flat-jump-row { padding: 0.45rem 0; }
.admin-body .flat-block { scroll-margin-top: 4.2rem; }
.admin-body .admin-card > .admin-dash-btn + .admin-dash-btn { margin-top: 0.5rem; }
.info-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.info-item { text-align: center; }
.info-item h3 { font-size: 1.1rem; color: var(--burgundy); margin: 0.4rem 0; }
.info-item p { font-size: 0.92rem; color: var(--ink-soft); }
.site-footer {
  background: var(--burgundy);
  color: color-mix(in srgb, var(--cream) 88%, var(--gold));
  padding: 3.4rem 0 1.4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr; gap: 2rem; }
.footer-brand { display: flex; gap: 0.9rem; align-items: center; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; background: var(--cream); }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); }
.footer-tag { font-family: var(--font-display); font-style: italic; margin-top: 0.85rem; color: var(--gold-light); }
.footer-regn {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--cream) 78%, var(--gold));
}
.footer-col h2 {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-contact { margin-top: 0.9rem; }
.footer-contact a { display: block; padding: 0.12rem 0; color: inherit; }
.footer-contact a:hover { color: var(--gold-light); }
.contact-card a, .info-item a, .legal-copy a { color: var(--maroon); }
.info-item a { display: inline-block; }
.subscribe-form { display: grid; gap: 0.6rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  font-size: 0.88rem;
}
.hero-lamps {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: none;
}
.hero-lamps span {
  position: absolute;
  top: 8px;
  width: 34px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='120' viewBox='0 0 40 120'%3E%3Cpath d='M20 0v42' stroke='%23F1D98A' stroke-width='1.2' opacity='.55'/%3E%3Cellipse cx='20' cy='56' rx='12' ry='7' fill='none' stroke='%23D4A72C' stroke-width='1.4'/%3E%3Cpath d='M20 49c4 8 1 16-2 22' stroke='%23F1D98A' stroke-width='1.8' fill='none'/%3E%3Cellipse cx='20' cy='78' rx='9' ry='5' fill='%23D4A72C' opacity='.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
  animation: floaty 7s ease-in-out infinite;
}
.hero-lamps span:nth-child(1) { left: 3%; }
.hero-lamps span:nth-child(2) { left: 9%; top: 28px; animation-delay: 0.4s; }
.hero-lamps span:nth-child(3) { left: 16%; top: 6px; animation-delay: 0.8s; }
.hero-lamps span:nth-child(4) { left: 23%; top: 34px; animation-delay: 1.1s; }
.hero-lamps span:nth-child(5) { left: 30%; top: 12px; animation-delay: 0.2s; }
.hero-lamps span:nth-child(6) { left: 37%; top: 40px; animation-delay: 1.4s; }
.btn-icon { gap: 0.45rem; }
.btn-icon svg { width: 16px; height: 16px; }
.gold-divided {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.gold-divided::before, .gold-divided::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title.is-lined {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-puja {
  position: relative;
  overflow: hidden;
  background:
    url("/assets/images/decor/mandala.svg") right 4% center / min(360px, 38%) no-repeat,
    var(--cream);
}
.about-puja::after {
  content: "";
  position: absolute;
  left: 26%;
  right: 10%;
  top: 8%;
  bottom: 10%;
  background: url("/assets/images/gallery/maa-jagadhatri-portrait.webp") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.about-copy {
  position: relative;
  z-index: 1;
}
.about-schedule {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.quick-schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.day-card.tone-1 .day-head { background: var(--maroon); }
.day-card.tone-2 .day-head { background: #9a3a12; }
.day-card.tone-3 .day-head { background: #b8861a; color: var(--burgundy); }
.day-card.tone-3 .day-head span,
.day-card.tone-3 .day-head small,
.day-card.tone-3 .day-head .day-icon { color: var(--burgundy); }
.day-card ol li { font-size: 0.92rem; color: var(--ink-soft); }
.schedule-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.schedule-cta { margin-top: 1.1rem; }
.idol-portrait {
  margin: 0 auto 2.4rem;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.idol-portrait img {
  width: 100%;
  display: block;
}
.schedule-cta { margin-top: 1.1rem; }
.give-band {
  border-bottom: 8px solid var(--gold);
}
.give-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.maroon-panel, .bank-panel {
  background: color-mix(in srgb, #2a0009 70%, transparent);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
}
.maroon-panel .btn { margin-top: 0.9rem; }
.maroon-panel h3, .bank-panel h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.bank-panel p { color: color-mix(in srgb, var(--cream) 86%, var(--gold)); margin-bottom: 0.7rem; }
.section-maroon .pay-lines,
.section-maroon .pay-lines strong { color: color-mix(in srgb, var(--cream) 90%, var(--gold)); }
.section-maroon .pay-lines strong { color: var(--gold-light); }
.thank-line {
  color: var(--gold-light) !important;
  margin-top: 1.1rem;
  text-align: left;
}
.section-maroon .donate-widget p,
.section-maroon .custom-amount label,
.section-maroon .donor-fields label,
.section-maroon .disclaimer { color: color-mix(in srgb, var(--cream) 88%, var(--gold)); }
.section-maroon .donor-fields label span { color: color-mix(in srgb, var(--cream) 70%, var(--gold)); }
.section-maroon .donate-error { color: #ffb4a8; }
.section-maroon .custom-amount input,
.section-maroon .donor-fields input,
.section-maroon .donor-fields select {
  background: color-mix(in srgb, #fff 92%, var(--gold-light));
}
.split-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}
.gallery-strip, .sponsor-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}
.gallery-thumb {
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(160deg, #fff3d4, #ead3a0);
  color: var(--burgundy);
  cursor: pointer;
  font-family: var(--font-display);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-thumb:hover img { transform: scale(1.06); }
.info-strip {
  background: #f3e6c8;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.info-strip .icon-badge { margin: 0 auto 0.4rem; }
.social-row { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.social-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--burgundy) !important;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0 !important;
}
.legal-copy { max-width: 46rem; }
.legal-copy h2 { margin: 1.6rem 0 0.6rem; font-size: 1.6rem; color: var(--burgundy); }
.reveal { opacity: 0; transform: translateY(22px); animation: rise 0.8s ease forwards; animation-timeline: view(); animation-range: entry 8% cover 28%; }
@supports not (animation-timeline: view()) { .reveal { opacity: 1; transform: none; } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1180px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: block;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    background: color-mix(in srgb, var(--burgundy) 96%, black);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 1.4rem;
    overflow: auto;
  }
  .site-header.is-open .nav-panel { transform: none; }
  .nav-panel a {
    display: block;
    color: var(--cream);
    font-size: 1.15rem;
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-panel a.is-contribute {
    margin-top: 1rem;
    text-align: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: var(--burgundy);
    font-weight: 700;
  }
  .hero-grid, .about-grid, .contact-grid, .contribute-grid, .split-grid, .footer-grid,
  .about-schedule, .give-grid, .split-gallery { grid-template-columns: 1fr; }
  .ritual-row, .community-grid, .budget-grid, .sponsor-grid, .team-grid, .info-bar { grid-template-columns: repeat(2, 1fr); }
  .quick-schedule { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
  .schedule-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.6rem; }
  .day-card { flex: 0 0 min(82vw, 320px); scroll-snap-align: start; }
}
@media (max-width: 900px) {
  .about-schedule,
  .quick-schedule,
  .event-grid,
  .community-grid,
  .budget-grid,
  .sponsor-grid,
  .team-grid,
  .info-bar {
    grid-template-columns: 1fr;
  }
  .event-card { grid-template-columns: 1fr; }
  .event-visual { height: 200px; min-height: 200px; }
  .event-visual img { height: 100%; }
  .schedule-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .quick-schedule .day-card,
  .day-card {
    min-width: 0;
    width: 100%;
    flex: none;
  }
  .schedule-cta { text-align: center; }
  .schedule-cta .btn { width: 100%; max-width: 22rem; }
  .page-hero { padding: 5.2rem 0 2.6rem; }
  .page-hero p { max-width: 100%; }
}
@media (max-width: 720px) {
  :root { --header-h: 76px; }
  .brand-text { display: none; }
  .hero { min-height: 86svh; }
  .hero-grid { padding-top: calc(var(--header-h) + 1.4rem); gap: 1.4rem; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; max-width: 36rem; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(58, 0, 12, 0.72) 0%, rgba(58, 0, 12, 0.55) 42%, rgba(58, 0, 12, 0.82) 100%);
  }
  .hero-photo img { object-position: 60% 12%; }
  .hero-lamps span:nth-child(n+4) { display: none; }
  .idol-frame { width: min(240px, 68%); }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.45rem); letter-spacing: 0.02em; }
  .hero-org, .hero-tag { overflow-wrap: anywhere; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .timer, .timer-inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timer-inline .timer-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .ritual-row,
  .gallery-grid,
  .gallery-strip,
  .sponsor-track {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: auto; }
  .gallery-grid { grid-auto-rows: 220px; }
  .btn-wide { width: 100%; }
  .pay-by-item { flex: 1 1 calc(33.33% - 0.45rem); min-width: 5rem; }
  .donor-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .idol-frame, .event-visual img, .gallery-item img, .gallery-thumb img, .btn { animation: none; transition: none; opacity: 1; transform: none; }
}

.install-body { background: var(--cream); }
.install-top {
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.85rem 0;
}
.install-top-inner, .install-nav { display: flex; align-items: center; gap: 1.2rem; }
.install-top-inner { justify-content: space-between; flex-wrap: wrap; }
.install-nav a {
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.install-nav a[aria-current="page"], .install-nav a:hover { color: var(--cream); }
.install-main { padding: 2.4rem 0 4rem; }
.install-wrap { max-width: 760px; }
.install-hero { text-align: center; margin-bottom: 1.8rem; }
.install-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--burgundy); margin-bottom: 0.5rem; }
.install-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
}
.install-card h2 { font-size: 1.45rem; color: var(--burgundy); margin-bottom: 0.8rem; }
.check-list, .install-log { list-style: none; margin: 0; padding: 0; }
.check-list li, .install-log li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
  font-size: 0.95rem;
}
.check-list li.is-ok strong { color: #1b4d24; }
.check-list li.is-fail strong { color: #8a1c12; }
.check-list span, .install-log li { color: var(--ink-soft); }
.install-log {
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}
.install-log li { color: color-mix(in srgb, var(--cream) 88%, var(--gold)); border-color: color-mix(in srgb, var(--gold) 28%, transparent); display: block; }
.install-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.1rem; }
.install-confirm {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.install-confirm input { margin-top: 0.3rem; }
.install-foot { text-align: center; color: var(--ink-soft); font-size: 0.85rem; padding: 0 1rem 2rem; }
.mig-table { width: 100%; border-collapse: collapse; margin: 1rem 0 0.4rem; }
.mig-table th, .mig-table td { text-align: left; padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.mig-table td span { display: block; font-size: 0.8rem; color: var(--ink-soft); }
.mig-ok { color: #1b4d24; font-weight: 600; }
.mig-pending { color: #9a3a12; font-weight: 600; }
html:has(.admin-body),
html:has(.admin-login-page) {
  font-size: 15px;
}
.admin-body {
  background: #f6f1ea;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2b211c;
}
.admin-body h1, .admin-body h2 {
  font-family: var(--font-body);
  letter-spacing: 0;
}
.admin-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 248px;
  background: #fff;
  color: #5c4a3f;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 0.9rem 1rem;
  z-index: 40;
  overflow-y: auto;
  border-right: 1px solid #efe4d8;
}
.admin-brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.15rem 0.45rem 1rem;
  margin-bottom: 0.35rem;
}
.admin-brand img { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); }
.admin-brand strong { display: block; color: var(--burgundy); font-size: 0.98rem; }
.admin-brand em {
  display: block;
  color: #8a7c72;
  font-style: normal;
  font-size: 0.72rem;
}
.admin-nav-label {
  margin: 0.55rem 0.55rem 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a8b80;
  font-weight: 700;
}
.admin-sidebar nav { display: grid; gap: 0.2rem; }
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
  color: #5c4a3f;
  font-weight: 500;
  font-size: 0.92rem;
}
.admin-sidebar nav a svg { width: 18px; height: 18px; flex: none; }
.admin-sidebar nav a[aria-current="page"] {
  background: var(--maroon);
  color: #fff;
}
.admin-sidebar nav a:hover { background: #f7efe6; color: var(--burgundy); }
.admin-sidebar nav a[aria-current="page"]:hover { background: var(--maroon); color: #fff; }
.admin-sidebar-foot {
  margin-top: auto;
  padding: 1.1rem 0.55rem 0.2rem;
  color: #9a8b80;
  font-size: 0.72rem;
}
.admin-content { margin-left: 248px; min-height: 100vh; min-width: 0; overflow-x: hidden; }
.admin-bar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border-bottom: 1px solid #efe4d8;
  padding: 0.75rem 1.35rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-menu-btn {
  display: none;
  font-weight: 700;
  color: var(--maroon);
  cursor: pointer;
  flex: none;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: #f3eee8;
}
.admin-nav-scrim { display: none; }
.admin-search {
  flex: 1;
  position: relative;
  max-width: 560px;
}
.admin-search svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9a8b80;
}
.admin-search input {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f3eee8;
  padding: 0 1rem 0 2.4rem;
}
.admin-search input:focus {
  outline: 2px solid color-mix(in srgb, var(--gold) 65%, white);
  background: #fff;
}
.admin-bar-link { font-weight: 700; color: var(--maroon); font-size: 0.82rem; }
.admin-user { display: flex; align-items: center; gap: 0.7rem; }
.admin-user-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
}
.admin-user-card strong { display: block; font-size: 0.88rem; color: var(--burgundy); }
.admin-user-card em { display: block; font-style: normal; font-size: 0.72rem; color: #8a7c72; }
.admin-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.admin-logout {
  border: 0;
  background: #f3eee8;
  color: var(--maroon);
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}
.admin-main { padding: 1.2rem 1.4rem 2.4rem; min-width: 0; }
.admin-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.admin-page-head h1 { font-size: 1.32rem; color: #241a16; margin: 0; }
.admin-date { color: #8a7c72; margin: 0.2rem 0 0; font-weight: 600; font-size: 0.88rem; }
.admin-head-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.admin-dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--maroon);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.84rem;
}
.admin-dash-btn svg { width: 16px; height: 16px; }
.admin-dash-btn.is-ghost { background: #fff; color: var(--maroon); border: 1px solid #ead9c8; }
.admin-dash-btn.is-danger {
  background: #fff;
  color: #9b1c1c;
  border: 1px solid #f0c9c4;
}
.admin-dash-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.admin-stat, .admin-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 0, 16, 0.05);
  padding: 1rem 1.05rem 1.05rem;
  min-width: 0;
  max-width: 100%;
}
.admin-stat p { margin: 0; color: #8a7c72; font-size: 0.8rem; font-weight: 600; }
.admin-stat strong { display: block; font-size: 1.35rem; color: #241a16; margin: 0.35rem 0 0.2rem; }
.admin-stat span { color: #9a8b80; font-size: 0.75rem; }
.admin-dash-mid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.admin-dash-low {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.admin-card h2 { font-size: 1rem; color: #241a16; margin: 0 0 0.9rem; }
.admin-mix { display: flex; gap: 1.2rem; align-items: center; }
.admin-mix-side { flex: 1; min-width: 0; display: grid; gap: 0.85rem; }
.admin-donut {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--donut);
  display: grid;
  place-items: center;
  flex: none;
}
.admin-donut > div {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}
.admin-donut strong { display: block; font-size: 1.2rem; }
.admin-donut span, .admin-mix li { font-size: 0.82rem; color: #5c4a3f; }
.admin-mix ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.admin-mix i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.4rem;
}
.admin-mix i.is-paid { background: var(--maroon); }
.admin-mix i.is-reported { background: var(--gold); }
.admin-mix i.is-pending { background: #e8d5c4; }
.admin-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  height: 92px;
  align-items: end;
}
.admin-bars div { display: grid; align-items: end; justify-items: center; height: 100%; }
.admin-bars span {
  width: 100%;
  max-width: 18px;
  background: var(--maroon);
  border-radius: 8px 8px 4px 4px;
  min-height: 8px;
}
.admin-bars em { font-style: normal; font-size: 0.68rem; color: #8a7c72; margin-top: 0.3rem; }
.admin-big { font-size: 1.8rem; font-weight: 700; margin: 0 0 0.35rem; color: #241a16; }
.admin-income { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; }
.admin-spark { width: 100%; height: 92px; display: block; color: var(--maroon); border-radius: 10px; background: linear-gradient(180deg, color-mix(in srgb, var(--maroon) 10%, transparent), transparent 70%); }
.admin-spark polygon { fill: color-mix(in srgb, var(--maroon) 22%, transparent); }
.admin-spark polyline { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.admin-split, .admin-ops { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.admin-split { border-left: 1px solid #efe4d8; padding-left: 1rem; min-width: 148px; }
.admin-split li, .admin-ops li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: #5c4a3f;
  font-size: 0.9rem;
}
.admin-card > .admin-dash-btn { width: 100%; justify-content: center; margin-top: 0.85rem; }
.admin-empty { color: #8a7c72; margin: 0 0 0.9rem; }
.admin-people { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.admin-people li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.55rem;
  align-items: center;
}
.admin-people li > span:nth-child(2) { min-width: 0; }
.admin-people strong, .admin-people b { display: block; font-size: 0.88rem; }
.admin-people em { display: block; font-style: normal; font-size: 0.72rem; color: #8a7c72; }
.admin-pill {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #f7ead0;
  color: #7a4b00;
}
.admin-pill.is-paid { background: #e8f6ea; color: #1b4d24; }
.admin-pill.is-pending { background: #fdecea; color: #7a1c16; }
.admin-pill.is-failed { background: #fdecea; color: #7a1c16; }
.admin-pill.is-abandoned, .admin-pill.is-interrupted { background: #f3eee8; color: #5c4a3f; }
.admin-pill.is-partial { background: #fff4d6; color: #6a4b00; }
.admin-heading { margin-bottom: 1rem; }
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}
.admin-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #ead9c8;
  background: #fff;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.82rem;
}
.admin-tab.is-active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.admin-summary { color: var(--ink-soft); font-weight: 600; }
.admin-filters {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 0.8rem;
  align-items: end;
  margin-bottom: 1.1rem;
}
.admin-filters label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--burgundy); margin-bottom: 0.3rem; }
.admin-filters input, .admin-filters select, .admin-form input {
  width: 100%;
  border: 1px solid #ead9c8;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 0, 16, 0.05);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td { text-align: left; padding: 0.75rem 0.8rem; border-bottom: 1px solid #f0e6db; vertical-align: top; white-space: nowrap; }
.admin-table th { color: var(--burgundy); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; background: #faf7f0; }
.admin-status { font-weight: 600; }
.admin-status.is-paid { color: #1b4d24; }
.admin-status.is-reported { color: #7a4b00; }
.admin-status.is-pending { color: #7a1c16; }
.admin-status.is-failed { color: #7a1c16; }
.admin-status.is-abandoned, .admin-status.is-interrupted { color: #5c4a3f; }
.admin-status-note { display: block; font-weight: 500; color: #8a7c72; max-width: 220px; white-space: normal; margin-top: 0.2rem; }
.admin-check-form { margin: 0; }
.admin-check-btn {
  border: 1px solid #ead9c8;
  background: #fff;
  color: var(--maroon);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.admin-pager { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
.admin-pager a { color: var(--maroon); font-weight: 600; }
.admin-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 0, 16, 0.05);
  padding: 1.3rem 1.4rem 1.5rem;
  max-width: 720px;
}
.admin-panel + .admin-panel { margin-top: 1rem; }
.admin-form { display: grid; gap: 0.9rem; margin-top: 1rem; }
.admin-form .btn, .admin-actions .btn { justify-self: start; }
.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0;
}
.admin-inline-form input {
  width: 10.5rem;
  border: 1px solid #ead9c8;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  background: #fff;
}
.admin-form label { font-size: 0.85rem; font-weight: 600; color: var(--burgundy); }
.admin-form textarea {
  width: 100%;
  border: 1px solid #ead9c8;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  min-height: 5rem;
}
.admin-table input {
  width: 100%;
  min-width: 8rem;
  border: 1px solid #ead9c8;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  background: #fff;
}
.admin-budget-total {
  margin: 0;
  font-size: 1rem;
  color: #5c4a3f;
}
.admin-budget-total strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.45rem;
  color: var(--burgundy);
}
.admin-muted { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.2rem; }
.admin-actions { margin-top: 1.15rem; }
.admin-log {
  background: #4a0010;
  color: var(--cream);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
}
.admin-log h2 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.admin-log ul { margin: 0; padding-left: 1.1rem; }
@media (max-width: 1100px) {
  .admin-stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-accounts-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-dash-low { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    box-shadow: 12px 0 32px rgba(74, 0, 16, 0.12);
  }
  .admin-nav-toggle:checked ~ .admin-sidebar,
  .admin-body.is-nav-open .admin-sidebar { transform: translateX(0); }
  .admin-nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(36, 8, 12, 0.35);
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .admin-nav-toggle:checked ~ .admin-nav-scrim,
  .admin-body.is-nav-open .admin-nav-scrim { display: block; }
  .admin-content { margin-left: 0; }
  .admin-menu-btn { display: inline-flex; }
  .admin-search { max-width: none; min-width: 0; }
  .admin-bar-link { display: none; }
  .admin-filters { grid-template-columns: 1fr; }
  .admin-dash-mid, .admin-stat-grid, .admin-income { grid-template-columns: 1fr; }
  .admin-user-card em { display: none; }
  .admin-mix { flex-direction: column; align-items: flex-start; }
  .admin-split { border-left: 0; padding-left: 0; border-top: 1px solid #efe4d8; padding-top: 0.85rem; }
}
.page-hero .btn { margin: 0.35rem; }
.page-hero .btn-outline { color: var(--cream); border-color: var(--gold); }

.admin-login-page {
  min-height: 100vh;
  background: #f4eee4;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.admin-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  grid-template-areas: "brand panel";
}
.admin-login-brand {
  grid-area: brand;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #5a0812 0%, #3d040c 52%, #2a0208 100%);
  color: var(--gold-light);
}
.admin-login-brand::before {
  content: "";
  position: absolute;
  inset: 0 0 18% 0;
  background: url("/assets/images/gallery/maa-jagadhatri-full.webp") center top / cover no-repeat;
  opacity: 0.2;
  filter: sepia(0.35) saturate(0.75);
  pointer-events: none;
}
.admin-login-brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(48px, 10vw, 88px);
  height: 100%;
  background: #f4eee4;
  border-top-left-radius: 50% 18%;
  border-bottom-left-radius: 50% 22%;
  z-index: 2;
  pointer-events: none;
}
.admin-login-brand-inner {
  position: relative;
  z-index: 3;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.2rem 2.6rem 1.6rem 1.6rem;
}
.admin-login-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(241, 217, 138, 0.28), 0 18px 40px rgba(0, 0, 0, 0.28);
  background: #fff8e8;
  margin-bottom: 1.2rem;
}
.admin-login-org {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.2;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 16ch;
  margin: 0 0 0.85rem;
}
.admin-login-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin: 0 0 auto;
}
.admin-login-tag::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: color-mix(in srgb, var(--gold) 70%, transparent);
  margin: 0 auto 0.85rem;
}
.admin-login-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  width: min(100%, 420px);
  margin: auto 0 0;
  padding: 0;
  position: relative;
  z-index: 4;
}
.admin-login-values li {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.admin-login-values svg { width: 22px; height: 22px; }
.admin-login-panel {
  grid-area: panel;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 1.4rem 1.4rem;
  background: #f4eee4;
}
.admin-login-card {
  width: min(100%, 440px);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(74, 0, 16, 0.12);
  padding: 2rem 1.85rem 1.7rem;
  text-align: center;
}
.admin-login-lotus {
  display: grid;
  place-items: center;
  color: var(--gold);
  margin: 0 auto 0.7rem;
}
.admin-login-lotus svg { width: 38px; height: 38px; }
.admin-login-card h1 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--burgundy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.admin-login-lede {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
}
.admin-login-form { text-align: left; }
.admin-login-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d342f;
  margin: 0.75rem 0 0.35rem;
}
.admin-login-field {
  position: relative;
}
.admin-login-field > svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9a8b80;
  pointer-events: none;
}
.admin-login-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd2c6;
  border-radius: 10px;
  padding: 0 2.6rem 0 2.6rem;
  background: #fff;
  color: var(--ink);
}
.admin-login-field input:focus {
  outline: 2px solid color-mix(in srgb, var(--gold) 70%, transparent);
  outline-offset: 1px;
  border-color: var(--gold);
}
.admin-login-eye {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  color: #9a8b80;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.admin-login-eye svg { width: 18px; height: 18px; }
.admin-login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin: 0.95rem 0 1.15rem;
  font-size: 0.88rem;
}
.admin-login-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}
.admin-login-row a {
  color: var(--maroon);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.admin-login-submit,
.admin-login-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 50px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.admin-login-submit {
  border: 0;
  background: var(--maroon);
  color: var(--gold);
  cursor: pointer;
}
.admin-login-submit svg,
.admin-login-back svg { width: 18px; height: 18px; }
.admin-login-or {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #b3a79c;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 1rem 0;
}
.admin-login-or::before,
.admin-login-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6d9cc;
}
.admin-login-back {
  border: 1px solid var(--maroon);
  color: var(--gold);
  background: #fff;
}
.admin-login-reset {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #efe4d8;
}
.admin-login-reset-title {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.admin-login-copy {
  margin: 1.4rem 0 0.45rem;
  color: #8a7c72;
  font-size: 0.78rem;
  text-align: center;
}
.admin-login-lotus-foot {
  display: grid;
  place-items: center;
  color: var(--gold);
  opacity: 0.9;
}
.admin-login-lotus-foot svg { width: 26px; height: 26px; }
.share-photo { max-width: 36rem; }
.share-photo-form { margin-top: 1.1rem; }
.share-photo .disclaimer { margin-top: 0.85rem; }
.split-gallery .btn + .btn { margin-left: 0.45rem; }
.admin-main > .admin-card + .admin-card { margin-top: 1rem; }
.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.admin-photo-card {
  background: #faf7f0;
  border: 1px solid #ead9c8;
  border-radius: 16px;
  overflow: hidden;
}
.admin-photo-frame {
  display: block;
  aspect-ratio: 4 / 3;
  background: #1a0006;
}
.admin-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-photo-body { padding: 0.85rem 0.9rem 1rem; }
.admin-photo-body h3 { margin: 0.45rem 0 0.2rem; font-size: 0.98rem; color: #241a16; }
.admin-photo-body > p { margin: 0; color: #8a7c72; font-size: 0.8rem; }
.admin-photo-body .admin-form {
  margin-top: 0.7rem;
  gap: 0.4rem;
}
.admin-photo-body .admin-form input {
  margin-top: 0.25rem;
  padding: 0.45rem 0.65rem;
}
.admin-photo-body .admin-form .admin-dash-btn { width: auto; }
.admin-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.admin-photo-actions .admin-dash-btn { margin: 0; width: auto; }
.admin-photo-delete { margin-top: 0.55rem; }
.admin-photo-delete .admin-dash-btn { width: 100%; justify-content: center; }
.admin-photo-use {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.admin-photo-use label { font-size: 0.78rem; font-weight: 600; color: var(--burgundy); }
.admin-photo-use select {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  border: 1px solid #ead9c8;
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: #fff;
}
.admin-pill.is-approved { background: #e8f6ea; color: #1b4d24; }
.admin-pill.is-rejected { background: #f3eee8; color: #5c4a3f; }
.admin-spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.admin-spaces-grid input, .admin-form input {
  width: 100%;
  border: 1px solid #ead9c8;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  margin-top: 0.25rem;
}
.admin-form > label span { font-weight: 400; color: #8a7c72; }
.admin-form select {
  width: 100%;
  border: 1px solid #ead9c8;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  margin-top: 0.25rem;
}
@media (max-width: 720px) {
  .admin-spaces-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .admin-login {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "panel";
  }
  .admin-login-brand { min-height: 280px; }
  .admin-login-brand::after { display: none; }
  .admin-login-brand-inner { min-height: 280px; padding: 1.4rem 1.2rem 1.1rem; }
  .admin-login-logo { width: 112px; height: 112px; margin-bottom: 0.8rem; }
  .admin-login-org { max-width: 22ch; }
  .admin-login-tag { margin-bottom: 1rem; }
  .admin-login-values { margin-top: 0.6rem; }
  .admin-login-panel { padding: 1.2rem 1rem 1.6rem; }
}
.pay-qr-layout {
  max-width: 560px;
}
.pay-qr-show {
  max-width: 480px;
  margin: 0 auto;
}
.pay-qr-card {
  text-align: center;
}
.pay-qr-card .qr-box {
  max-width: 320px;
}
.pay-qr-meta {
  margin: 0.4rem 0 0.8rem;
  color: var(--burgundy);
}
.pay-qr-received {
  font-weight: 700;
  color: var(--maroon);
}
.pay-qr-payments {
  list-style: none;
  margin: 0.6rem 0 1.1rem;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.pay-qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}
.admin-card.is-wide { max-width: 1100px; width: 100%; min-width: 0; }
.admin-compare-pair > * {
  min-width: 0;
  max-width: 100%;
}
.admin-accounts-stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.admin-stat {
  min-width: 0;
}
.admin-stat strong {
  overflow-wrap: anywhere;
}
.admin-stat span {
  display: block;
}
@media (max-width: 1100px) {
  .admin-accounts-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .admin-accounts-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-stat strong { font-size: 1.12rem; }
}
.admin-stat strong.is-plus { color: #1b4d24; }
.admin-stat strong.is-minus { color: #8a1c12; }
.admin-compare-bars {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
}
.admin-compare-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) 7.2rem;
  gap: 0.7rem;
  align-items: center;
}
.admin-compare-row span { color: #8a7c72; font-size: 0.8rem; font-weight: 600; }
.admin-compare-row strong { text-align: right; font-size: 0.92rem; }
.admin-compare-track,
.admin-share-track {
  display: block;
  height: 10px;
  background: #f3ebe3;
  border-radius: 999px;
  overflow: hidden;
}
.admin-compare-fill,
.admin-share-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  min-width: 0;
}
.admin-compare-fill.is-income,
.admin-share-fill.is-income { background: #2f6b3a; }
.admin-compare-fill.is-expense,
.admin-share-fill.is-expense { background: var(--maroon); }
.admin-compare-fill.is-loan,
.admin-share-fill.is-loan { background: #b8860b; }
.admin-compare-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.1rem;
}
.admin-compare-pair h3 {
  font-size: 0.88rem;
  color: var(--burgundy);
  margin: 0 0 0.65rem;
}
.admin-share {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #8a7c72;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.admin-share-track { width: 4.2rem; flex: none; height: 8px; }
.admin-compare-pair.is-stack {
  grid-template-columns: 1fr;
}
.admin-compare-pair.is-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .admin-compare-pair,
  .admin-compare-pair.is-triple { grid-template-columns: 1fr; }
  .admin-compare-row { grid-template-columns: 4.5rem minmax(0, 1fr) 6.2rem; }
}
p.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.admin-table.is-wrap th, .admin-table.is-wrap td { white-space: normal; }
.admin-table select {
  width: 100%;
  min-width: 7rem;
  border: 1px solid #ead9c8;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  background: #fff;
}
.admin-table textarea {
  width: 100%;
  min-width: 12rem;
  border: 1px solid #ead9c8;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  background: #fff;
  min-height: 4.5rem;
}
.admin-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--burgundy);
}
.admin-check input { width: auto; margin: 0; }
.admin-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.admin-card-head h2 { margin: 0; }
.admin-card-head .admin-empty { margin: 0.35rem 0 0; }
.admin-master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.admin-master-card {
  display: block;
  padding: 1.15rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--gold) 32%, transparent);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(74, 0, 16, 0.05);
}
.admin-master-card strong {
  display: block;
  color: var(--burgundy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.admin-master-card span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}
.admin-user-actions,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.admin-user-actions form,
.admin-row-actions form { margin: 0; }
.admin-pill.is-inactive { background: #f3e6e4; color: #8a1c12; }
.admin-pill.is-on { background: #e7f4ea; color: #1c6b38; }
.admin-pill.is-private { background: #f3eee8; color: #5c4a3f; }
.admin-pill.is-public { background: #e8f6ea; color: #1b4d24; }
.admin-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.admin-expense-docs td {
  background: #fbf7f2;
  border-top: 0;
}
.admin-expense-docs-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}
@media (min-width: 900px) {
  .admin-expense-docs-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: start;
  }
}
.admin-expense-docs-grid > div p {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.admin-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-file-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.admin-file-list a { font-weight: 600; }
.admin-expense-attach {
  margin: 0;
  padding: 0.7rem;
  border: 1px dashed #ead9c8;
  border-radius: 12px;
  background: #fff;
}
.admin-expense-attach .btn { margin-top: 0.2rem; }
.admin-sponsor-pay {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #f0e6db;
}
.admin-sponsor-pay h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--burgundy);
}
.admin-card h2 .admin-pill {
  margin-left: 0.45rem;
  vertical-align: middle;
  font-weight: 600;
}
.admin-table tr.is-editing td { background: #fbf7f2; }
.admin-stack-form {
  flex-direction: column;
  align-items: stretch;
}
.admin-stack-form input, .admin-stack-form select { width: 100%; }
.admin-changelog {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.admin-changelog li {
  background: #faf7f0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
}
.admin-changelog time {
  display: block;
  font-size: 0.78rem;
  color: #8a7c72;
  font-weight: 600;
}
.admin-changelog strong {
  display: inline-block;
  margin: 0.15rem 0.4rem 0.2rem 0;
  color: var(--burgundy);
}
.admin-changelog p {
  margin: 0.2rem 0 0;
  color: #5c4a3f;
}
.rp-sheet {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: 0 8px 24px rgba(74, 0, 16, 0.05);
}
.rp-head {
  text-align: center;
  margin-bottom: 1rem;
}
.rp-head h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--burgundy);
  font-weight: 700;
}
.rp-head p {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: #8a7c72;
}
.rp-year { max-width: 16rem; margin: 0 auto 1rem; }
.rp-year .admin-muted { margin: 0.35rem 0 0; font-size: 0.8rem; }
.rp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; min-width: 0; }
.rp-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: #241a16;
}
.rp-table th,
.rp-table td {
  border: 1px solid #ead9c8;
  padding: 0.7rem 0.8rem;
  vertical-align: middle;
}
.rp-table th {
  background: #faf7f0;
  color: var(--burgundy);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}
.rp-table td.rp-group {
  background: color-mix(in srgb, var(--gold) 16%, var(--cream));
  color: var(--burgundy);
  font-weight: 700;
}
.rp-table td.rp-total {
  background: color-mix(in srgb, var(--maroon) 8%, #fff);
  color: var(--burgundy);
  font-weight: 700;
}
.rp-table td.rp-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  width: 7.2rem;
}
.rp-link {
  color: var(--maroon);
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.rp-note { margin: 0.85rem 0 0; }
.doc-sheet {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(74, 0, 16, 0.05);
}
.doc-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ead9c8;
}
.doc-head h2 {
  margin: 0.15rem 0;
  color: var(--burgundy);
  font-size: 1.2rem;
}
.doc-meta {
  text-align: right;
  color: var(--burgundy);
}
.doc-meta strong {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.doc-party, .doc-event, .doc-notes, .doc-bank { margin: 0 0 1rem; }
.doc-bank .banker-logo { margin-bottom: 0.4rem; }
.rp-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(44rem, 94vw);
  width: 100%;
}
.rp-dialog::backdrop { background: rgba(36, 8, 12, 0.55); }
.rp-dialog-inner {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(74, 0, 16, 0.18);
  max-height: 86vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.rp-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: #faf7f0;
  border-bottom: 1px solid #ead9c8;
}
.rp-dialog-head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--burgundy);
}
.rp-dialog-body { overflow: auto; }
.rp-dialog-body .admin-empty { margin: 1rem; }
.rp-dialog-body .admin-table-wrap { margin: 0; }
.rp-dialog-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #faf7f0;
  border-top: 1px solid #ead9c8;
  color: var(--burgundy);
  font-weight: 700;
}
@media print {
  .skip-link, .site-header, .site-footer, .page-hero, .pay-qr-actions { display: none !important; }
  .admin-sidebar, .admin-bar, .admin-menu-btn, .admin-nav-toggle, .admin-nav-scrim, .admin-no-print { display: none !important; }
  .admin-body, body { background: #fff; }
  .admin-content { margin-left: 0 !important; }
  .admin-main { padding: 0 !important; }
  .rp-sheet { box-shadow: none; padding: 0; border-radius: 0; }
  .doc-sheet { box-shadow: none; padding: 0; border-radius: 0; }
  .rp-table { min-width: 0; }
  .rp-link { color: inherit; text-decoration: none; cursor: default; }
  .pay-qr-card {
    box-shadow: none;
    border: 0;
  }
  .pay-qr-card .qr-box { max-width: 360px; }
}

.admin-statement-preview {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid #efe4d8;
}
.admin-statement-preview:first-of-type {
  margin-top: 0.35rem;
  padding-top: 0;
  border-top: 0;
}
.admin-table.is-ledger {
  min-width: 40rem;
  table-layout: auto;
}
@media (max-width: 700px) {
  .admin-table.is-ledger {
    min-width: 0;
    width: 100%;
  }
  .admin-table.is-wrap th.admin-col-date,
  .admin-table.is-wrap td.admin-col-date,
  .admin-table th.admin-col-date,
  .admin-table td.admin-col-date {
    width: auto;
    min-width: 0;
  }
  .admin-table th.admin-col-desc,
  .admin-table td.admin-col-desc {
    min-width: 0;
  }
}
.admin-table.is-wrap th.admin-col-date,
.admin-table.is-wrap td.admin-col-date,
.admin-table th.admin-col-date,
.admin-table td.admin-col-date {
  white-space: nowrap;
  width: 9.2rem;
  min-width: 9.2rem;
  max-width: none;
}
.admin-table th.admin-col-desc,
.admin-table td.admin-col-desc {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 14rem;
}
.admin-table th.admin-col-check,
.admin-table td.admin-col-check {
  width: 2.4rem;
  min-width: 2.4rem;
  max-width: 2.6rem;
  text-align: center;
  vertical-align: middle;
}
.admin-table td.admin-col-check .admin-check,
.admin-table th.admin-col-check .admin-check {
  justify-content: center;
}
.admin-table th.admin-col-money,
.admin-table td.admin-col-money {
  white-space: nowrap;
  text-align: right;
  width: 7.2rem;
}

