:root {
  --font-heading: "Plus Jakarta Sans", "Poppins", "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Inter", "Open Sans", "Segoe UI", sans-serif;
  --green-900: #102e24;
  --green-800: #174b3a;
  --green-700: #1e5f49;
  --gold-500: #d5b45b;
  --gold-300: #ecdca6;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --surface-muted: #eef4ef;
  --text-main: #102e24;
  --text-soft: #667085;
  --line: #d9e4dc;
  --line-strong: #c8d7cf;
  --danger: #a12626;
  --shadow-lg: 0 24px 56px rgba(16, 46, 36, 0.1);
  --shadow-md: 0 16px 36px rgba(16, 46, 36, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: var(--font-body), "Inter", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 10%, #e2efe7 0%, transparent 44%),
    radial-gradient(circle at 84% 0%, #f8f1db 0%, transparent 32%),
    linear-gradient(180deg, #eef4ef 0%, #f5f8f5 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading), "Plus Jakarta Sans", "Poppins", sans-serif;
  color: #12372a;
  line-height: 1.08;
}
p { margin: 0; color: var(--text-soft); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
small { color: var(--text-soft); }

.container {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.page-content {
  display: grid;
  gap: 44px;
  padding-top: 28px;
  padding-bottom: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background:
    radial-gradient(circle at 12% 0%, rgba(30, 95, 73, 0.12), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(213, 180, 91, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(252, 254, 252, 0.94) 0%, rgba(243, 248, 244, 0.92) 100%);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(140, 175, 161, 0.22);
  box-shadow: 0 12px 30px rgba(16, 46, 36, 0.06);
}

.header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.header-row-centered {
  grid-template-columns: auto 1fr auto;
}

.brand-center {
  justify-self: center;
}

.brand-full-logo {
  width: min(100%, 340px);
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  height: 48px;
  min-width: 100px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 216, 207, .9);
  background: rgba(255, 255, 255, .88);
  color: var(--green-900);
  font-size: .86rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.menu-toggle-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.header-cta-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 52px;
  height: 52px;
  min-width: 100px;
  width: auto;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(184, 214, 199, .95);
  background: rgba(247, 252, 250, .92);
  color: #24463a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 8px 16px rgba(115, 182, 156, .12);
  font-weight: 800;
  cursor: pointer;
}

.lang-chip-globe {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #2f6251;
}

.lang-chip-globe svg {
  width: 22px;
  height: 22px;
}

.lang-chip-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-chip-value {
  font-size: .96rem;
  line-height: 1;
}

.lang-chip-caret {
  margin-left: auto;
  color: #456b5c;
  transition: transform .18s ease;
}

.lang-chip-caret.open {
  transform: rotate(180deg);
}

.header-cta-compact .btn {
  min-height: 52px;
  height: 52px;
  min-width: 130px;
  width: auto;
  padding-inline: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .96rem;
  letter-spacing: .01em;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.22), rgba(9, 26, 20, 0.34));
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity .26s ease,
    visibility .26s ease;
}

.nav-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer {
  position: absolute;
  left: clamp(10px, 2vw, 24px);
  top: 78px;
  width: min(290px, calc(100vw - 24px));
  max-height: min(72vh, 620px);
  overflow: auto;
  margin: 0;
  padding: 10px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.93) 0%, rgba(242, 250, 245, 0.9) 100%),
    radial-gradient(circle at 0% 0%, rgba(182, 214, 198, 0.24), transparent 48%);
  border: 1px solid rgba(143, 179, 163, 0.42);
  box-shadow:
    0 24px 48px rgba(8, 35, 27, 0.24),
    0 8px 18px rgba(22, 62, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(-10px) scale(.97);
  transform-origin: top left;
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}

.nav-drawer-backdrop.is-open .nav-drawer {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nav-drawer-menu {
  display: grid;
  gap: 7px;
}

.nav-drawer-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 11px 0 9px;
  border-radius: 12px;
  border: 1px solid rgba(179, 208, 194, 0.56);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(244, 252, 247, 0.78));
  color: #16392f;
  font-size: 0.89rem;
  font-weight: 640;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    transform .2s ease,
    opacity .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.nav-drawer-link.active {
  border-color: rgba(179, 208, 194, 0.56);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(244, 252, 247, 0.78));
  box-shadow: none;
}

.nav-drawer-link-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.nav-drawer-icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid rgba(143, 185, 168, 0.56);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(227, 244, 236, 0.92));
  color: #1a5b45;
  flex: 0 0 auto;
}

.nav-drawer-icon-wrap svg {
  width: 15px;
  height: 15px;
  display: block;
}

.nav-drawer-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-drawer-arrow {
  color: #587a6a;
  font-size: .98rem;
  line-height: 1;
}

.nav-drawer-link:hover {
  transform: translateX(3px);
  border-color: #9fc9b4;
  background: linear-gradient(145deg, #ffffff, #f3fbf6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 16px rgba(20, 62, 47, 0.1);
}

.nav-drawer-link:hover .nav-drawer-icon-wrap {
  border-color: rgba(123, 177, 155, 0.8);
  background: linear-gradient(150deg, #ffffff, #e8f7ef);
}

.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(1) { transition-delay: .03s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(2) { transition-delay: .06s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(3) { transition-delay: .09s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(4) { transition-delay: .12s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(5) { transition-delay: .15s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(6) { transition-delay: .18s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(7) { transition-delay: .21s; }
.nav-drawer-backdrop.is-open .nav-drawer .nav-drawer-link:nth-child(8) { transition-delay: .24s; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 42;
  display: grid;
  gap: 10px;
  justify-items: center;
  align-items: center;
}

.floating-action {
  display: grid;
  place-items: center;
  text-decoration: none;
  padding: 0;
  border: 0;
  line-height: 1;
}

.floating-action img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-action-language {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #1e5f49;
  cursor: pointer;
}

.floating-action-language img {
  width: 100%;
  height: 100%;
  transform: none;
}

.language-switcher-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 24, 20, .16);
  backdrop-filter: blur(2px);
  z-index: 51;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.language-switcher-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-switcher-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 24, 20, .16);
  backdrop-filter: blur(2px);
  z-index: 53;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.whatsapp-switcher-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.language-switcher-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(224px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(214, 227, 221, .96);
  background: linear-gradient(180deg, rgba(250, 252, 251, .98), rgba(242, 248, 245, .96));
  box-shadow:
    0 28px 48px rgba(10, 39, 28, .18),
    0 2px 0 rgba(255, 255, 255, .55) inset;
  z-index: 52;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.98);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.language-switcher-popup.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.language-switcher-popup-list {
  display: grid;
  gap: 6px;
  padding: 8px;
  max-height: calc(100vh - 56px);
  overflow: auto;
}

.whatsapp-switcher-popup {
  position: fixed;
  right: 20px;
  bottom: 76px;
  width: min(320px, calc(100vw - 24px));
  max-height: min(68vh, 520px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(178, 207, 194, .9);
  background: linear-gradient(180deg, rgba(250, 252, 251, .98), rgba(242, 248, 245, .96));
  box-shadow: 0 28px 48px rgba(10, 39, 28, .18), 0 2px 0 rgba(255, 255, 255, .55) inset;
  z-index: 54;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .18s ease, transform .18s ease;
}

.whatsapp-switcher-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-switcher-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(206, 223, 215, .72);
}

.whatsapp-switcher-head strong {
  font-size: .94rem;
  color: #174434;
}

.whatsapp-switcher-close {
  width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(182, 208, 196, .84);
  background: rgba(244, 250, 246, .9);
  color: #245344;
  font-size: 1.16rem;
  line-height: 1;
  padding: 0;
}

.whatsapp-switcher-list {
  display: grid;
  gap: 8px;
  padding: 10px;
  max-height: min(58vh, 430px);
  overflow: auto;
}

.whatsapp-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(189, 216, 203, .9);
  background: rgba(246, 251, 248, .88);
}

.whatsapp-contact-main {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.whatsapp-contact-main strong {
  color: #153f31;
  font-size: .94rem;
  line-height: 1.22;
}

.whatsapp-contact-main small {
  color: #607486;
  font-size: .78rem;
  line-height: 1.2;
}

.whatsapp-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 102, 76, .24);
  background: linear-gradient(135deg, rgba(30, 106, 80, .12), rgba(17, 73, 56, .12));
  color: #16523f;
  font-size: .8rem;
  font-weight: 700;
}

.language-option {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 11px;
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #24463a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.language-option-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.language-option-flag {
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
}

.language-option.active {
  background: linear-gradient(180deg, #69aefc, #4a88df);
  color: #fff;
  border-color: rgba(59, 111, 187, .7);
  box-shadow:
    0 10px 20px rgba(62, 117, 192, .28),
    inset 0 -2px 0 rgba(30, 74, 137, .22);
}

.language-option-check {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  flex: 0 0 auto;
}

.floating-action-donation {
  width: 42px;
  height: 42px;
}

.floating-action-whatsapp {
  width: 46px;
  height: 46px;
}

.mobile-bottom-nav {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo,
.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-logo {
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 18px rgba(16, 46, 36, 0.08);
}

.brand-badge {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(16, 46, 36, 0.12);
}

.brand-text { display: grid; min-width: 0; }
.brand-text strong { font-size: 1rem; line-height: 1.15; }
.brand-text small {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #6a7a88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green-700);
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(30, 95, 73, 0.1);
  color: var(--green-900);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 228, 220, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.soft-card { background: rgba(247, 250, 248, 0.94); }

.hero-modern {
  padding: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 36px;
}

.hero-content {
  display: grid;
  padding: 32px 48px 40px;
  align-self: start;
  align-content: start;
  gap: 0;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  min-width: 0;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(6px, 1.2vw, 12px);
  width: 100%;
  margin-inline: 0;
}

.kicker,
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
}

.hero-left {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.hero-right {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: start;
  max-width: 420px;
  margin-top: 0;
}

.hero-right > p:first-child {
  margin-top: -2px;
}

.hero-title,
.hero-modern h1 {
  max-width: 560px;
  font-size: clamp(2.45rem, 3.4vw, 3.3rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--green-900);
}

.hero-title-line {
  display: block;
}

.hero-title-main {
  white-space: nowrap;
}

.hero-content p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: #667085;
  margin: 0;
  text-align: justify;
}

.hero-content .kicker {
  width: fit-content;
  max-width: 100%;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.hero-actions-grid {
  width: auto;
}

.hero-actions-main,
.hero-actions-accent {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-actions .btn {
  min-width: 170px;
  min-height: 46px;
  padding-inline: 16px;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn,
button[type="submit"]:not(.btn-link):not(.btn-outline) {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 46, 36, 0.16);
}

.btn:hover,
button[type="submit"]:hover {
  transform: translateY(-1px);
}

.btn-outline,
.btn-link {
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-900);
  border: 1px solid rgba(126, 160, 145, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.btn-accent {
  background: linear-gradient(135deg, #d3b154, #c99f36);
  color: #23362b;
}

.btn-block { width: 100%; }

.hero-visual-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: clamp(320px, 38vw, 520px);
  max-height: min(62vh, 560px);
  align-self: start;
  overflow: hidden;
}

.hero-visual-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: stretch;
}

.hero-visual,
.media-thumb {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(12, 52, 40, 0.62), rgba(23, 75, 58, 0.34)),
    linear-gradient(180deg, #1e5f49, #102e24);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  min-height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.hero-visual-static {
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(12, 52, 40, 0.62), rgba(23, 75, 58, 0.34)),
    linear-gradient(180deg, #1e5f49, #102e24);
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform .34s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  filter: brightness(1.08) saturate(1.05) contrast(1.01);
}

.hero-visual-placeholder,
.media-thumb span {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 100%;
  padding: clamp(28px, 4.2vw, 44px);
  color: #fff;
}

.hero-visual-placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.01em;
  max-width: 14ch;
}

.hero-visual-placeholder p {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1.06rem, 1.9vw, 1.28rem);
  line-height: 1.55;
  color: rgba(236, 246, 242, .92);
}

.hero-float-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 0;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(214, 226, 216, .95);
  border-radius: 20px;
  padding: 12px 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(16, 46, 36, .12);
  display: grid;
  max-width: 240px;
}

.hero-float-card small {
  color: #4f665e;
  font-size: .73rem;
}

.hero-float-card strong {
  font-size: .9rem;
  color: #14372a;
  line-height: 1.25;
}

.hero-float-card span {
  font-size: .78rem;
  color: #5d7182;
}

.hero-float-card em {
  margin-top: 2px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: #0f5d45;
}

.hero-float-top {
  top: 24px;
  right: 24px;
  width: min(205px, calc(100% - 48px));
}

.hero-float-bottom {
  left: 24px;
  bottom: 26px;
  width: min(188px, calc(100% - 48px));
  padding: 10px 12px;
}

.hero-slider-controls {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: linear-gradient(145deg, rgba(10, 34, 27, .44), rgba(12, 42, 32, .3));
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(8, 27, 21, .28);
}

.hero-slider-dots {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  min-height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  border: 1px solid rgba(210, 233, 225, .82);
  background: rgba(156, 190, 176, .48);
  padding: 0;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-dot.active {
  transform: scale(1.15);
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.95);
}

.quick-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-panel {
  --cursor-x: 50%;
  --cursor-y: 50%;
  position: relative;
  overflow: hidden;
  min-height: 402px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 30px;
  padding: 22px 20px 20px;
  background:
    radial-gradient(circle at 13% 16%, rgba(243, 217, 226, .48), transparent 34%),
    radial-gradient(circle at 74% 76%, rgba(192, 232, 248, .45), transparent 38%),
    radial-gradient(circle at 57% 49%, rgba(223, 241, 202, .46), transparent 42%),
    linear-gradient(180deg, rgba(251, 253, 252, .94), rgba(243, 247, 245, .9));
  border: 1px solid rgba(184, 218, 203, .84);
  box-shadow: 0 22px 42px rgba(27, 66, 52, .12);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.quick-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(220px circle at var(--cursor-x) var(--cursor-y), rgba(255,255,255,.42), rgba(255,255,255,0) 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.quick-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.quick-panel.is-cursor-active {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(18, 57, 44, .16);
  border-color: rgba(158, 203, 184, .95);
}

.quick-panel.is-cursor-active::before,
.quick-panel.is-cursor-active::after {
  opacity: 1;
}

.quick-panel a,
.quick-panel button {
  cursor: pointer;
}

.quick-panel-prayer {
  background:
    radial-gradient(circle at 18% 16%, rgba(236, 209, 236, .52), transparent 35%),
    radial-gradient(circle at 52% 60%, rgba(185, 225, 244, .5), transparent 38%),
    radial-gradient(circle at 71% 48%, rgba(221, 238, 186, .48), transparent 38%),
    linear-gradient(180deg, rgba(249, 252, 250, .95), rgba(240, 246, 243, .9));
}

.quick-panel-events {
  background:
    radial-gradient(circle at 17% 12%, rgba(232, 243, 217, .52), transparent 34%),
    radial-gradient(circle at 67% 78%, rgba(219, 214, 238, .45), transparent 40%),
    radial-gradient(circle at 28% 72%, rgba(247, 207, 206, .42), transparent 35%),
    linear-gradient(180deg, rgba(249, 253, 251, .95), rgba(241, 246, 244, .9));
}

.quick-panel-announcements {
  background:
    radial-gradient(circle at 22% 10%, rgba(248, 219, 214, .48), transparent 33%),
    radial-gradient(circle at 66% 72%, rgba(193, 224, 244, .48), transparent 38%),
    radial-gradient(circle at 40% 76%, rgba(224, 208, 238, .4), transparent 33%),
    linear-gradient(180deg, rgba(252, 251, 244, .95), rgba(238, 246, 249, .9));
}

.quick-panel-donations {
  background:
    radial-gradient(circle at 18% 76%, rgba(248, 215, 204, .44), transparent 35%),
    radial-gradient(circle at 72% 15%, rgba(195, 228, 246, .5), transparent 35%),
    radial-gradient(circle at 75% 68%, rgba(223, 205, 236, .42), transparent 36%),
    linear-gradient(180deg, rgba(247, 251, 252, .95), rgba(241, 246, 247, .9));
}

.quick-panel-head {
  display: grid;
  gap: 7px;
}

.quick-panel-head h3 {
  font-size: clamp(1rem, 1.16vw, 1.14rem);
  line-height: 1.15;
}

.quick-panel-accent {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(86, 190, 162, .85), rgba(86, 190, 162, .35));
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(182, 215, 201, .96);
  background: rgba(241, 248, 245, .9);
  color: #2e6552;
  font-size: .82rem;
  font-weight: 800;
}

.quick-panel-highlight {
  font-family: var(--font-heading);
  font-size: clamp(1.26rem, 1.56vw, 1.72rem);
  line-height: 1.14;
  color: #113f31;
}

.quick-panel-prayer .quick-panel-highlight {
  font-size: clamp(1rem, 1.16vw, 1.14rem);
  line-height: 1.15;
}

.quick-panel-meta {
  color: #5d7288;
  font-size: clamp(.9rem, .96vw, .98rem);
  font-weight: 700;
}

.quick-panel-prayer .quick-panel-meta {
  font-size: .82rem;
}

.quick-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1d6d52, #124937);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 10px 16px rgba(18, 73, 55, .2);
}

.quick-countdown span,
.quick-countdown i {
  font-style: normal;
  line-height: 1;
}

.quick-panel-stack {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}

.quick-event-item,
.quick-donation-item {
  display: grid;
  gap: 4px;
}

.quick-event-item strong,
.quick-donation-item strong {
  font-size: clamp(.98rem, 1.08vw, 1.14rem);
  line-height: 1.18;
  color: #14372a;
}

.quick-event-item p,
.quick-donation-item p {
  margin: 0;
  color: #5d7288;
  font-size: clamp(.9rem, .95vw, .96rem);
  line-height: 1.38;
}

.quick-panel-announcements .quick-event-item p,
.quick-panel-announcements .quick-panel-stack > p {
  text-align: justify;
  text-justify: inter-word;
}

.quick-donation-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(208, 223, 214, .86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.quick-donation-item .progress-track {
  height: 11px;
  margin-top: 4px;
  background: #dce6e3;
}

.quick-panel-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding-top: 4px;
  color: #176047;
  font-size: clamp(1.02rem, 1.04vw, 1.12rem);
  font-weight: 800;
}

.quick-panel-donations .quick-panel-stack > p {
  margin: 0;
  color: #61748a;
  font-size: clamp(.9rem, 1.05vw, 1.2rem);
}

.quick-panel-link::after {
  content: "→";
}

.agenda-grid .content-card p {
  text-align: justify;
  text-justify: inter-word;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-service-card {
  display: grid;
  gap: 14px;
  align-content: start;
  border-radius: 30px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(184, 218, 203, .82);
  background:
    radial-gradient(circle at 14% 14%, rgba(243, 217, 226, .35), transparent 36%),
    radial-gradient(circle at 80% 76%, rgba(192, 232, 248, .32), transparent 38%),
    linear-gradient(180deg, rgba(251,253,252,.95), rgba(243,247,245,.9));
}

.home-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-service-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 215, 201, .96);
  background: rgba(241, 248, 245, .92);
  color: #2e6552;
  font-size: .84rem;
  font-weight: 800;
}

.home-service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(182, 215, 201, .96);
  background: rgba(241, 248, 245, .88);
  color: #1d6d52;
}

.home-service-icon svg {
  width: 22px;
  height: 22px;
}

.home-service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.home-service-card p {
  margin: 0;
  color: #5d7288;
  font-size: clamp(.95rem, .96vw, 1rem);
  line-height: 1.56;
  max-width: 42ch;
}

.stack-section { display: grid; gap: 20px; }

.stack {
  display: grid;
  gap: 14px;
}

.section-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(1.42rem, 1.85vw, 1.82rem);
}

.section-subtitle {
  max-width: 720px;
  margin-top: 10px;
}

.page-head {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.value-card,
.content-card,
.member-card,
.media-card,
.admin-stat-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.value-card h3,
.content-card h3,
.member-card h3,
.media-card h3 {
  font-size: 1.35rem;
}

.pill-soft {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(212, 180, 91, 0.14);
  color: #7b6121;
  font-size: .78rem;
  font-weight: 700;
}

.about-preview-card,
.cta-highlight {
  display: grid;
  gap: 20px;
  align-items: center;
}

.about-preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 18px;
  align-items: stretch;
}

.about-preview-content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-summary-card {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(196, 216, 207, .74);
  background:
    radial-gradient(circle at 14% 16%, rgba(243, 217, 226, .26), transparent 36%),
    radial-gradient(circle at 76% 78%, rgba(192, 232, 248, .24), transparent 38%),
    linear-gradient(180deg, rgba(251,253,252,.92), rgba(243,247,245,.9));
}

.about-summary-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(182, 215, 201, .96);
  background: rgba(241, 248, 245, .9);
  color: #2e6552;
  font-size: .82rem;
  font-weight: 800;
}

.about-summary-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #4f6479;
  font-weight: 600;
}

.about-summary-body {
  margin: 0;
  font-size: .98rem;
  line-height: 1.62;
  color: #4f6479;
}

.about-summary-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-summary-points li {
  position: relative;
  padding-left: 18px;
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  color: #1b4a3a;
  font-weight: 600;
}

.about-summary-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d6d52, #d4b45b);
}

.history-overview-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(182, 215, 201, .84);
  background:
    radial-gradient(circle at 12% 14%, rgba(243, 217, 226, .3), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(192, 232, 248, .28), transparent 38%),
    linear-gradient(180deg, rgba(251, 253, 252, .95), rgba(243, 247, 245, .92));
}

.history-overview-head {
  display: grid;
  gap: 8px;
}

.history-overview-head h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: #143f31;
}

.history-overview-head p {
  margin: 0;
  color: #5d7288;
  line-height: 1.62;
  text-align: justify;
}

.history-overview-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.history-step-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(192, 214, 203, .72);
  background: rgba(255, 255, 255, .7);
}

.history-step-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(212, 180, 91, .16);
  color: #7b6121;
  font-size: .78rem;
  font-weight: 800;
}

.history-step-card h4 {
  margin: 0;
  color: #174335;
  font-size: 1.03rem;
  line-height: 1.25;
}

.history-step-card p {
  margin: 0;
  color: #5d7288;
  line-height: 1.52;
  text-align: justify;
}

.about-preview-gallery {
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(196, 216, 207, .8);
  box-shadow: 0 8px 20px rgba(17, 55, 43, .12);
}

.about-gallery-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.about-gallery-item-2,
.about-gallery-item-3 {
  min-height: 134px;
}

.about-gallery-item-empty {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #5f7487;
  text-align: center;
  font-weight: 600;
  background:
    radial-gradient(circle at 14% 16%, rgba(243, 217, 226, .45), transparent 36%),
    radial-gradient(circle at 76% 78%, rgba(192, 232, 248, .44), transparent 38%),
    radial-gradient(circle at 58% 48%, rgba(223, 241, 202, .44), transparent 42%),
    linear-gradient(180deg, rgba(251,253,252,.95), rgba(243,247,245,.92));
}

.about-gallery-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.about-gallery-layer.is-current {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.about-gallery-layer.is-next {
  z-index: 2;
}

.about-gallery-item.is-animating.slide-left .about-gallery-layer.is-current {
  animation: about-slide-out-left .72s ease both;
}

.about-gallery-item.is-animating.slide-left .about-gallery-layer.is-next {
  animation: about-slide-in-right .72s ease both;
}

.about-gallery-item.is-animating.slide-right .about-gallery-layer.is-current {
  animation: about-slide-out-right .72s ease both;
}

.about-gallery-item.is-animating.slide-right .about-gallery-layer.is-next {
  animation: about-slide-in-left .72s ease both;
}

.about-gallery-item.is-animating.slide-up .about-gallery-layer.is-current {
  animation: about-slide-out-up .72s ease both;
}

.about-gallery-item.is-animating.slide-up .about-gallery-layer.is-next {
  animation: about-slide-in-down .72s ease both;
}

@keyframes about-slide-out-left {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: .35; transform: translate3d(-16%, 0, 0) scale(1.03); }
}

@keyframes about-slide-in-right {
  from { opacity: 0; transform: translate3d(16%, 0, 0) scale(1.03); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes about-slide-out-right {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: .35; transform: translate3d(16%, 0, 0) scale(1.03); }
}

@keyframes about-slide-in-left {
  from { opacity: 0; transform: translate3d(-16%, 0, 0) scale(1.03); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes about-slide-out-up {
  from { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: .35; transform: translate3d(0, -16%, 0) scale(1.03); }
}

@keyframes about-slide-in-down {
  from { opacity: 0; transform: translate3d(0, 16%, 0) scale(1.03); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .about-gallery-item.is-animating .about-gallery-layer.is-current,
  .about-gallery-item.is-animating .about-gallery-layer.is-next {
    animation: none !important;
  }
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-grid dt {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6e7d79;
  margin-bottom: 6px;
}

.info-grid dd {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.list-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.list-item:last-child { border-bottom: 0; padding-bottom: 0; }
.list-item strong { font-size: 1.12rem; }
.prayer-row strong { font-family: var(--font-heading); }

.meta-row { color: #7a8784; font-size: .88rem; }

.search-shell {
  padding: 18px 22px;
}

.search-shell-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.search-shell .section-kicker {
  font-size: .74rem;
  letter-spacing: .14em;
}

.search-shell h3 {
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  line-height: 1.22;
  margin-top: 4px;
}

.search-bar-shell {
  display: flex;
  gap: 8px;
  align-items: center;
  width: min(410px, 100%);
}

.search-bar-shell input {
  flex: 1 1 auto;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.98rem;
}

.search-bar-shell .btn {
  min-height: 42px;
  height: 42px;
  padding: 0 18px;
  font-size: 0.98rem;
}

.empty-state-card {
  text-align: center;
  gap: 12px;
}

.article-home-grid {
  align-items: start;
  gap: 18px;
}

.article-featured {
  grid-template-rows: auto 1fr;
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(181, 209, 197, .9);
  background:
    radial-gradient(circle at 14% 16%, rgba(243, 217, 226, .24), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(192, 232, 248, .22), transparent 38%),
    linear-gradient(180deg, rgba(252,254,253,.96), rgba(243,247,245,.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 16px 30px rgba(13, 48, 36, .09);
}

.article-featured-image {
  min-height: 280px;
  aspect-ratio: 16 / 9;
  border-radius: 24px 24px 0 0;
}

.article-featured .media-thumb,
.article-compact .media-thumb {
  min-height: 0;
}

.article-featured-body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px 20px 20px;
}

.article-featured-body .meta-row,
.article-featured-body h3,
.article-featured-body p {
  margin: 0;
}

.article-featured-body h3 {
  font-size: clamp(1.28rem, 1.6vw, 1.52rem);
  line-height: 1.2;
}

.article-featured-body p {
  color: #5e7388;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-featured-body .btn {
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  font-size: .92rem;
}

.article-compact {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  border-radius: 24px;
  border: 1px solid rgba(188, 214, 204, .84);
  background:
    radial-gradient(circle at 78% 84%, rgba(192, 232, 248, .18), transparent 36%),
    linear-gradient(180deg, rgba(252,254,253,.96), rgba(243,247,245,.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.78),
    0 12px 26px rgba(13, 48, 36, .07);
  padding: 16px;
}

.article-compact-image {
  min-height: 210px;
  border-radius: 20px;
}

.article-compact-body {
  display: grid;
  gap: 8px;
  align-content: start;
}

.article-compact-body .meta-row,
.article-compact-body h3,
.article-compact-body p {
  margin: 0;
}

.article-compact-body h3 {
  font-size: 1.12rem;
  line-height: 1.24;
}

.article-compact-body p {
  color: #5e7388;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-home-grid .stack {
  gap: 14px;
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--green-700);
  font-weight: 700;
}

.text-link-arrow::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link-arrow:hover::after {
  transform: translateX(2px);
}

.pagination-nav {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-link,
.pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 215, 201, .9);
  background: rgba(244, 250, 246, .88);
  color: #1d5e47;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.pagination-page {
  min-width: 38px;
  padding: 0 10px;
}

.pagination-page.is-active {
  border-color: rgba(32, 104, 78, .34);
  background: linear-gradient(135deg, #1e6a50, #114a38);
  color: #fff;
}

.pagination-link.is-disabled {
  opacity: .46;
  pointer-events: none;
}

.home-media-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home-media-image {
  min-height: 100%;
}

.home-media-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.home-media-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30,95,73,.1);
  color: var(--green-900);
  font-size: .82rem;
  font-weight: 700;
}

.event-meta-pill-muted {
  background: rgba(16,46,36,.06);
  color: #6b7a76;
}

.home-media-summary {
  color: var(--text-soft);
}

.home-media-footer {
  display: flex;
  justify-content: flex-start;
}

.article-lead {
  padding: 18px 20px;
  border-left: 4px solid rgba(213, 180, 91, 0.82);
  background: rgba(247,250,248,.95);
  border-radius: 18px;
}

.article-lead p {
  color: var(--text-main);
  font-size: 1.02rem;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.media-thumb {
  min-height: 220px;
  overflow: hidden;
}

.media-thumb.large { min-height: 300px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
}

.gallery-trigger {
  display: grid;
  gap: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.gallery-media {
  position: relative;
  overflow: hidden;
}

.gallery-item-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-trigger:hover .gallery-item-image,
.gallery-trigger:focus-visible .gallery-item-image {
  transform: scale(1.03);
  filter: saturate(1.06);
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(213, 180, 91, 0.42);
  outline-offset: 6px;
  border-radius: 24px;
}

.gallery-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--green-900);
  font-size: .8rem;
  font-weight: 700;
}

.gallery-body {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 18, 15, 0.84);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(100%, 1120px);
}

.gallery-lightbox-stage {
  display: grid;
  gap: 16px;
}

.gallery-lightbox-image {
  width: 100%;
  height: min(74vh, 780px);
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}

.gallery-lightbox-meta {
  display: grid;
  gap: 4px;
  color: #f6faf8;
}

.gallery-lightbox-counter {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(246,250,248,.7);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: 6px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(255,255,255,.2);
}

.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,95,73,.2), rgba(213,180,91,.26));
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--green-900);
  font-weight: 800;
}

.donation-card { display: grid; gap: 14px; }
.donation-catalog-grid {
  display: grid;
  gap: 18px;
}

.donation-catalog-card {
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(181, 209, 197, .9);
  box-shadow:
    0 14px 28px rgba(13, 48, 36, .09),
    inset 0 1px 0 rgba(255,255,255,.82);
  overflow: hidden;
}

.donation-catalog-cover {
  position: relative;
  min-height: 290px;
  border-radius: 18px;
  border: 1px solid rgba(205, 228, 219, .68);
  padding: 18px;
  display: flex;
  align-items: flex-end;
  color: #ecf6f1;
  background:
    linear-gradient(125deg, rgba(9, 49, 38, .88), rgba(14, 83, 62, .84) 55%, rgba(28, 116, 89, .74)),
    radial-gradient(circle at 18% 14%, rgba(235, 222, 171, .45), transparent 40%);
}

.donation-catalog-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,0) 45%),
    radial-gradient(circle at 86% 12%, rgba(241, 209, 131, .2), transparent 33%);
  pointer-events: none;
}

.donation-catalog-cover strong {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: .01em;
  max-width: 26ch;
  padding-top: 42px;
}

.donation-catalog-cover-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(241, 222, 169, .55);
  background: rgba(231, 197, 113, .22);
  color: #f4e4bb;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.donation-catalog-card .donation-card-head {
  align-items: flex-start;
}

.donation-catalog-card h3 {
  margin: 8px 0 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.donation-catalog-card p {
  margin: 0;
  color: #637589;
}

.donation-catalog-card .donation-amount strong {
  font-size: 1.28rem;
}

.donation-catalog-card .donation-amount span {
  font-size: .88rem;
  color: #4f675f;
}

.donation-catalog-card .donation-amount-row {
  margin-top: 2px;
  gap: 10px;
}

.donation-catalog-card .donation-amount-row p {
  margin: 0;
  font-size: .92rem;
}

.donation-catalog-card .donation-action-row {
  margin-top: 4px;
}

.donation-catalog-card.is-renovation .donation-catalog-cover {
  background:
    linear-gradient(125deg, rgba(17, 49, 43, .9), rgba(38, 103, 84, .84) 56%, rgba(151, 121, 66, .64)),
    radial-gradient(circle at 16% 20%, rgba(240, 219, 163, .44), transparent 38%);
}

.donation-catalog-card.is-education .donation-catalog-cover {
  background:
    linear-gradient(125deg, rgba(10, 52, 69, .9), rgba(27, 98, 114, .82) 56%, rgba(93, 143, 124, .68)),
    radial-gradient(circle at 16% 20%, rgba(184, 226, 241, .35), transparent 38%);
}

.donation-catalog-card.is-food .donation-catalog-cover {
  background:
    linear-gradient(125deg, rgba(57, 51, 25, .9), rgba(116, 92, 39, .82) 56%, rgba(56, 99, 70, .68)),
    radial-gradient(circle at 16% 20%, rgba(255, 227, 155, .32), transparent 38%);
}

.donation-catalog-card.is-audio .donation-catalog-cover {
  background:
    linear-gradient(125deg, rgba(29, 34, 57, .9), rgba(55, 78, 124, .82) 56%, rgba(45, 111, 109, .68)),
    radial-gradient(circle at 16% 20%, rgba(184, 208, 255, .3), transparent 38%);
}

.donation-catalog-card.is-library .donation-catalog-cover {
  background:
    linear-gradient(125deg, rgba(43, 35, 60, .9), rgba(89, 66, 127, .82) 56%, rgba(46, 113, 115, .66)),
    radial-gradient(circle at 16% 20%, rgba(215, 203, 255, .35), transparent 38%);
}

@media (min-width: 1024px) {
  .donation-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
.donation-head,
.donation-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.donation-head {
  align-items: center;
}

.donation-amount {
  display: grid;
  gap: 4px;
  text-align: right;
}

.donation-amount strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-900);
}

.donation-amount-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.program-active-grid {
  align-items: stretch;
  gap: 16px;
}

.donation-card-home {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 16px;
  min-height: 280px;
  border-radius: 30px;
  padding: 25px 24px 23px;
  background:
    radial-gradient(circle at 12% 14%, rgba(243, 217, 226, .34), transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(192, 232, 248, .3), transparent 38%),
    radial-gradient(circle at 58% 48%, rgba(223, 241, 202, .33), transparent 40%),
    linear-gradient(180deg, rgba(252,254,253,.96), rgba(243,247,245,.92));
  border: 1px solid rgba(180, 216, 200, .9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.78),
    0 18px 36px rgba(19, 58, 44, .11);
}

.donation-card-home .donation-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: flex-start;
  min-height: 106px;
}

.donation-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.donation-progress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(30, 109, 82, .14);
  color: #16543d;
  font-size: .8rem;
  font-weight: 800;
}

.donation-card-home h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1vw, 1.68rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  max-width: 24ch;
  min-height: calc(1.16em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #113d30;
}

.donation-card-home p {
  margin: 0;
  color: #5c7288;
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 60ch;
  min-height: calc(1.62em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.donation-card-home .donation-amount strong {
  font-size: clamp(1.34rem, 1vw, 1.68rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.donation-card-home .donation-amount span {
  color: #35584d;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.24;
  white-space: nowrap;
}

.donation-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.donation-meta-grid > div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 11px 13px;
  min-height: 106px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(249,252,250,.74));
  border: 1px solid rgba(194, 214, 205, .9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.donation-meta-grid small {
  color: #6e7f7a;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}

.donation-meta-grid strong {
  font-size: 1.24rem;
  line-height: 1.2;
  color: #184236;
}

.donation-progress-wrap {
  display: grid;
  gap: 8px;
}

.donation-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.donation-progress-head small {
  margin: 0;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #647b71;
}

.donation-progress-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(198, 173, 84, .34);
  background: linear-gradient(145deg, rgba(206, 173, 74, .18), rgba(29, 113, 84, .12));
  color: #184b3a;
  font-size: .86rem;
  line-height: 1;
  font-weight: 800;
}

.donation-card-home .progress-track {
  height: 15px;
  margin-top: 0;
  background: linear-gradient(180deg, #d6e1de, #c9d7d2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.66);
  overflow: visible;
}

.donation-card-home .progress-track span {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18) inset,
    0 4px 12px rgba(28, 108, 82, .2);
  filter: saturate(1.08);
}

.donation-card-home .progress-track span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff 0 22%, #f2d786 48%, #c89c2a 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.5), 0 3px 10px rgba(148, 106, 33, .35);
  transform: translate(38%, -50%);
}

.donation-method-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.donation-method-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(247,250,248,.98);
  border: 1px solid var(--line);
}

.donation-method-box h4 {
  font-size: 1.05rem;
}

.donation-qris-thumb {
  min-height: 180px;
}

.donation-action-row {
  display: flex;
  justify-content: flex-end;
}

.donation-open-btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow:
    0 14px 30px rgba(179, 140, 49, .3),
    inset 0 1px 0 rgba(255,255,255,.58);
}

.donation-open-btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none;
}

body.donation-modal-open {
  overflow: hidden;
}

body.donation-modal-open .mobile-bottom-nav,
body.donation-modal-open .floating-actions {
  opacity: 0;
  pointer-events: none;
}

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
}

.donation-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0 !important;
  background: rgba(7, 19, 15, .9) !important;
  backdrop-filter: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity .28s ease;
}

.donation-modal-dialog {
  position: relative;
  width: min(740px, calc(100vw - 40px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  margin: 28px auto;
  border-radius: 24px;
  padding: 22px;
  background: #103329 !important;
  background-image: none !important;
  border: 1px solid rgba(210, 186, 123, .44);
  box-shadow:
    0 18px 34px rgba(2, 12, 9, .34),
    0 0 0 1px rgba(255, 255, 255, .05) inset;
  color: #e8f1ed;
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transform-origin: center top;
  transition:
    opacity .3s ease,
    transform .32s cubic-bezier(.2, .82, .25, 1);
}

.donation-modal.is-open .donation-modal-backdrop {
  opacity: 1;
}

.donation-modal.is-open .donation-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.donation-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-bottom: 4px;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(214, 188, 120, .55);
  background: rgba(255, 252, 244, .08);
  color: #f4e5bf;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.donation-modal-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.donation-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 193, 132, .58);
  background: rgba(255, 233, 168, .09);
  color: #f1daa4;
  font-size: .77rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 800;
}

.donation-modal-head h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.12;
  color: #f7f8f7;
}

.donation-modal-head p {
  margin: 0;
  color: #bfd3cc;
}

.donation-modal-highlight {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(210, 186, 123, .35);
  background: rgba(229, 199, 123, .08);
}

.donation-modal-highlight span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #d8c18a;
  font-weight: 800;
}

.donation-modal-highlight strong {
  display: block;
  margin-top: 2px;
  color: #f3e2b9;
  font-size: 1.08rem;
  line-height: 1.2;
}

.donation-modal-method-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.donation-modal-method-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.1), rgba(244,248,246,.05));
  border: 1px solid rgba(192, 214, 203, .3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.donation-modal-method-box .pill-soft {
  color: #f1d79e;
  border-color: rgba(233, 202, 127, .55);
  background: rgba(229, 198, 126, .12);
}

.donation-modal-method-box h4 {
  margin: 0;
  font-size: 1.14rem;
  color: #f5f8f6;
}

.donation-modal-method-box p {
  margin: 0;
  color: #c4d7d1;
}

.donation-modal-account {
  font-weight: 700;
  color: #e5efe9;
  letter-spacing: .01em;
}

.donation-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 189, 130, .58);
  background: rgba(240, 212, 144, .14);
  color: #f1dba8;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.donation-copy-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  opacity: .92;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='9' width='11' height='11' rx='2' fill='black'/%3E%3Crect x='4' y='4' width='11' height='11' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='9' width='11' height='11' rx='2' fill='black'/%3E%3Crect x='4' y='4' width='11' height='11' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.donation-copy-btn-soft {
  background: rgba(255,255,255,.08);
  border-color: rgba(198, 218, 208, .4);
  color: #d8e7e1;
}

.donation-qris-btn {
  border-color: rgba(228, 194, 119, .64);
  background:
    linear-gradient(135deg, rgba(229, 197, 124, .18), rgba(71, 122, 103, .22));
  color: #f3deb1;
  box-shadow:
    0 10px 20px rgba(11, 38, 30, .34),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.donation-qris-btn::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h6v6H4V4Zm1.8 1.8v2.4h2.4V5.8H5.8ZM14 4h6v6h-6V4Zm1.8 1.8v2.4h2.4V5.8h-2.4ZM4 14h6v6H4v-6Zm1.8 1.8v2.4h2.4v-2.4H5.8ZM13 13h2v2h-2v-2Zm2 2h2v2h-2v-2Zm-2 2h2v2h-2v-2Zm4 0h2v2h-2v-2Zm2 2h2v2h-2v-2Zm-4 0h2v2h-2v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h6v6H4V4Zm1.8 1.8v2.4h2.4V5.8H5.8ZM14 4h6v6h-6V4Zm1.8 1.8v2.4h2.4V5.8h-2.4ZM4 14h6v6H4v-6Zm1.8 1.8v2.4h2.4v-2.4H5.8ZM13 13h2v2h-2v-2Zm2 2h2v2h-2v-2Zm-2 2h2v2h-2v-2Zm4 0h2v2h-2v-2Zm2 2h2v2h-2v-2Zm-4 0h2v2h-2v-2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.donation-modal-qris-wrap {
  margin-top: 2px;
  padding: 10px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,250,249,.82));
  border: 1px solid rgba(218, 231, 223, .8);
}

.donation-modal-qris-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.donation-toast {
  position: fixed;
  left: 50%;
  bottom: calc(22px + env(safe-area-inset-bottom));
  transform: translate(-50%, 12px) scale(.97);
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 222, 212, .78);
  background: rgba(247, 252, 249, .96);
  box-shadow: 0 16px 30px rgba(10, 45, 34, .16);
  color: #144133;
  font-size: .88rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: opacity .2s ease, transform .22s ease;
  white-space: nowrap;
}

.donation-toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.donation-qris-viewer {
  position: fixed;
  inset: 0;
  z-index: 125;
}

.donation-qris-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0 !important;
  background: rgba(7, 19, 15, .9) !important;
  backdrop-filter: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.donation-qris-dialog {
  position: relative;
  width: min(440px, calc(100vw - 24px));
  margin: 12px auto;
  max-height: calc(100vh - 24px);
  overflow: auto;
  border-radius: 26px;
  padding: 22px;
  background: #103329 !important;
  background-image: none !important;
  border: 1px solid rgba(212, 188, 122, .45);
  box-shadow:
    0 16px 30px rgba(3, 13, 10, .3),
    0 0 0 1px rgba(255,255,255,.06) inset;
  color: #deebe5;
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transition: opacity .24s ease, transform .24s ease;
}

.donation-qris-viewer.is-open .donation-qris-backdrop {
  opacity: 1;
}

.donation-qris-viewer.is-open .donation-qris-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.donation-qris-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(214, 188, 120, .55);
  background: rgba(255, 252, 244, .08);
  color: #f4e5bf;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.donation-qris-dialog h4 {
  margin: 8px 0 4px;
  font-size: 1.32rem;
  color: #f3f7f5;
}

.donation-qris-dialog p {
  margin: 0 0 10px;
  color: #bfd3cc;
}

.donation-qris-frame {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(216, 230, 223, .74);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,249,.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.66),
    0 16px 30px rgba(6, 27, 20, .3);
}

.donation-qris-full-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.donation-qris-download-btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.progress-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #e3ece6;
  overflow: hidden;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
}

.contact-list,
.footer-contact-list {
  display: grid;
  gap: 14px;
}

.map-box {
  display: grid;
  gap: 14px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
  background: #dfe7e2;
}

.home-map-frame {
  min-height: 370px;
  margin-top: 8px;
  border-radius: 16px;
}

.map-placeholder {
  min-height: 320px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(30,95,73,.12), rgba(213,180,91,.18)),
    linear-gradient(180deg, #eef4ef, #dfe7e2);
  color: var(--green-900);
  font-weight: 700;
}

.contact-list span,
.footer-contact-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6e7d79;
  margin-bottom: 6px;
}

.home-contact-list {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.home-contact-list li {
  display: grid;
  gap: 2px;
}

.home-contact-list strong {
  font-size: 1.05rem;
  color: #1a4a38;
  line-height: 1.3;
}

.home-contact-list span {
  margin: 0;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: #607387;
  line-height: 1.45;
}

.home-contact-cta {
  margin-top: 4px;
}

.home-contact-cta .btn {
  min-width: 248px;
}

.home-contact-section {
  gap: 12px;
}

.home-contact-header {
  display: grid;
  gap: 10px;
}

.home-contact-header .section-title {
  font-size: clamp(1.86rem, 2.7vw, 2.48rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.home-contact-header .section-subtitle {
  margin-top: 0;
  font-size: clamp(.94rem, .98vw, 1.04rem);
  color: #5d7288;
  max-width: 60ch;
}

.contact-home-grid {
  gap: 14px;
  align-items: stretch;
}

.contact-home-card,
.map-home-card {
  border-radius: 26px;
  padding: 28px 30px;
  height: 100%;
}

.contact-home-card h3,
.map-home-card h3 {
  font-size: clamp(1.42rem, 1.52vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.contact-home-list {
  gap: 20px;
}

.home-contact-list strong {
  font-size: clamp(1.04rem, 1.08vw, 1.14rem);
  line-height: 1.34;
}

.home-contact-list span {
  font-size: 1rem;
  line-height: 1.7;
  color: #5e7287;
}

.map-home-card {
  align-content: start;
}

.home-map-frame {
  min-height: 420px;
  margin-top: 2px;
  border-radius: 20px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  background:
    radial-gradient(circle at top left, rgba(214, 178, 94, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(63, 142, 114, 0.16), transparent 30%),
    linear-gradient(180deg, #0b2f27 0%, #082720 100%);
  color: #dfeee8;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #dfeee8;
}

.site-footer-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: .26;
  pointer-events: none;
}

.site-footer-glow-left {
  left: -70px;
  top: -60px;
  background: #1d745b;
}

.site-footer-glow-right {
  right: -70px;
  top: 10px;
  background: #d6b25e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .8fr) minmax(280px, 1fr);
  gap: 22px;
  padding: 34px 0 22px;
  position: relative;
  z-index: 1;
}

.footer-brand-block,
.footer-menu-block,
.footer-contact-card {
  border: 0;
  border-radius: 22px;
  background: transparent;
  backdrop-filter: blur(8px);
  padding: 22px;
  box-shadow: none;
}

.footer-brand-block {
  display: grid;
  gap: 12px;
}

.footer-eyebrow {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  height: 40px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(214, 178, 94, 0.12);
  border: 1px solid rgba(214, 178, 94, 0.28);
  color: #f0d89b;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand-block h3,
.footer-menu-block h4,
.footer-contact-card h4 {
  color: #f6fbf8;
}

.footer-brand-block h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.footer-brand-block p {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(223, 238, 232, 0.9);
}

.footer-menu-block {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-link-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(188, 220, 208, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #eef8f3;
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-link-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(188, 220, 208, 0.34);
  background: linear-gradient(145deg, rgba(21, 84, 65, 0.42), rgba(15, 62, 49, 0.26));
  flex-shrink: 0;
}

.footer-link-icon svg {
  width: 14px;
  height: 14px;
  stroke: #dff0e8;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 178, 94, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.footer-link-pill:hover .footer-link-icon {
  border-color: rgba(214, 178, 94, 0.45);
  background: linear-gradient(145deg, rgba(214, 178, 94, 0.28), rgba(15, 62, 49, 0.25));
}

.footer-contact-card {
  display: grid;
  gap: 16px;
}

.footer-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(188, 220, 208, 0.14);
  padding: 16px 0 24px;
  font-size: .85rem;
  color: rgba(201, 223, 213, 0.84);
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  gap: 4px;
}

.footer-contact-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(201, 223, 213, 0.72);
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 1rem;
  line-height: 1.6;
  color: #f2fbf7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(188, 220, 208, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #eef8f3;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social-pill.icon-only {
  width: 62px;
  min-height: 54px;
  height: 54px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
  border-width: 1.5px;
}

.footer-social-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 178, 94, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(1.08) saturate(1.04);
}

@media (min-width: 1280px) {
  .footer-grid {
    gap: 16px;
    padding: 24px 0 16px;
    align-items: start;
  }

  .footer-brand-block,
  .footer-menu-block,
  .footer-contact-card {
    padding: 18px 18px 16px;
  }

  .footer-brand-block {
    gap: 10px;
  }

  .footer-brand-block h3 {
    font-size: clamp(1.28rem, 1.65vw, 1.65rem);
  }

  .footer-brand-block p {
    max-width: 30ch;
    font-size: .96rem;
    line-height: 1.55;
  }

  .footer-menu-block {
    gap: 10px;
  }

  .footer-link-list {
    gap: 8px;
  }

  .footer-link-pill {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 13px;
  }

  .footer-contact-card {
    gap: 12px;
  }

  .footer-contact-list {
    gap: 10px;
  }

  .footer-contact-item p,
  .footer-contact-item a {
    font-size: .95rem;
    line-height: 1.45;
  }

  .footer-socials {
    gap: 6px;
  }

  .footer-social-pill.icon-only {
    width: 56px;
    min-height: 48px;
    height: 48px;
  }

  .footer-social-icon {
    width: 30px;
    height: 30px;
  }
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.notice.success { background: #e6f5ec; color: #155638; border-color: #c7e6d1; }
.notice.error { background: #ffeaea; color: var(--danger); border-color: #f6c8c8; }

.form-grid { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 700; color: var(--text-main); }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text-main);
  background: rgba(255,255,255,.92);
}
textarea { min-height: 120px; resize: vertical; }
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  padding: 0;
  border-radius: 6px;
}
input[type="file"] { min-height: 0; padding: 8px 0; border: 0; background: transparent; }

.table-wrap { overflow: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
tbody tr:hover { background: rgba(30,95,73,.04); }
.actions,
.table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-body {
  background:
    radial-gradient(circle at 10% 10%, rgba(226, 239, 231, 0.92), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(248, 241, 219, 0.96), transparent 30%),
    linear-gradient(180deg, #eef4ef 0%, #f5f8f5 100%);
}

.admin-shell { min-height: 100vh; padding: 0; }
.admin-layout {
  position: relative;
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  overflow-y: auto;
  display: grid;
  gap: 20px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(175, 196, 186, 0.7);
  box-shadow: none;
}

.admin-sidebar-head { display: grid; gap: 10px; }
.admin-sidebar-head h2 { font-size: 1.55rem; }

.admin-nav {
  display: grid;
  gap: 8px;
  margin-left: -6px;
}

.admin-nav a {
  display: block;
  min-height: 44px;
  padding: 12px 14px 12px 8px;
  border-radius: 16px;
  color: var(--green-900);
  font-weight: 700;
  font-size: .97rem;
  line-height: 1.4;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  overflow-wrap: anywhere;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: linear-gradient(135deg, rgba(30,95,73,.13), rgba(213,180,91,.18));
  transform: translateX(2px);
}

.admin-main {
  display: grid;
  gap: 20px;
  margin-left: 320px;
  padding: 24px;
  min-height: 100vh;
  align-content: start;
}

.admin-main h1 {
  font-size: clamp(1.8rem, 2.3vw, 2.35rem);
  line-height: 1.12;
  text-wrap: balance;
}

.admin-main h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.admin-main h3 {
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  line-height: 1.28;
}

.admin-main p {
  font-size: 1rem;
  line-height: 1.62;
}

.admin-module-panel {
  display: grid;
  gap: 18px;
}

.admin-module-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-module-header > div,
.admin-form-header > div,
.admin-topbar > div {
  min-width: 0;
}

.admin-module-header .table-actions {
  justify-content: flex-end;
}

.admin-module-subtitle {
  color: #5f6f79;
  max-width: 62ch;
}

.admin-empty-state {
  border: 1px dashed rgba(138, 168, 154, 0.8);
  background: rgba(246, 251, 248, 0.9);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 8px;
}

.admin-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.admin-item-card {
  border: 1px solid rgba(176, 200, 189, 0.68);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 248, 0.92));
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 280px;
  min-width: 0;
}

.admin-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-item-head > div {
  min-width: 0;
  flex: 1 1 220px;
}

.admin-item-title {
  font-size: 1.05rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.admin-item-id {
  color: #6d7c76;
  font-size: .82rem;
}

.admin-item-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30, 95, 73, 0.1);
  color: #0f4b38;
  font-weight: 700;
  font-size: .74rem;
}

.admin-item-body {
  display: grid;
  gap: 8px;
}

.admin-item-field {
  display: grid;
  gap: 2px;
}

.admin-item-field span {
  font-size: .74rem;
  color: #6e7e78;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.admin-item-field strong {
  font-size: .92rem;
  font-weight: 700;
  color: #153c30;
  line-height: 1.45;
  word-break: break-word;
}

.admin-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.admin-item-actions form {
  margin: 0;
}

.admin-item-actions .btn {
  min-height: 38px;
  padding-inline: 14px;
  font-size: .85rem;
}

.admin-item-actions .btn-link {
  min-height: 38px;
  padding: 0 14px;
}

.admin-form-shell {
  display: grid;
  gap: 18px;
}

.admin-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 16px;
}

.admin-form-main,
.admin-form-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.admin-form-side {
  position: sticky;
  top: 16px;
}

.admin-form-section {
  border: 1px solid rgba(176, 200, 189, 0.68);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 247, 0.92));
  padding: 18px;
  display: grid;
  gap: 14px;
}

.admin-form-section-head h3 {
  font-size: 1.02rem;
  letter-spacing: .01em;
}

.admin-form-section-body {
  display: grid;
  gap: 12px;
}

.admin-form-section-body > * {
  min-width: 0;
}

.admin-form-label {
  display: grid;
  gap: 7px;
}

.admin-label-title {
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #416459;
}

.admin-check-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.admin-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-form-note {
  color: #6f7d77;
  font-size: .94rem;
}

.admin-form-actions {
  display: grid;
  gap: 10px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.admin-breadcrumb {
  color: #6e7d79;
  font-size: .85rem;
  margin-bottom: 10px;
}

.admin-topbar-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-admin {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(30,95,73,.1);
  color: var(--green-900);
  font-weight: 700;
}

.badge-admin.muted {
  background: rgba(16,46,36,.06);
  color: #62706c;
}

.admin-stat-card {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.admin-stat-card p {
  color: #64766f;
  font-weight: 600;
}

.admin-stat-card h3 {
  font-size: 2.8rem;
  color: var(--green-900);
}

.quick-links { display: grid; gap: 16px; }

.admin-image-preview {
  display: block;
  max-width: 220px;
  max-height: 160px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-top: 10px;
}

.danger { color: var(--danger); }

@media (max-width: 1320px) {
  .admin-sidebar {
    width: 292px;
  }

  .admin-main {
    margin-left: 292px;
    padding: 20px;
    gap: 16px;
  }

  .admin-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.admin-login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(226, 239, 231, 0.92), transparent 32%),
    radial-gradient(circle at 86% 8%, rgba(248, 241, 219, 0.96), transparent 24%),
    linear-gradient(180deg, #dfe7d9 0%, #33412a 100%);
}

.auth-page-shell {
  width: min(880px, calc(100% - 32px));
  display: grid;
  gap: 16px;
}

.auth-notice { max-width: 680px; margin: 0 auto; }

.admin-login-card {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 28px;
  border-radius: 36px;
  box-shadow: 0 28px 68px rgba(16, 46, 36, 0.18);
  display: grid;
  gap: 18px;
}

.login-card-head { display: flex; justify-content: flex-start; }
.admin-login-card h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  gap: 24px;
  align-items: start;
}

.about-page-head {
  padding-top: 2px;
  padding-bottom: 2px;
}

.about-page-head .section-title {
  font-size: clamp(1.42rem, 1.85vw, 1.82rem);
  line-height: 1.08;
}

.about-page-head .section-subtitle {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.62;
  max-width: 62ch;
  color: #5c6982;
}

.about-profile-section {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 28px;
  border-radius: 30px;
  gap: 20px;
}

.about-profile-content {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
}

.about-profile-title {
  margin: 0;
  font-size: clamp(1.62rem, 1.95vw, 1.98rem);
  line-height: 1.08;
  letter-spacing: -.01em;
}

.about-profile-history {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.62;
  color: #5c6982;
}

.about-profile-notes {
  display: grid;
  gap: 10px;
  max-width: none;
}

.about-profile-notes article {
  border: 1px solid #d8e6df;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fcfa, #f0f8f4);
  padding: 11px 14px;
}

.about-profile-notes h4 {
  margin: 0 0 4px;
  font-size: .95rem;
  color: #174536;
}

.about-profile-notes p {
  margin: 0;
  color: #607282;
  font-size: .95rem;
  line-height: 1.55;
}

.profile-slider {
  min-width: 0;
  display: grid;
  gap: 0;
  align-content: stretch;
  height: 100%;
}

.profile-slider-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  border-radius: 22px;
  border: 1px solid #d5e6de;
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%;
  background: #eaf3ee;
  box-shadow: 0 20px 40px rgba(18, 53, 43, 0.12);
}

.profile-slider-track {
  display: flex;
  min-height: 100%;
  height: 100%;
  transition: transform .34s ease;
  will-change: transform;
}

.profile-slide-btn {
  flex: 0 0 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  height: 100%;
  min-height: 100%;
}

.profile-slide {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.03) contrast(1.01);
}

.profile-slide-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  color: #5e7287;
  font-weight: 600;
}

.profile-slider-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 3px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(8, 26, 20, .52);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(3px);
}

.profile-slider-caption strong {
  color: #f4fffa;
  font-size: .97rem;
  letter-spacing: .01em;
}

.profile-slider-caption span {
  color: rgba(233, 243, 255, .92);
  font-size: .79rem;
}

.profile-slider-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.profile-slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(9, 41, 31, .54);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}

.profile-slider-btn:hover {
  background: rgba(9, 41, 31, .74);
  transform: translateY(-1px);
}

.profile-slider-dots {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 4px;
}

.profile-slider-dot {
  width: 2px !important;
  height: 2px !important;
  min-width: 2px !important;
  min-height: 2px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.profile-slider-dot.active {
  background: #fff;
  opacity: 1;
  transform: scale(1.2);
}

.about-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 18, 15, .84);
  backdrop-filter: blur(8px);
}

.about-lightbox[hidden] {
  display: none;
}

.about-lightbox-image {
  width: min(100%, 1180px);
  max-height: min(88vh, 940px);
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
}

.about-lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.board-org-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(170, 204, 190, .5);
  background:
    radial-gradient(circle at 8% -10%, rgba(213, 180, 91, .1), transparent 34%),
    radial-gradient(circle at 102% 108%, rgba(30, 95, 73, .16), transparent 42%),
    linear-gradient(165deg, #ffffff 0%, #f7fcfa 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 24px 48px rgba(16, 52, 41, .08);
}

.org-level {
  position: relative;
  display: grid;
  gap: 16px;
}

.org-level-top {
  justify-content: center;
}

.org-level-exec,
.org-level-chief {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-level-team {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.org-level-exec,
.org-level-chief,
.org-level-team {
  padding-top: 24px;
}

.org-level-exec::before,
.org-level-chief::before,
.org-level-team::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, rgba(127, 175, 156, .8), rgba(127, 175, 156, .2));
  transform: translateX(-50%);
}

.org-level-exec::after,
.org-level-chief::after,
.org-level-team::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, rgba(127, 175, 156, .06), rgba(127, 175, 156, .76), rgba(127, 175, 156, .06));
}

.org-node {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(179, 211, 198, .6);
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(245,251,247,.92)),
    radial-gradient(circle at 100% 0%, rgba(213,180,91,.1), transparent 50%);
  box-shadow: 0 12px 24px rgba(13, 47, 37, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.org-node:hover {
  transform: translateY(-2px);
  border-color: rgba(150, 195, 176, .9);
  box-shadow: 0 16px 30px rgba(11, 42, 33, .12);
}

.org-node-lead {
  min-width: min(480px, 100%);
  max-width: 560px;
  justify-self: center;
  border-color: rgba(149, 193, 174, .8);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,250,244,.93)),
    radial-gradient(circle at 95% -6%, rgba(213,180,91,.2), transparent 54%);
  box-shadow: 0 18px 36px rgba(10, 43, 33, .14);
}

.org-node-small {
  min-height: 92px;
}

.org-node-avatar {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  border: 1px solid rgba(155, 198, 179, .62);
  background:
    linear-gradient(145deg, #0f5d45, #1f7b5b),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.22), transparent 44%);
  color: #f3fff8;
  display: grid;
  place-items: center;
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: .03em;
  background-size: cover;
  background-position: center;
}

.org-node-text {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.org-node-role {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(156, 197, 180, .82);
  background: rgba(229, 246, 238, .92);
  color: #156147;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .015em;
}

.org-node h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
  color: #163d31;
}

.org-node-detail {
  margin: 0;
  font-size: .82rem;
  line-height: 1.35;
  color: #547268;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prose {
  display: grid;
  gap: 18px;
}

.prose p,
.prose li { color: var(--text-main); }

.prayer-hero-board {
  display: grid;
  gap: 20px;
}

.prayer-card-grid {
  align-items: stretch;
}

.prayer-pill-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 120px;
}

.prayer-pill-card small {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #71817c;
}

.prayer-pill-card strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-900);
}

.prayer-modern {
  display: grid;
  gap: 16px;
}

.prayer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.prayer-head h3 {
  font-size: clamp(1.26rem, 1.9vw, 1.62rem);
  line-height: 1.18;
  margin-bottom: 4px;
}

.prayer-zone-select {
  min-width: min(360px, 100%);
  display: grid;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: #274038;
}

.prayer-zone-select select {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #c4d7cf;
  padding: 9px 12px;
  background: #fff;
  font: inherit;
}

.prayer-next {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  background: linear-gradient(130deg, #eef9f4, #f8fdfa);
  border-color: #cae4d9;
}

.prayer-next::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -5%;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, 0) 72%);
}

.prayer-next > div {
  position: relative;
  z-index: 1;
}

.prayer-next-copy {
  display: grid;
  gap: 4px;
}

.prayer-next > div > small {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4b6661;
}

.prayer-next h4 {
  margin-top: 4px;
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  font-weight: 650;
  letter-spacing: .01em;
}

.prayer-next p {
  margin-top: 5px;
  font-size: clamp(.88rem, 1.16vw, .98rem);
  color: #5a6e79;
}

.prayer-next-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 6px;
}

.prayer-next-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(15, 90, 67, .08);
  color: #245245;
  font-size: .74rem;
  font-weight: 700;
}

.prayer-countdown {
  position: relative;
  z-index: 1;
  min-width: 392px;
  border-radius: 34px;
  padding: 10px 13px 12px;
  border: 1px solid rgba(206, 235, 216, .55);
  background:
    radial-gradient(circle at 50% 105%, rgba(250, 227, 142, .45), transparent 27%),
    radial-gradient(circle at 68% 4%, rgba(215, 245, 178, .28), transparent 22%),
    linear-gradient(135deg, #1a7957 0%, #0c5d45 52%, #0a4535 100%);
  color: #fff;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.prayer-countdown-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding-bottom: 24px;
}

.prayer-countdown-row .countdown-unit {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 88px;
  padding: 9px 10px 8px;
  border-radius: 16px;
  border: 2px solid rgba(214, 245, 225, .4);
  background: linear-gradient(145deg, rgba(10, 70, 52, .92), rgba(7, 46, 36, .9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -7px 16px rgba(0, 0, 0, .24),
    0 6px 14px rgba(6, 38, 28, .22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prayer-countdown-row .countdown-unit strong {
  font-variant-numeric: tabular-nums;
  font-weight: 770;
  font-size: clamp(2.08rem, 2.38vw, 3.02rem);
  line-height: 1;
}

.prayer-countdown-row .countdown-unit small {
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: rgba(242, 252, 247, .94);
  white-space: nowrap;
}

.prayer-countdown-row em {
  margin-top: 39px;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffe8a2;
  box-shadow: 0 0 10px rgba(255, 232, 162, .62);
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.prayer-table-modern table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.prayer-table-modern th,
.prayer-table-modern td {
  text-align: left;
  border-bottom: 1px solid #dfeae5;
  padding: 11px 10px;
  font-size: .93rem;
  line-height: 1.38;
}

.prayer-table-modern th {
  color: #1f3c32;
  background: #f7fbfa;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.prayer-table-modern td:first-child {
  min-width: 196px;
  color: #2b3e46;
  font-weight: 600;
}

.prayer-mobile-list {
  display: none;
}

.prayer-mobile-card {
  border: 1px solid #d8e6df;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.prayer-mobile-date {
  font-size: .82rem;
  font-weight: 700;
  color: #24453a;
}

.prayer-mobile-hijri {
  font-size: .76rem;
  line-height: 1.35;
  color: #607486;
}

.prayer-mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.prayer-mobile-item {
  border: 1px solid #e2ece7;
  border-radius: 10px;
  background: #f8fcfa;
  padding: 6px 7px;
  display: grid;
  gap: 2px;
}

.prayer-mobile-item span {
  font-size: .66rem;
  color: #5f7380;
  line-height: 1.2;
}

.prayer-mobile-item strong {
  font-size: .8rem;
  color: #163f32;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
  }

  .page-content {
    padding-top: 122px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom) + 16px);
  }

  .menu-toggle-btn {
    display: none;
  }

  .header-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .header-row,
  .hero-content-grid,
  .split,
  .footer-grid,
  .admin-layout,
  .three-col,
  .two-col,
  .info-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .header-row-centered {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 78px;
    justify-items: center;
  }

  .nav-menu,
  .header-cta {
    justify-self: start;
  }

  .header-cta-compact {
    display: none;
  }

  .brand-center {
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero-float-card,
  .hero-float-top,
  .hero-float-bottom {
    display: none;
  }

  .site-header {
    z-index: 60;
  }

  .quick-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview-shell {
    grid-template-columns: 1fr;
  }

  .history-overview-timeline {
    grid-template-columns: 1fr;
  }

  .program-active-grid {
    grid-template-columns: 1fr;
  }

  .contact-home-card,
  .map-home-card {
    padding: 26px 24px;
  }

  .home-map-frame {
    min-height: 420px;
  }

  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-actions {
    right: 18px;
    bottom: calc(68px + env(safe-area-inset-bottom) + 12px);
  }

  .language-switcher-popup {
    right: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-lightbox-shell {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-nav {
    position: absolute;
    top: calc(50% - 26px);
  }

  .gallery-lightbox-prev {
    left: 12px;
  }

  .gallery-lightbox-next {
    right: 12px;
  }

  .header-actions {
    justify-self: start;
  }

  .admin-sidebar {
    position: static;
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(217, 228, 220, 0.9);
    box-shadow: var(--shadow-md);
  }

  .admin-list-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    margin-left: 0;
    padding: 0 4px 8px;
    min-height: 0;
  }

  .admin-module-header .table-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-form-layout,
  .admin-inline-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-side {
    position: static;
  }

  .hero-actions,
  .hero-actions-main,
  .hero-actions-accent,
  .cta-row {
    flex-wrap: wrap;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 430px);
    height: calc(68px + env(safe-area-inset-bottom));
    padding: 0 0 env(safe-area-inset-bottom);
    border-radius: 0;
    border: 0;
    border-top: 1px solid #dde8e3;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 24px rgba(14, 56, 45, 0.12);
    gap: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-bottom-nav a {
    min-height: 68px;
    border-radius: 0;
    gap: 6px;
    border: 0;
    color: #33594f;
    display: grid;
    place-items: center;
    padding: 5px 2px;
  }

  .mobile-bottom-nav a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav a span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
  }

  .mobile-bottom-nav a.active {
    background: transparent;
    border: 0;
    color: #0f5a43;
    transform: none;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .menu-toggle-btn {
    display: none;
  }

  .header-row-centered {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand-center {
    justify-self: center;
  }

  .container {
    width: min(1240px, 100% - 24px);
  }

  .page-content {
    gap: 38px;
    padding-top: 98px;
    padding-bottom: 78px;
  }

  .header-row-centered {
    gap: 8px;
    min-height: 68px;
  }

  .brand-full-logo {
    width: min(64vw, 238px);
    max-height: 52px;
  }

  .header-cta {
    gap: 8px;
  }

  .header-cta-compact .btn {
    width: auto;
    min-width: 108px;
    height: 36px;
    min-height: 36px;
    font-size: .73rem;
    padding: 0 12px;
  }

  .lang-chip {
    min-width: 108px;
    height: 36px;
    min-height: 36px;
    padding: 0 10px;
    font-size: .73rem;
    gap: 6px;
  }

  .lang-chip-globe {
    width: 16px;
    height: 16px;
  }

  .lang-chip-globe svg {
    width: 16px;
    height: 16px;
  }

  .lang-chip-flag {
    font-size: .9rem;
  }

  .lang-chip-value {
    font-size: .73rem;
  }

  .lang-chip-caret {
    margin-left: 4px;
    font-size: .7rem;
  }

  .nav-drawer {
    left: 8px;
    top: 68px;
    width: min(286px, calc(100vw - 16px));
    max-height: min(78vh, 560px);
  }

  .card,
  .admin-login-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-modern {
    border-radius: 24px;
  }

  .hero-content {
    padding: 24px 22px 28px;
    width: 100%;
    min-width: 0;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero-title,
  .hero-modern h1 {
    font-size: clamp(2.05rem, 10.2vw, 2.8rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    max-width: none;
    text-align: left;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }

  .hero-content-grid,
  .hero-left,
  .hero-right {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero-content .kicker {
    white-space: normal;
    line-height: 1.35;
  }

  .hero-float-card {
    position: static;
    max-width: none;
  }

  .hero-visual-shell {
    gap: 16px;
    min-height: unset;
  }

  .hero-visual-wrap {
    min-height: clamp(340px, 74vw, 460px);
    aspect-ratio: 16 / 10;
  }

  .hero-slider-controls,
  .hero-slider-dots {
    position: absolute;
  }

  .hero-slider-controls {
    top: 12px;
    left: 12px;
    right: auto;
  }

  .hero-slider-dots {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 12px;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .about-profile-section {
    padding: 18px;
    gap: 16px;
  }

  .about-profile-title {
    font-size: clamp(1.72rem, 8.2vw, 2.22rem);
    line-height: 1;
  }

  .about-profile-history {
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-profile-notes {
    gap: 8px;
    max-width: none;
  }

  .about-profile-notes article {
    padding: 11px 14px;
    border-radius: 14px;
  }

  .about-profile-notes h4 {
    font-size: .95rem;
  }

  .about-profile-notes p {
    font-size: .95rem;
    line-height: 1.55;
  }

  .profile-slider-viewport {
    border-radius: 18px;
    aspect-ratio: 16 / 8.8;
    min-height: 260px;
    height: auto;
  }

  .profile-slider-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .profile-slider-controls {
    top: 10px;
    right: 10px;
  }

  .profile-slider-btn {
    width: 31px;
    height: 31px;
  }

  .profile-slider-dots {
    right: 12px;
    bottom: 12px;
  }

  .about-lightbox-image {
    max-height: 84vh;
    border-radius: 14px;
  }

  .about-lightbox-close {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }

  .about-page-head .section-title {
    font-size: clamp(1.72rem, 8.2vw, 2.22rem);
    line-height: 1;
  }

  .about-page-head .section-subtitle {
    font-size: .98rem;
    line-height: 1.62;
  }

  .prayer-head {
    display: grid;
    gap: 10px;
    align-items: stretch;
  }

  .prayer-zone-select {
    min-width: 0;
  }

  .prayer-zone-select select {
    min-height: 46px;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 1rem;
  }

  .prayer-zone-select select option {
    font-size: 1rem;
  }

  .prayer-table-modern {
    display: none;
  }

  .prayer-mobile-list {
    display: grid;
    gap: 8px;
  }

  .prayer-next {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px 10px 11px;
  }

  .prayer-next > div,
  .prayer-countdown,
  .prayer-countdown-row,
  .prayer-countdown-row .countdown-unit {
    min-width: 0;
  }

  .prayer-countdown {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
    padding: 6px 7px 8px;
    gap: 6px;
  }

  .prayer-countdown-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    gap: 6px;
    padding-bottom: 14px;
  }

  .prayer-countdown-row .countdown-unit {
    min-height: 54px;
    padding: 5px 4px;
    border-radius: 9px;
    border-width: 1px;
  }

  .prayer-countdown-row .countdown-unit strong {
    font-size: clamp(1.85rem, 8vw, 2.05rem);
  }

  .prayer-countdown-row .countdown-unit small {
    bottom: -15px;
    font-size: .48rem;
    letter-spacing: .04em;
  }

  .prayer-countdown-row em {
    width: 5px;
    height: 5px;
    margin-top: 23px;
  }

  .board-org-wrap {
    padding: 16px;
    gap: 12px;
    border-radius: 20px;
  }

  .org-level-exec,
  .org-level-chief,
  .org-level-team {
    grid-template-columns: 1fr;
  }

  .org-level-exec::after,
  .org-level-chief::after,
  .org-level-team::after {
    left: 8%;
    right: 8%;
  }

  .org-level-team::after {
    display: none;
  }

  .org-node {
    min-height: 84px;
    gap: 10px;
    padding: 12px;
  }

  .org-node-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .org-node h3 {
    font-size: .95rem;
  }

  .org-node-detail {
    font-size: .75rem;
    -webkit-line-clamp: 1;
  }

  .org-node-lead {
    min-width: 0;
  }

  .quick-panels {
    grid-template-columns: 1fr;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    min-height: 0;
  }

  .about-preview-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-gallery-item-1,
  .about-gallery-item-2,
  .about-gallery-item-3,
  .about-gallery-item-empty {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .donation-card-home {
    min-height: 0;
    gap: 14px;
  }

  .donation-card-home .donation-card-head {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .donation-card-home h3 {
    font-size: clamp(1.52rem, 5.8vw, 2rem);
    line-height: 1.12;
    min-height: 0;
    -webkit-line-clamp: 3;
  }

  .donation-card-home p {
    font-size: 1rem;
    line-height: 1.56;
    min-height: 0;
    -webkit-line-clamp: 4;
  }

  .donation-card-home .donation-amount {
    text-align: left;
    gap: 2px;
  }

  .donation-card-home .donation-amount strong {
    font-size: clamp(1.52rem, 5.8vw, 2rem);
  }

  .donation-card-home .donation-amount span {
    font-size: 1rem;
    white-space: normal;
  }

  .donation-meta-grid {
    grid-template-columns: 1fr;
  }

  .donation-meta-grid > div {
    min-height: 0;
  }

  .donation-progress-head strong {
    min-width: 54px;
  }

  .home-contact-header .section-title {
    font-size: clamp(2.1rem, 8vw, 2.7rem);
    line-height: 1.02;
  }

  .home-contact-header .section-subtitle {
    font-size: 1.04rem;
  }

  .contact-home-card h3,
  .map-home-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .home-contact-list strong,
  .home-contact-list span {
    font-size: 1rem;
    line-height: 1.4;
  }

  .home-map-frame {
    min-height: 320px;
  }

  .footer-grid {
    padding: 26px 0 18px;
    gap: 14px;
  }

  .footer-brand-block,
  .footer-menu-block,
  .footer-contact-card {
    padding: 16px;
    border-radius: 16px;
  }

  .footer-brand-block p {
    max-width: none;
    font-size: .92rem;
  }

  .footer-social-pill.icon-only {
    width: 50px;
    min-height: 46px;
    height: 46px;
  }

  .footer-social-icon {
    width: 28px;
    height: 28px;
  }

  .floating-actions {
    right: 10px;
    gap: 7px;
  }

  .floating-action-language {
    width: 34px;
    height: 34px;
  }

  .floating-action-donation {
    width: 34px;
    height: 34px;
  }

  .floating-action-whatsapp {
    width: 38px;
    height: 38px;
  }

  .language-switcher-popup {
    width: min(224px, calc(100vw - 24px));
    border-radius: 14px;
  }

  .language-switcher-popup-list {
    gap: 6px;
    padding: 8px;
  }

  .language-option {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 15px;
  }

  .language-option-main {
    gap: 8px;
  }

  .language-option-check {
    font-size: 16px;
  }

  .whatsapp-switcher-popup {
    right: 10px;
    bottom: calc(54px + env(safe-area-inset-bottom));
    width: min(304px, calc(100vw - 20px));
    border-radius: 14px;
  }

  .article-compact,
  .home-media-card,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-image {
    height: min(60vh, 520px);
  }

  .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .search-bar-shell {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .donation-action-row {
    justify-content: stretch;
  }

  .donation-open-btn {
    width: 100%;
  }

  .donation-catalog-cover {
    min-height: 230px;
    padding: 14px;
  }

  .donation-catalog-cover-tag {
    top: 12px;
    left: 12px;
  }

  .donation-catalog-cover strong {
    padding-top: 38px;
  }

  .donation-modal-dialog {
    width: calc(100vw - 16px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
    border-radius: 20px;
    padding: 16px;
  }

  .donation-modal-method-list {
    grid-template-columns: 1fr;
  }

  .donation-modal-highlight {
    grid-template-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .donation-copy-btn,
  .donation-copy-btn-soft {
    width: 100%;
    justify-content: center;
  }

  .donation-toast {
    bottom: calc(84px + env(safe-area-inset-bottom));
    font-size: .8rem;
    max-width: calc(100vw - 24px);
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .nav-drawer {
    top: 74px;
    left: 12px;
    width: min(290px, calc(100vw - 24px));
    max-height: min(74vh, 560px);
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1240px, 100% - 20px);
  }

  .brand-full-logo {
    width: min(58vw, 210px);
    max-height: 46px;
  }

  .header-cta-compact .btn {
    min-width: 102px;
    height: 34px;
    min-height: 34px;
    font-size: .7rem;
  }

  .lang-chip {
    min-width: 102px;
    height: 34px;
    min-height: 34px;
    font-size: .7rem;
  }

  .hero-content {
    padding: 16px 12px 18px;
    width: 100%;
    min-width: 0;
  }

  .prayer-zone-select select {
    min-height: 48px;
    font-size: 1.02rem;
  }

  .prayer-zone-select select option {
    font-size: 1.02rem;
  }

  .hero-title,
  .hero-modern h1 {
    font-size: clamp(1.94rem, 11.2vw, 2.46rem);
    line-height: .98;
  }

  .hero-content p {
    font-size: .98rem;
    line-height: 1.58;
    text-align: left;
  }

  .hero-content .kicker {
    font-size: .78rem;
    letter-spacing: .12em;
  }

  .hero-visual-wrap {
    min-height: clamp(286px, 88vw, 360px);
    aspect-ratio: 16 / 11;
  }

  .hero-float-top {
    width: min(130px, calc(100% - 20px));
    top: 10px;
    right: 10px;
    left: auto;
    bottom: auto;
  }

  .hero-float-bottom {
    width: min(126px, calc(100% - 20px));
    left: 10px;
    bottom: 10px;
    right: auto;
    top: auto;
  }

  .hero-float-card {
    padding: 5px 7px;
  }

  .hero-float-card small {
    font-size: .58rem;
  }

  .hero-float-card strong {
    font-size: .74rem;
  }

  .hero-float-card span {
    font-size: .62rem;
  }

  .nav-drawer {
    left: 8px;
    top: 68px;
    width: min(286px, calc(100vw - 16px));
    max-height: min(78vh, 560px);
  }
}

@media (max-width: 375px) {
  .floating-actions {
    right: 8px;
    gap: 4px;
  }

  .floating-action-language,
  .floating-action-donation {
    width: 32px;
    height: 32px;
  }

  .floating-action-whatsapp {
    width: 36px;
    height: 36px;
  }
}
