:root {
  --ink: #14231f;
  --muted: #61716c;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe6df;
  --green: #174f3f;
  --green-2: #0f372e;
  --sage: #dfe9df;
  --gold: #c69a3f;
  --gold-dark: #9d7627;
  --header-bg: rgba(251, 250, 246, 0.94);
  --header-bg-scrolled: rgba(251, 250, 246, 0.98);
  --soft-surface: #eef3ed;
  --field-bg: #ffffff;
  --shadow-color: rgba(20, 35, 31, 0.12);
}

:root[data-theme="dark"] {
  --ink: #edf5f0;
  --muted: #aebdb6;
  --paper: #0c1714;
  --surface: #13231e;
  --line: #2a4038;
  --green: #76b69e;
  --green-2: #0a2d25;
  --sage: #203b32;
  --gold: #d7ad57;
  --gold-dark: #e4be6d;
  --header-bg: rgba(12, 23, 20, 0.94);
  --header-bg-scrolled: rgba(12, 23, 20, 0.98);
  --soft-surface: #101f1a;
  --field-bg: #172923;
  --shadow-color: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: 0 12px 30px var(--shadow-color);
}

.navbar {
  min-height: 78px;
  padding: 0;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.desktop-navigation {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.mobile-menu-toggle,
.mobile-drawer,
.mobile-menu-backdrop {
  display: none;
}

.member-login-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.member-nav {
  position: relative;
}

.member-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  max-width: 190px;
  padding: 5px 9px 5px 5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
}

.member-badge > span:last-child,
.mobile-member-summary > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.member-badge small,
.mobile-member-summary small {
  color: var(--muted);
  font-size: 0.68rem;
}

.member-badge strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-avatar {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.member-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 30;
  width: 210px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(20, 35, 31, 0.14);
}

.member-menu a,
.member-menu button {
  display: block;
  width: 100%;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
}

.member-menu a:hover,
.member-menu button:hover {
  background: var(--sage);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

.brand:hover {
  color: var(--green);
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-weight: 600;
}

.nav-link {
  color: var(--ink);
  font-weight: 650;
  padding-inline: 0.75rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-dark);
}

.btn {
  border-radius: 8px;
  font-weight: 750;
  letter-spacing: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold {
  color: #15120a;
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #15120a;
  background: #d7aa4e;
  border-color: #d7aa4e;
}

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 28, 23, 0.9), rgba(8, 28, 23, 0.48) 55%, rgba(8, 28, 23, 0.72)),
    url("/images/kuba-header.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroBreathe 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 72px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  animation: heroCopyIn 900ms cubic-bezier(.2, .75, .25, 1) both;
}

.eyebrow {
  display: inline-block;
  color: #f4d28b;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(4rem, 9vw, 8.2rem);
  font-weight: 850;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.prayer-panel {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: prayerPanelIn 1000ms 180ms cubic-bezier(.2, .75, .25, 1) both;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: var(--green);
  color: #fff;
}

.panel-heading span {
  color: #dce9e2;
}

.prayer-list {
  display: grid;
}

.prayer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.prayer-row:last-child {
  border-bottom: 0;
}

.prayer-row.is-current {
  background: #f8efd9;
  box-shadow: inset 4px 0 0 var(--gold);
}

.panel-source {
  display: block;
  padding: 14px 24px;
  color: var(--green);
  background: #f7f9f4;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
}

.panel-source:hover {
  color: var(--gold-dark);
}

.section {
  padding: 86px 0;
}

.pt-0 {
  padding-top: 0;
}

.section-light {
  background: var(--soft-surface);
}

.section-accent {
  background: var(--green-2);
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.split h2,
.section-heading h2,
.documents-strip h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 820;
}

.split p,
.documents-strip p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-accent p {
  color: rgba(255, 255, 255, 0.76);
}

.document-list a,
.document-card {
  text-decoration: none;
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.document-card:hover,
.document-list a:hover {
  transform: translateY(-2px);
}

.community-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 64px;
  align-items: end;
}

.community-intro h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 820;
}

.community-intro h3 {
  font-size: 1.45rem;
  font-weight: 820;
}

.community-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 34px;
}

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

.info-card {
  min-height: 280px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #d3bd76;
  box-shadow: 0 20px 50px rgba(20, 35, 31, 0.1);
}

.info-card span {
  color: var(--gold-dark);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.info-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
  font-weight: 800;
}

.info-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.info-card small {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.documents-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-list a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.document-list span,
.document-card span {
  color: #f4d28b;
  font-size: 0.78rem;
  font-weight: 850;
}

.page-hero {
  background: var(--green);
  color: #fff;
  padding: 92px 0 78px;
}

.page-hero.compact {
  background-image: linear-gradient(135deg, var(--green), #1e6852);
}

.donation-hero {
  padding-bottom: 92px;
}

.donation-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero.image {
  min-height: 470px;
  display: flex;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(8, 28, 23, 0.86), rgba(8, 28, 23, 0.34)),
    url("/images/kuba-community.jpeg");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  max-width: 900px;
  margin-top: 12px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 850;
}

.page-hero p {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.prayer-page-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.time-tile {
  min-height: 170px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  align-content: space-between;
}

.time-tile span {
  color: var(--muted);
  font-weight: 800;
}

.time-tile strong {
  font-size: 2.25rem;
  line-height: 1;
}

.time-tile.is-current {
  background: #f8efd9;
  border-color: #e4c777;
}

.prayer-source-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prayer-source-banner span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.prayer-source-banner strong {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
}

.prayer-source-banner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.live-screen .section-heading {
  max-width: 760px;
}

.live-screen .section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.live-screen iframe {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #081c17;
  display: block;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item > div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.timeline-item span {
  color: var(--gold-dark);
  font-weight: 850;
}

.timeline-item h2 {
  font-size: 1.6rem;
  font-weight: 820;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.content-grid,
.anbi-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}

.content-grid article {
  max-width: 760px;
}

.content-grid h2,
.contact-panel h2 {
  font-size: 2.4rem;
  font-weight: 840;
}

.content-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.fact-box,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.fact-box {
  display: grid;
  gap: 8px;
}

.fact-box span {
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-box span:first-child {
  margin-top: 0;
}

.fact-box strong {
  overflow-wrap: anywhere;
}

.anbi-layout {
  grid-template-columns: 390px minmax(0, 1fr);
}

.anbi-hero {
  position: relative;
  overflow: hidden;
}

.anbi-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.035), 0 0 0 96px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.anbi-intro-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.anbi-intro-grid article {
  max-width: 760px;
}

.anbi-intro-grid article h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 850;
}

.anbi-intro-grid article p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.document-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.document-summary span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 8px 12px;
  color: var(--green);
  background: #edf4ee;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
}

.document-summary strong {
  font-size: 1rem;
}

.premium-fact-box {
  box-shadow: 0 24px 70px rgba(20, 35, 31, 0.1);
}

.document-library {
  display: grid;
  gap: 76px;
}

.document-group {
  scroll-margin-top: 100px;
}

.document-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.document-group-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 850;
}

.document-group-heading > strong {
  color: var(--green);
  white-space: nowrap;
}

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

.premium-document-card {
  position: relative;
  min-height: 285px;
  padding: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-document-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(198, 154, 63, 0.08), transparent 65%);
  content: "";
  transform: translateX(-120%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.premium-document-card:hover {
  transform: translateY(-4px);
  border-color: #d3bd76;
  box-shadow: 0 22px 54px rgba(20, 35, 31, 0.1);
}

.premium-document-card:hover::after {
  transform: translateX(120%);
}

.premium-document-card.is-unavailable {
  background: linear-gradient(145deg, #f8f8f4, #f0f1ec);
  border-color: #d8ddd6;
}

.document-card-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.document-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.is-unavailable .document-icon {
  color: var(--muted);
  background: #e3e6e0;
}

.document-availability {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.document-availability.is-published {
  color: #1d604d;
  background: #e4f1e8;
}

.document-availability.is-pending {
  color: #6b716d;
  background: #e4e7e2;
}

.premium-document-card > span {
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.premium-document-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 820;
}

.premium-document-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.document-actions a,
.document-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--green);
  background: #edf4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.document-actions a:hover,
.document-actions button:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.document-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.document-status span {
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.document-dialog {
  width: min(1180px, calc(100vw - 40px));
  height: min(880px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 38px 110px rgba(4, 20, 15, 0.45);
}

.document-dialog::backdrop {
  background: rgba(5, 22, 17, 0.82);
  backdrop-filter: blur(10px);
}

.document-dialog-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.document-dialog-header,
.document-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
}

.document-dialog-header {
  border-bottom: 1px solid var(--line);
}

.document-dialog-header h2 {
  margin-top: 3px;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 850;
}

.document-dialog-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--green);
  background: #edf4ee;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.document-dialog-viewer {
  min-height: 0;
  padding: 12px;
  background: #dfe4df;
}

.document-dialog-viewer iframe {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border: 0;
  border-radius: 8px;
}

.document-dialog-footer {
  border-top: 1px solid var(--line);
}

.document-dialog-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.document-card {
  min-height: 180px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.document-card strong {
  margin-top: 16px;
  font-size: 1.2rem;
}

.document-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.social-media-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
}

.facebook-feed {
  display: flex;
  height: 100%;
  padding: 26px;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facebook-feed .section-heading {
  margin-bottom: 22px;
}

.facebook-feed .section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.facebook-feed iframe {
  width: 100%;
  max-width: none;
  min-height: 620px;
  flex: 1 1 620px;
  display: block;
  margin-bottom: 18px;
  border: 0;
  background: #f2f4f7;
}

.facebook-feed > .btn {
  margin-top: auto;
}

.media-feature {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
}

.media-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 25, 20, 0.88));
  content: "";
}

.media-feature img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1);
}

.media-feature:hover img {
  transform: scale(1.045);
}

.media-feature div {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: #fff;
}

.media-feature span {
  color: #f4d28b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.media-feature h3 {
  max-width: 560px;
  margin-top: 10px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 850;
}

.media-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(198, 154, 63, 0.13), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f1f4ef 100%);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}

.gallery-heading > div {
  max-width: 720px;
}

.gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, 150px);
  gap: 14px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(19, 46, 38, 0.12);
}

.gallery-card-main {
  grid-column: 1 / span 7;
  grid-row: 1 / span 4;
}

.gallery-card:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}

.gallery-card:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
}

.gallery-card:nth-child(4) {
  grid-column: 1 / span 4;
  grid-row: 5 / span 2;
}

.gallery-card:nth-child(5) {
  grid-column: 5 / span 4;
  grid-row: 5 / span 2;
}

.gallery-card:nth-child(6) {
  grid-column: 9 / span 4;
  grid-row: 5 / span 2;
}

.gallery-card button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: none;
  border: 0;
  text-align: left;
  cursor: zoom-in;
}

.gallery-card button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 22, 0.02) 32%, rgba(8, 28, 22, 0.88) 100%);
  content: "";
  transition: background 300ms ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2, .75, .25, 1), filter 300ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.02);
}

.gallery-card button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.gallery-card figcaption small,
.gallery-card figcaption strong {
  display: block;
}

.gallery-card figcaption small {
  color: #efd18f;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  margin-top: 4px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.gallery-index {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(10, 31, 25, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-credit {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.gallery-credit a {
  color: var(--green);
  font-weight: 800;
}

.gallery-is-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1120px) 72px;
  align-items: center;
  justify-content: center;
  padding: 38px;
  color: #fff;
  background: rgba(5, 17, 14, 0.94);
  backdrop-filter: blur(18px);
}

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

.gallery-lightbox figure {
  max-height: calc(100vh - 76px);
  margin: 0;
  overflow: hidden;
  background: #0b211b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox img {
  width: 100%;
  max-height: calc(100vh - 170px);
  display: block;
  object-fit: contain;
}

.gallery-lightbox figcaption {
  min-height: 72px;
  padding: 14px 20px;
}

.gallery-lightbox figcaption small,
.gallery-lightbox figcaption strong {
  display: block;
}

.gallery-lightbox figcaption small {
  color: #efd18f;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 50px;
  height: 50px;
  justify-self: center;
  font-size: 1.4rem;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 34px;
  align-items: start;
}

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

.donation-card {
  min-height: 230px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.donation-card:hover,
.donation-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  outline: none;
}

.donation-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.donation-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
  font-weight: 820;
}

.donation-card p {
  margin: 12px 0 14px;
  color: var(--muted);
}

.donation-card small {
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 780;
}

.donation-card strong {
  margin-top: auto;
  color: var(--green);
  font-size: 1.05rem;
}

.donation-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(191, 143, 43, 0.18);
}

.payment-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(20, 35, 31, 0.12);
}

.payment-header {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.payment-header span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-header strong {
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.payment-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.donation-notice {
  margin-top: 18px;
  padding: 12px 14px;
  color: #674d16;
  background: #fff6df;
  border: 1px solid #ead39c;
  border-radius: 8px;
  font-weight: 750;
}

.mollie-form {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.mollie-form label {
  font-size: 0.9rem;
  font-weight: 820;
}

.mollie-form input,
.mollie-form select {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.mollie-form small {
  color: var(--muted);
  text-align: center;
}

.conditional-fields {
  display: grid;
  gap: 10px;
}

.conditional-fields[hidden] {
  display: none;
}

.education-total {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  color: var(--green);
  background: #f7f1df;
  border: 1px solid #e2c77d;
  border-radius: 8px;
}

.education-total[hidden] {
  display: none;
}

.education-total span,
.education-students__head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.education-total strong {
  font-size: 1rem;
}

.education-students {
  padding: 14px;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.education-students__head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.education-students__head > div {
  display: grid;
  gap: 2px;
}

.student-list {
  display: grid;
  gap: 10px;
}

.student-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.6fr) 32px;
  gap: 10px;
  align-items: end;
}

.student-row > div {
  display: grid;
  gap: 7px;
}

.student-remove {
  width: 32px;
  height: 46px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1;
}

.student-remove:hover {
  color: #6d1f16;
  border-color: #d6a19a;
  background: #fff1ef;
}

.member-login-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--sage);
}

.member-login-panel p {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
}

.member-login-panel a {
  color: var(--green);
  font-weight: 800;
}

.mollie-form input[readonly] {
  color: #42534d;
  background: #edf3ee;
  border-color: #cdd9d0;
}

.member-login-page {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 64px 24px;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98), rgba(251, 250, 246, 0.86)),
    url("/images/kuba-community.jpeg") center / cover;
}

.member-login-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 35, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(20, 35, 31, 0.16);
  overflow: hidden;
}

.member-login-copy {
  padding: 52px;
  background: #edf3ee;
}

.member-login-copy .brand {
  margin-bottom: 54px;
  text-decoration: none;
}

.member-login-copy h1 {
  margin: 10px 0 12px;
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.member-login-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.member-login-copy li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold-dark);
  font-weight: 900;
}

.member-login-form-wrap {
  display: grid;
  align-items: center;
  padding: 44px;
}

.member-login-form {
  display: grid;
  gap: 10px;
}

.member-login-form label {
  margin-top: 8px;
  font-weight: 800;
}

.member-login-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #b9c7bf;
  border-radius: 6px;
  font: inherit;
}

.member-login-form > span,
.member-login-form .validation-summary {
  color: #8a2721;
  font-size: 0.86rem;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 82px;
}

.password-field button {
  position: absolute;
  top: 7px;
  right: 7px;
  min-height: 34px;
  padding: 0 9px;
  color: var(--green);
  background: var(--sage);
  border: 0;
  border-radius: 5px;
  font-weight: 800;
}

.remember-choice {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 14px !important;
  font-weight: 650 !important;
}

.remember-choice input {
  width: 18px;
  min-height: 18px;
}

.login-back {
  margin-top: 8px;
  color: var(--green);
  text-align: center;
  font-weight: 750;
}

.amount-choice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.amount-choice[hidden] {
  display: none;
}

.amount-choice button {
  min-height: 42px;
  color: var(--green);
  background: #edf4ee;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
}

.amount-choice button:hover,
.amount-choice button.is-active {
  color: #15120a;
  background: #f8efd9;
  border-color: #e4c777;
}

.payment-divider {
  position: relative;
  margin: 22px 0 4px;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 750;
}

.payment-divider::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.payment-divider span {
  position: relative;
  padding: 0 10px;
  background: var(--surface);
}

.bank-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 18px;
}

.bank-details div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #f4f6f0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bank-details span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bank-details strong {
  overflow-wrap: anywhere;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
}

.trust-grid article h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 820;
}

.trust-grid article p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 780;
}

.faq-section .section-heading {
  max-width: 760px;
}

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

.faq-card {
  min-height: 170px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-card h3 {
  font-size: 1.2rem;
  font-weight: 820;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.objective-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.objective-grid span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.objective-grid h3 {
  margin-top: 40px;
  font-size: 1.25rem;
  font-weight: 820;
}

.objective-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.board-heading {
  max-width: 760px;
}

.board-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.board-card {
  min-height: 365px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.board-card:hover {
  transform: translateY(-7px);
  border-color: #d3bd76;
  box-shadow: 0 26px 60px rgba(20, 35, 31, 0.13);
}

.board-card img,
.board-placeholder {
  width: 100%;
  height: 285px;
  display: grid;
  place-items: center;
  object-fit: cover;
  object-position: center top;
  color: #fff;
  background: var(--green);
  font-size: 4rem;
  font-weight: 850;
  transition: transform 600ms ease;
}

.board-card:hover img {
  transform: scale(1.035);
}

.board-card div:last-child {
  padding: 18px 20px 20px;
}

.board-card h3 {
  font-size: 1.18rem;
  font-weight: 820;
}

.board-card span {
  display: block;
  margin-top: 5px;
  color: var(--gold-dark);
  font-weight: 800;
}

.board-policy {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .75, .25, 1);
}

.js-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.js-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.js-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.js-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.js-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
.js-stagger.is-visible > *:nth-child(7) { transition-delay: 480ms; }
.js-stagger.is-visible > *:nth-child(8) { transition-delay: 560ms; }
.js-stagger.is-visible > *:nth-child(9) { transition-delay: 640ms; }

@keyframes heroBreathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.075); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes prayerPanelIn {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

.map-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--sage);
}

.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #10221d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer span {
  display: block;
}

.site-footer a {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.language-switcher {
  display: flex;
  gap: 3px;
  margin-left: 10px;
}

.language-switcher button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-switcher button.is-active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.theme-toggle {
  width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.theme-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: inset -5px -3px 0 0 var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

[data-theme="dark"] .theme-toggle-icon {
  box-shadow: inset 0 0 0 3px var(--surface);
  transform: rotate(180deg);
}

.mobile-theme-toggle {
  width: 100%;
  min-height: 46px;
  gap: 8px;
  justify-content: center;
  margin: 14px 0 0;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.86rem;
}

.theme-toggle:not(.mobile-theme-toggle) .theme-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.next-prayer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 24px;
  color: #fff;
  background: #183b31;
}

.next-prayer strong {
  color: var(--gold);
}

.next-prayer-page {
  margin-bottom: 20px;
  border-radius: 6px;
}

.info-card a,
.news-card a {
  color: var(--green);
  font-weight: 800;
}

.section-heading-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(16, 34, 29, 0.12);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover img {
  transform: scale(1.035);
}

.news-card > div {
  padding: 24px;
}

.news-card small {
  color: var(--gold-dark);
  font-weight: 800;
}

.news-card h2,
.news-card h3 {
  margin: 8px 0 12px;
}

.article-page {
  padding-bottom: 80px;
}

.article-hero {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

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

.article-body {
  padding-top: 56px;
}

.article-body h1 {
  margin: 10px 0 24px;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.article-body p,
.legal-copy p {
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-copy h2 {
  margin-top: 34px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.social-consent {
  display: grid;
  place-content: center;
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

[data-social-frame]:not([src]) {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1800;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 980px;
  margin: auto;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: #fff;
  background: #10221d;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
}

.cookie-banner > div:last-child {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.admin-login {
  display: grid;
  min-height: 75vh;
  place-items: center;
  padding: 50px 16px;
  background: var(--sage);
}

.admin-form {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.admin-login .admin-form {
  width: min(460px, 100%);
}

.admin-form label {
  color: var(--green);
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 46px;
  margin-top: 5px;
  padding: 10px 12px;
  border: 1px solid #b9c2bd;
  border-radius: 4px;
  background: #fff;
}

.admin-form textarea {
  min-height: 120px;
}

.admin-shell {
  padding: 54px 0 90px;
  background: #f4f6f4;
}

.admin-header,
.admin-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.admin-metrics article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.admin-metrics span,
.admin-metrics strong {
  display: block;
}

.admin-metrics strong {
  margin-top: 8px;
  color: var(--green);
  font-size: 1.35rem;
}

.admin-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  background: #fff;
}

.admin-tabs {
  position: sticky;
  z-index: 20;
  top: 76px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-tabs a {
  padding: 8px 12px;
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.admin-section {
  scroll-margin-top: 150px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  padding: 20px;
  background: #f7f8f7;
}

.admin-form-grid .wide {
  grid-column: 1 / -1;
}

.admin-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-form .check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
}

.admin-list {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.admin-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.admin-list span {
  display: block;
  color: var(--muted);
}

.icon-delete {
  width: 38px;
  height: 38px;
  border: 1px solid #d7aaa7;
  border-radius: 4px;
  color: #8a2721;
  background: #fff;
  font-size: 1.3rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.status-pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--green);
  background: var(--sage);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .desktop-navigation {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    place-content: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--green);
    transition: transform 180ms ease;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(10, 22, 18, 0.48);
    opacity: 1;
    backdrop-filter: blur(3px);
  }

  .mobile-menu-backdrop[hidden] {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    width: min(88vw, 380px);
    padding: 18px;
    flex-direction: column;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: -24px 0 70px rgba(10, 22, 18, 0.2);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms;
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-drawer-head > button {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--green);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1.6rem;
    line-height: 1;
  }

  .mobile-member-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 13px;
    background: var(--sage);
    border-radius: 8px;
  }

  .mobile-drawer-links {
    display: grid;
    margin: 22px 0;
  }

  .mobile-drawer-links a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 760;
  }

  .mobile-drawer-links a:hover {
    color: var(--gold-dark);
    padding-left: 5px;
  }

  .mobile-drawer-actions {
    display: grid;
    gap: 9px;
    margin-top: auto;
  }

  .mobile-language {
    justify-content: center;
    margin: 18px 0 3px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .member-login-shell {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
  }

  .member-login-copy {
    padding: 34px;
  }

  .member-login-copy .brand {
    margin-bottom: 30px;
  }

  .member-login-form-wrap {
    padding: 34px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .community-intro,
  .social-media-layout,
  .documents-strip,
  .content-grid,
  .anbi-layout,
  .anbi-intro-grid,
  .contact-grid,
  .donation-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .prayer-panel,
  .fact-box,
  .payment-panel {
    max-width: 560px;
  }

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

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

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

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

  .admin-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .prayer-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-panel {
    position: static;
  }

  .donation-main {
    order: 2;
  }

  .payment-panel {
    order: 1;
  }

  .gallery-heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 32px;
  }

  .premium-gallery {
    grid-template-rows: repeat(6, 120px);
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .member-login-page {
    min-height: calc(100vh - 68px);
    padding: 24px 12px;
    place-items: start center;
  }

  .member-login-copy,
  .member-login-form-wrap {
    padding: 24px 20px;
  }

  .member-login-copy h1 {
    font-size: 2.65rem;
  }

  .member-login-copy ul {
    margin-top: 20px;
  }

  .student-row {
    grid-template-columns: 1fr 36px;
  }

  .student-row > div {
    grid-column: 1 / -1;
  }

  .student-remove {
    grid-column: 2;
  }

  .hero,
  .hero-overlay {
    min-height: auto;
  }

  .hero-overlay {
    padding: 72px 0 58px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .donation-hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .donation-hero {
    padding-bottom: 46px;
  }

  .donation-layout {
    gap: 22px;
  }

  .payment-panel {
    padding: 18px;
    box-shadow: 0 14px 38px rgba(20, 35, 31, 0.1);
  }

  .payment-header strong {
    font-size: 1.25rem;
  }

  .donation-main .section-heading {
    margin-bottom: 18px;
  }

  .donation-card {
    min-height: auto;
    padding: 18px;
  }

  .donation-card h3 {
    margin-top: 8px;
    font-size: 1.12rem;
  }

  .donation-card p {
    margin: 8px 0;
  }

  .donation-card small {
    margin-bottom: 12px;
  }

  .card-grid,
  .objective-grid,
  .premium-document-grid,
  .board-grid,
  .premium-gallery,
  .document-cards,
  .prayer-page-grid,
  .donation-options,
    .faq-grid {
    grid-template-columns: 1fr;
  }

  .news-grid,
  .admin-metrics,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-actions,
  .cookie-banner,
  .admin-header,
  .admin-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner > div:last-child {
    flex-direction: column;
  }

  .admin-form-grid .wide {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 68px 0 58px;
  }

  .prayer-source-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .prayer-source-banner .btn {
    width: 100%;
  }

  .live-screen iframe {
    min-height: 620px;
  }

  .document-group-heading {
    align-items: start;
    flex-direction: column;
  }

  .document-dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    border-radius: 12px;
  }

  .document-dialog-header,
  .document-dialog-footer {
    padding: 14px;
  }

  .document-dialog-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .document-dialog-footer .btn {
    width: 100%;
  }

  .media-feature,
  .media-feature img {
    min-height: 520px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }

  .gallery-card,
  .gallery-card-main,
  .gallery-card-wide,
  .gallery-card:last-child,
  .gallery-card-tall,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6) {
    grid-column: 1;
    grid-row: span 1;
  }

  .gallery-card-main {
    grid-row: span 2;
  }

  .gallery-credit {
    text-align: left;
  }

  .gallery-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding: 70px 8px 20px;
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 230px);
  }
}

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

  .js-reveal {
    opacity: 1;
    transform: none;
  }

  .js-stagger > * {
    opacity: 1;
    transform: none;
  }
}

.donation-thanks-hero {
  padding-bottom: 104px;
}

.donation-thanks-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 720px);
  gap: 26px;
  align-items: start;
}

.donation-thanks-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

.donation-confirmation-section {
  padding-top: 0;
  background: #f4f2ec;
}

.donation-confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.75fr);
  gap: 28px;
  align-items: start;
  transform: translateY(-46px);
}

.donation-confirmation-card,
.donation-impact-card {
  border: 1px solid rgba(28, 62, 52, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(20, 35, 31, 0.1);
}

.donation-confirmation-card {
  padding: 32px;
}

.donation-confirmation-card__head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(28, 62, 52, 0.1);
}

.donation-confirmation-card h2,
.donation-impact-card h2 {
  margin: 5px 0 0;
  color: var(--green-dark);
}

.donation-confirmation-status {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.donation-confirmation-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.donation-confirmation-status--paid {
  background: #e7f5ed;
  color: #137443;
}

.donation-confirmation-status--pending {
  background: #fff5d8;
  color: #8c6500;
}

.donation-confirmation-status--failed {
  background: #fdeaea;
  color: #a62b2b;
}

.donation-confirmation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.donation-confirmation-details > div {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid rgba(28, 62, 52, 0.09);
}

.donation-confirmation-details dt,
.donation-confirmation-reference span {
  margin-bottom: 5px;
  color: #6b746f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.donation-confirmation-details dd {
  margin: 0;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.donation-confirmation-details .donation-confirmation-amount dd {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.donation-confirmation-reference {
  grid-column: 1 / -1;
}

.donation-confirmation-reference dd,
.donation-confirmation-reference strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.03em;
}

.donation-confirmation-reference--standalone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f5f7f5;
}

.donation-confirmation-empty {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 28px 0 10px;
}

.donation-confirmation-symbol {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e7f5ed;
  color: var(--green);
  font-weight: 900;
}

.donation-confirmation-empty p {
  margin: 3px 0 0;
  color: #64706a;
}

.donation-confirmation-note {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f3f7f4;
  color: #42544c;
}

.donation-confirmation-note__symbol {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
}

.donation-confirmation-note p {
  margin: 0;
}

.donation-impact-card {
  padding: 30px;
  background: linear-gradient(155deg, #fff 0%, #f7f4e9 100%);
}

.donation-impact-card ul {
  display: grid;
  gap: 15px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.donation-impact-card li {
  display: flex;
  gap: 11px;
  color: #43524b;
}

.donation-impact-check {
  display: grid;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  background: #f1e4b8;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.donation-impact-card > p {
  padding-top: 20px;
  border-top: 1px solid rgba(28, 62, 52, 0.1);
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
}

.donation-confirmation-actions {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.donation-confirmation-actions .btn {
  width: 100%;
}

.donation-confirmation-link {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 900px) {
  .donation-confirmation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .donation-thanks-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .donation-thanks-icon {
    width: 58px;
    height: 58px;
  }

  .donation-confirmation-layout {
    transform: translateY(-30px);
  }

  .donation-confirmation-card,
  .donation-impact-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .donation-confirmation-card__head {
    flex-direction: column;
  }

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

  .donation-confirmation-reference {
    grid-column: auto;
  }
}

/* Donkere weergave */
:root[data-theme="dark"] body {
  color: var(--ink);
  background: var(--paper);
}

:root[data-theme="dark"] .member-badge,
:root[data-theme="dark"] .member-menu,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .mobile-drawer-head > button,
:root[data-theme="dark"] .info-card,
:root[data-theme="dark"] .news-card,
:root[data-theme="dark"] .facebook-feed,
:root[data-theme="dark"] .premium-document-card,
:root[data-theme="dark"] .document-card,
:root[data-theme="dark"] .board-card,
:root[data-theme="dark"] .donation-card,
:root[data-theme="dark"] .payment-panel,
:root[data-theme="dark"] .faq-card,
:root[data-theme="dark"] .fact-box,
:root[data-theme="dark"] .trust-card,
:root[data-theme="dark"] .prayer-page-card,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .article-card,
:root[data-theme="dark"] .document-dialog,
:root[data-theme="dark"] .admin-form,
:root[data-theme="dark"] .admin-metrics article,
:root[data-theme="dark"] .admin-status,
:root[data-theme="dark"] .admin-tabs,
:root[data-theme="dark"] .admin-section,
:root[data-theme="dark"] .donation-confirmation-card {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

:root[data-theme="dark"] .section-light,
:root[data-theme="dark"] .admin-shell,
:root[data-theme="dark"] .member-login-page {
  background: var(--soft-surface);
}

:root[data-theme="dark"] .media-gallery-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 173, 87, 0.1), transparent 30%),
    linear-gradient(180deg, #0c1714 0%, #101f1a 100%);
}

:root[data-theme="dark"] .premium-document-card.is-unavailable {
  background: linear-gradient(145deg, #17231f, #111c18);
  border-color: var(--line);
}

:root[data-theme="dark"] .document-availability.is-published {
  color: #a9ddc8;
  background: #1a3a30;
}

:root[data-theme="dark"] .document-availability.is-pending {
  color: #bec8c2;
  background: #26342f;
}

:root[data-theme="dark"] .document-summary span,
:root[data-theme="dark"] .document-actions a,
:root[data-theme="dark"] .document-actions button,
:root[data-theme="dark"] .document-dialog-close,
:root[data-theme="dark"] .donation-confirmation-note {
  color: var(--green);
  background: #182d26;
  border-color: var(--line);
}

:root[data-theme="dark"] .document-dialog-viewer {
  background: #07100d;
}

:root[data-theme="dark"] .document-dialog-viewer iframe {
  background: #202522;
}

:root[data-theme="dark"] .prayer-panel,
:root[data-theme="dark"] .prayer-page-grid {
  color: #14231f;
}

:root[data-theme="dark"] .prayer-row {
  background: #f3f4f0;
}

:root[data-theme="dark"] .prayer-row.is-current {
  background: #f8efd9;
}

:root[data-theme="dark"] .panel-source {
  background: #e8eee8;
}

:root[data-theme="dark"] .mollie-form input,
:root[data-theme="dark"] .mollie-form select,
:root[data-theme="dark"] .admin-form input,
:root[data-theme="dark"] .admin-form textarea,
:root[data-theme="dark"] .admin-form select,
:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select {
  color: var(--ink);
  background: var(--field-bg);
  border-color: var(--line);
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
  color: #83958d;
}

:root[data-theme="dark"] .donation-notice {
  color: #f1d999;
  background: #3b301a;
  border-color: #6d5726;
}

:root[data-theme="dark"] .education-total,
:root[data-theme="dark"] .amount-choice,
:root[data-theme="dark"] .donation-confirmation-reference,
:root[data-theme="dark"] .donation-confirmation-empty,
:root[data-theme="dark"] .donation-impact-card {
  color: var(--ink);
  background: #172821;
  border-color: var(--line);
}

:root[data-theme="dark"] .amount-choice button {
  color: var(--ink);
  background: #1b3028;
  border-color: var(--line);
}

:root[data-theme="dark"] .amount-choice button.is-active {
  color: #15120a;
  background: var(--gold);
  border-color: var(--gold);
}

:root[data-theme="dark"] .btn-outline-dark {
  color: var(--ink);
  border-color: #71837b;
}

:root[data-theme="dark"] .btn-outline-dark:hover,
:root[data-theme="dark"] .btn-outline-dark:focus {
  color: #0c1714;
  background: #dfe9df;
}

:root[data-theme="dark"] .social-consent,
:root[data-theme="dark"] .admin-form-grid,
:root[data-theme="dark"] .student-row,
:root[data-theme="dark"] .timeline-item,
:root[data-theme="dark"] .objective-card {
  background: #14251f;
  border-color: var(--line);
}

:root[data-theme="dark"] .facebook-feed iframe {
  background: #17231f;
}

:root[data-theme="dark"] .icon-delete {
  color: #ffaaa3;
  background: #301b1a;
  border-color: #75403c;
}

:root[data-theme="dark"] .document-list a,
:root[data-theme="dark"] .section-accent {
  color: #fff;
}

:root[data-theme="dark"] .mobile-menu-backdrop {
  background: rgba(0, 0, 0, 0.68);
}

:root[data-theme="dark"] .site-footer {
  background: #07110e;
}

:root[data-theme="dark"] .cookie-banner {
  background: #091c16;
  border-color: #284a3e;
}

:root[data-theme="dark"] .donation-impact-card > p {
  color: var(--ink);
  border-color: var(--line);
}

:root[data-theme="dark"] .donation-confirmation-note p,
:root[data-theme="dark"] .donation-confirmation-empty p {
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  body,
  .site-header,
  .section-light,
  .premium-document-card,
  .info-card,
  .news-card,
  .donation-card,
  .payment-panel,
  .faq-card,
  input,
  textarea,
  select {
    transition:
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }
}
