:root {
  --purple: #69318D;
  --purple-dark: #4e216c;
  --purple-soft: #f3eaf8;
  --gold: #c97a1a;
  --gold-hover: #a86312;
  --ink: #1a1a1a;
  --muted: #5c5663;
  --line: #e4dceb;
  --bg: #f4f0f8;
  --cream: #efe8f5;
  --surface: #ffffff;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 16, 36, 0.08);
  --radius: 12px;
  --wrap: 1200px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 55% at 0% -5%, rgba(105, 49, 141, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(201, 122, 26, 0.10), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(105, 49, 141, 0.06), transparent 55%),
    linear-gradient(180deg, #f7f3fb 0%, #f1ebf7 45%, #f6f2ea 100%);
  background-attachment: fixed;
  font-family: "Noto Sans TC", "Source Sans 3", sans-serif;
  line-height: 1.7;
  font-size: 16px;
  line-break: strict;
  overflow-wrap: break-word;
}
.cjk-keep {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-break: strict;
  display: inline;
  vertical-align: baseline;
}
.lang-zh .prose,
.lang-zh .campaign-body,
.lang-zh .hero-lead,
.lang-zh .card-body,
.lang-zh .news-feature-body,
.lang-zh .story-card-body,
.lang-zh .donate-intro,
.lang-zh .page-hero,
.lang-zh .ticker {
  line-break: strict;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--gold); }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; }
.skip-link:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 1000; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-top-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 92px; gap: 16px;
}
.brand { display: flex; align-items: center; color: var(--ink); flex: 0 0 auto; min-width: 0; }
.brand:hover { color: var(--ink); }
.brand img { height: 72px; width: auto; max-width: min(280px, 52vw); object-fit: contain; object-position: left center; }
.header-utils { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 10px; border: 1px solid var(--line); border-radius: 4px;
  background: #fff; color: var(--purple); font-size: 13px; font-weight: 800;
  letter-spacing: .02em; line-height: 1;
}
.lang-toggle i { font-size: 14px; }
.lang-toggle:hover { color: var(--gold); border-color: var(--gold); background: #fff8f0; }
.font-size-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: #fff;
}
.font-size-switch button {
  border: 0; background: transparent; color: var(--muted);
  font-family: inherit; font-weight: 800; cursor: pointer;
  padding: 4px 8px; line-height: 1; min-width: 32px;
}
.font-size-switch button span { font-size: .7em; vertical-align: super; margin-left: 1px; }
.font-size-switch button:first-child { font-size: 12px; }
.font-size-switch button:nth-child(2) { font-size: 13px; }
.font-size-switch button:last-child { font-size: 15px; }
.font-size-switch button:hover { color: var(--purple); background: var(--purple-soft); }
.font-size-switch button.is-active { color: var(--purple); background: var(--purple-soft); }
.font-size-switch button:disabled {
  opacity: .35; cursor: default;
}
.font-size-switch button:disabled:hover {
  color: var(--muted); background: transparent;
}
html[data-fs="md"] #main,
html[data-fs="md"] .site-nav,
html[data-fs="md"] .site-footer,
html[data-fs="md"] .crumb-bar {
  zoom: 1.125;
}
html[data-fs="lg"] #main,
html[data-fs="lg"] .site-nav,
html[data-fs="lg"] .site-footer,
html[data-fs="lg"] .crumb-bar {
  zoom: 1.25;
}
@supports not (zoom: 1) {
  html[data-fs="md"] #main,
  html[data-fs="md"] .site-nav,
  html[data-fs="md"] .site-footer,
  html[data-fs="md"] .crumb-bar { font-size: 112.5%; }
  html[data-fs="lg"] #main,
  html[data-fs="lg"] .site-nav,
  html[data-fs="lg"] .site-footer,
  html[data-fs="lg"] .crumb-bar { font-size: 125%; }
}
.icon-link {
  color: var(--ink); width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%;
}
.icon-link:hover { color: var(--purple); background: var(--purple-soft); }

.site-nav { border-top: 1px solid var(--line); background: #fff; }
.nav-list {
  display: flex; gap: 0; list-style: none; margin: 0; padding: 0;
  align-items: stretch; flex-wrap: nowrap; justify-content: space-between;
  width: 100%;
}
.nav-list > li {
  flex: 1 1 0; text-align: center; min-width: 0;
}
.nav-list > li > a, .nav-parent {
  display: block; padding: 14px 6px; color: var(--ink); font-weight: 700;
  font-size: clamp(12px, 1.15vw, 15px);
  background: none; border: 0; cursor: pointer; font-family: inherit;
  white-space: nowrap; width: 100%; text-align: center;
}
.nav-list > li > a:hover, .nav-parent:hover,
.nav-list > li > a[aria-current="page"] {
  color: var(--gold);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.has-sub { position: relative; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 280px;
  background: #fff; box-shadow: var(--shadow); padding: 8px 0;
  list-style: none; margin: 0; border: 1px solid var(--line); z-index: 20;
  text-align: left;
}
.has-sub:hover .sub-menu, .has-sub.is-open .sub-menu { display: block; }
.sub-menu a { display: block; padding: 9px 18px; color: var(--ink); font-size: 14px; }
.sub-menu a:hover { background: var(--cream); color: var(--gold); }
.sub-heading { padding: 10px 18px 4px; font-size: 12px; font-weight: 800; color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 4px; padding: 11px 22px; font-weight: 800; border: 0; cursor: pointer;
  font-family: inherit; font-size: 15px;
}
.btn-donate { background: var(--gold); color: #fff; padding: 8px 16px; font-size: 14px; }
.btn-donate:hover, .btn-primary:hover { background: var(--gold-hover); color: #fff; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-ghost:hover { background: #fff; color: var(--purple); }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--purple); margin: 6px 0; }

.hero-banner { position: relative; background: transparent; overflow: visible; }
.hero-track { position: relative; min-height: 0; overflow: hidden; background: #cfeaf8; }
.hero-video-wrap {
  position: relative; width: 100%; background: #cfeaf8; line-height: 0;
  overflow: hidden;
  aspect-ratio: 720 / 440;
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  background: #cfeaf8;
}
.hero-video-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(105, 49, 141, .72));
}
.hero-ctrl {
  flex: 0 0 auto; width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--purple); cursor: pointer; font-size: 14px;
  display: grid; place-items: center;
}
.hero-ctrl:hover { background: #fff; }
.hero-ctrl.is-on { background: var(--gold); color: #fff; }
.hero-seek {
  flex: 1 1 auto; min-width: 0; height: 6px; cursor: pointer;
  accent-color: var(--gold);
  appearance: none; background: transparent;
}
.hero-seek::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .55);
}
.hero-seek::-webkit-slider-thumb {
  appearance: none; width: 16px; height: 16px; margin-top: -5px;
  border-radius: 50%; background: var(--gold); border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.hero-seek::-moz-range-track {
  height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .55); border: 0;
}
.hero-seek::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold);
  border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.hero-time {
  flex: 0 0 auto; color: #fff; font-size: 12px; font-weight: 700;
  font-variant-numeric: tabular-nums; white-space: nowrap; text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.hero-intro {
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: 28px 0 8px;
}
.hero-intro-inner {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 32px;
}
.hero-intro-copy { flex: 1 1 320px; max-width: 720px; }
.hero-intro .hero-kicker { color: var(--gold); margin: 0 0 8px; }
.hero-intro h1 { color: var(--purple); font-size: clamp(26px, 3.2vw, 40px); line-height: 1.25; margin: 0 0 10px; }
.hero-intro .hero-lead { color: var(--muted); margin: 0; max-width: 640px; }
.hero-intro .hero-actions { margin-top: 0; flex: 0 0 auto; }
.hero-intro .btn-ghost {
  background: #fff; color: var(--purple); border-color: var(--purple);
}
.hero-intro .btn-ghost:hover { background: var(--purple); color: #fff; }
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,8,32,.12) 15%, rgba(20,8,32,.72) 100%);
  color: #fff; padding: 0 0 88px; pointer-events: none;
}
.hero-overlay .wrap, .hero-overlay a, .hero-overlay .btn { pointer-events: auto; }
.hero-overlay h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.25; margin: 0 0 12px; max-width: 720px; }
.hero-lead { font-size: 17px; max-width: 640px; opacity: .95; margin: 0; }
.hero-kicker { letter-spacing: .06em; font-size: 13px; font-weight: 700; opacity: .9; margin: 0 0 8px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; position: relative; }
.hero-slide img {
  width: 100%; height: min(70vh, 620px); object-fit: cover; object-position: center;
  background: #2c183c;
}
.hero-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 48px; height: 72px; border: 0; background: rgba(255,255,255,.55);
  color: #222; font-size: 22px; cursor: pointer; z-index: 3;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 0; }
.hero-arrow.next { right: 0; }
.hero-pause {
  position: absolute; left: 16px; bottom: 100px; z-index: 3;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.85); cursor: pointer; color: var(--purple);
}
.hero-dots { position: absolute; right: 24px; bottom: 100px; display: flex; gap: 8px; z-index: 3; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

.promo-modal {
  border: 0; padding: 0; background: transparent; max-width: min(560px, 92vw);
  width: 100%; margin: auto; position: fixed; inset: 0; z-index: 100;
}
.promo-modal::backdrop { background: rgba(16, 8, 24, .72); }
.promo-close {
  position: absolute; right: 8px; top: 8px; z-index: 2;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.promo-link { display: block; background: #fff; box-shadow: 0 18px 48px rgba(0,0,0,.28); border-radius: 4px; overflow: hidden; }
.promo-link img { width: 100%; height: auto; display: block; }

.service-dock {
  position: relative; z-index: 4;
  margin-top: 36px; padding: 8px 0 4px;
}
.service-dock-inner {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  background: transparent;
}
.service-icon {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink); text-align: center; font-weight: 700; font-size: 15px;
}
.service-icon:hover { filter: brightness(1.05); }
.service-icon-circle {
  width: 78px; height: 78px; border-radius: 50%;
  background: #fff; box-shadow: 0 8px 24px rgba(26, 16, 36, 0.14);
  display: grid; place-items: center; font-size: 26px; color: #fff;
  border: 4px solid #fff;
}
.service-icon.tone-0 .service-icon-circle { background: #2a9d8f; }
.service-icon.tone-1 .service-icon-circle { background: #69318d; }
.service-icon.tone-2 .service-icon-circle { background: #e09f3e; }
.service-icon.tone-3 .service-icon-circle { background: #3a86ff; }
.service-icon.tone-4 .service-icon-circle { background: #d62828; }
.service-icon.tone-5 .service-icon-circle,
.service-icon.is-donate .service-icon-circle { background: var(--gold); }
.service-icon.tone-0 .service-icon-label { color: #2a9d8f; }
.service-icon.tone-1 .service-icon-label { color: #69318d; }
.service-icon.tone-2 .service-icon-label { color: #c47f1a; }
.service-icon.tone-3 .service-icon-label { color: #2f6fd6; }
.service-icon.tone-4 .service-icon-label { color: #d62828; }
.service-icon.tone-5 .service-icon-label,
.service-icon.is-donate .service-icon-label { color: var(--gold); }
.service-icon-label { max-width: 120px; line-height: 1.35; font-size: 15px; }

.ticker {
  background: var(--purple); color: #fff; font-size: 14px; margin-top: 0;
}
.ticker-inner { display: flex; gap: 28px; flex-wrap: wrap; padding: 10px 0; }

.section { padding: 56px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(239, 232, 245, .85) 100%);
  border-top: 1px solid rgba(105, 49, 141, 0.06);
  border-bottom: 1px solid rgba(105, 49, 141, 0.06);
}
.section-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  margin-bottom: 22px;
}
.section-title { font-size: 28px; color: var(--gold); margin: 0; font-weight: 800; }
.section-more { font-weight: 700; color: var(--gold); white-space: nowrap; }
.section-more:hover { color: var(--purple); }
.text-more { font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.text-more:hover { color: var(--purple); }

.news-mosaic { display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px; align-items: stretch; }
.news-feature {
  display: flex; flex-direction: column; background: var(--cream); color: var(--ink); overflow: hidden; min-height: 100%;
}
.news-feature:hover { color: var(--ink); }
.news-feature img { width: 100%; height: 280px; object-fit: contain; object-position: center; background: #fff; }
.news-feature-body { padding: 18px 20px 22px; }
.news-feature h3, .news-mini h3 { margin: 6px 0 8px; font-size: 18px; color: var(--ink); }
.news-feature p, .news-mini p { margin: 0; color: var(--muted); font-size: 14px; }
.news-stack { display: flex; flex-direction: column; gap: 14px; }
.news-mini {
  display: grid; grid-template-columns: 132px 1fr; gap: 14px; background: var(--cream); color: var(--ink); overflow: hidden; min-height: 120px;
}
.news-mini:hover { color: var(--ink); }
.news-mini img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; min-height: 120px; }
.news-mini > div { padding: 12px 14px 12px 0; }
.tag {
  display: inline-block; background: var(--gold); color: #fff; font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 2px; margin-right: 8px;
}
time { font-size: 12px; color: var(--muted); }

.donate-band { background: var(--purple); color: #fff; padding: 48px 0; }
.donate-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.donate-intro h2 { font-size: 36px; margin: 0 0 12px; }
.donate-intro p { opacity: .92; }
.donate-col h3 { margin: 0 0 12px; font-size: 20px; }
.donate-col ul { list-style: none; margin: 0; padding: 0; }
.donate-col a { color: #fff; display: block; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.donate-col a:hover { color: #ffe9a8; }
.donate-band .btn-primary { background: var(--gold); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: rgba(255,255,255,.92); overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(105, 49, 141, 0.08); box-shadow: 0 8px 20px rgba(26, 16, 36, 0.04);
}
.card img { width: 100%; height: 180px; object-fit: contain; object-position: center; background: #fff; }
.card-body { padding: 16px 4px 8px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { margin: 0; color: var(--ink); font-size: 18px; }
.card p { margin: 0; color: var(--muted); flex: 1; font-size: 14px; }

.campaign {
  background: var(--cream); overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr;
}
.campaign img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; min-height: 260px; }
.campaign-body { padding: 36px; }
.campaign h2 { margin-top: 0; color: var(--gold); }

.story-grid {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px;
  align-items: stretch;
}
.story-card { background: var(--cream); overflow: hidden; min-height: 0; }
.story-card a { color: var(--ink); display: flex; flex-direction: column; height: 100%; }
.story-card a:hover { color: var(--ink); }
.story-card img { width: 100%; height: 180px; object-fit: contain; object-position: center; background: #fff; }
.story-card.is-feature { grid-row: span 2; }
.story-card.is-feature img { height: min(280px, 40%); }
.story-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.story-card h3 { margin: 0; font-size: 18px; }
.story-card p { margin: 0; color: var(--muted); font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.story-card.is-feature p { -webkit-line-clamp: 8; flex: 1; }
.story-card .text-more { margin-top: auto; }

.contact-strip { background: rgba(255,255,255,.9); padding: 24px 28px; border: 1px solid rgba(105, 49, 141, 0.08); }
.contact-strip p { margin: 0 0 14px; }

.page-hero { padding: 28px 0 8px; }
.page-hero h1 { margin: 0 0 8px; color: var(--gold); font-size: clamp(26px, 3vw, 36px); }
.banner-img { width: 100%; max-height: 280px; object-fit: contain; object-position: center; background: rgba(255,255,255,.7); margin-top: 12px; }
.crumb-bar { background: var(--cream); border-bottom: 1px solid var(--line); }
.crumbs { font-size: 13px; padding: 10px 0; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs-sep { margin: 0 8px; }

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; padding: 28px 0 64px; }
.layout.single { grid-template-columns: 1fr; max-width: 920px; }
.prose {
  background: rgba(255,255,255,.88);
  padding: 20px 22px 28px;
  border: 1px solid rgba(105, 49, 141, 0.08);
  box-shadow: 0 8px 24px rgba(26, 16, 36, 0.04);
}
.prose h2, .prose h3, .prose h4 { color: var(--purple); }
.prose h2 { margin: 0 0 12px; }
.prose h2 + br,
.prose h3 + br,
.prose h4 + br,
.prose .dashed h4 + br,
.prose .dashed + br,
.prose br:has(+ .dashed) {
  display: none;
}
.prose img { border-radius: 0; }
.prose .dashed, .prose div.dashed {
  border: 1px dashed var(--purple); padding: 14px 16px; margin: 8px 0; background: #fff;
}
.prose .dashed > h4:first-child,
.prose .dashed > h3:first-child {
  margin-top: 0; margin-bottom: 8px;
}
.prose ul.blog-info-link {
  list-style: none; padding-left: 0; margin: 6px 0 14px;
}
.prose ul.blog-info-link li {
  list-style: none; padding-left: 0; margin: 0;
}
.prose ul.blog-info-link li::before,
.prose ul.blog-info-link li::after {
  content: none; display: none;
}
.prose img[src*="button_onlineapplicationform"],
.prose img[src*="button_onlinedonationform"],
.prose img[src*="button_fee"] {
  display: block;
  width: auto !important;
  max-width: min(100%, 260px);
  height: auto !important;
}
.prose img.is-zoomable {
  cursor: zoom-in;
}
.page-homework .prose img {
  max-width: min(100%, 480px);
  width: auto;
  height: auto;
  margin: 10px 0;
}
.prose .row {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0;
}
.prose .col-md-4 {
  flex: 1 1 calc(33.333% - 12px); min-width: 0;
}
.prose .col-md-12,
.prose .col-md-6 {
  flex: 1 1 100%; min-width: 0;
}
.prose .col-md-4 img {
  width: 100%; height: auto;
}
.lightbox-modal {
  border: 0; padding: 0; background: transparent; max-width: min(1100px, 94vw);
  width: max-content; max-height: 90vh; margin: auto;
  position: fixed; inset: 0;
}
.lightbox-modal::backdrop { background: rgba(16, 8, 24, .78); }
.lightbox-modal img {
  display: block; max-width: 94vw; max-height: 88vh; width: auto; height: auto;
  margin: 0 auto; background: #fff; box-shadow: 0 18px 48px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute; right: 8px; top: 8px; z-index: 2;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.prose table { width: 100%; border-collapse: collapse; }
.prose td, .prose th { border-bottom: 1px solid var(--line); padding: 8px 6px; text-align: left; vertical-align: top; }
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--cream); padding: 18px; }
.side-card h3 { margin: 0 0 12px; color: var(--gold); font-size: 16px; }
.side-card ul { list-style: none; margin: 0; padding: 0; }
.side-card a { display: block; padding: 8px 0; border-bottom: 1px solid #e6e0d8; color: var(--ink); }
.side-card a:hover { color: var(--gold); }
.side-card img, .side-card video, .side-card iframe { width: 100%; }

.quote-wrap { position: relative; }
.quote-card { display: none; background: var(--cream); padding: 28px; border-left: 4px solid var(--gold); min-height: 200px; }
.quote-card.is-active { display: block; }
.quote-card h3 { margin-top: 0; color: var(--purple); }
.carousel-nav { display: flex; gap: 8px; margin-top: 12px; }
.carousel-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--purple);
}

.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item { background: var(--cream); padding: 16px 18px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px; font: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--purple); border-color: var(--purple); }
.alert { padding: 12px 16px; margin-bottom: 16px; }
.alert-error { background: #fde8e8; color: #8a1f1f; }
.alert-ok { background: #e7f6ec; color: #1b5e2a; }

.story-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.story-teaser { background: var(--cream); overflow: hidden; }
.story-teaser img { width: 100%; height: 160px; object-fit: contain; object-position: center; background: #fff; }
.story-teaser-body { padding: 18px 20px 22px; }
.story-teaser h2 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.gallery-grid img { width: 100%; height: 120px; object-fit: contain; object-position: center; background: #fff; }
#vlightbox1, [id^="vlightbox"] { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
#vlightbox1 a, [id^="vlightbox"] a { display: block; text-align: center; font-size: 13px; color: var(--ink); }

.footer-cta {
  background: linear-gradient(90deg, rgba(105, 49, 141, 0.08), rgba(201, 122, 26, 0.10), rgba(105, 49, 141, 0.08));
  border-top: 1px solid var(--line);
}
.footer-cta-inner { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 22px 0; }
.footer-cta-btn { font-weight: 800; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.footer-cta-btn:hover { color: var(--purple); }

.site-footer { background: linear-gradient(180deg, #fbf8ff 0%, #f4eef9 100%); color: var(--ink); padding: 48px 0 32px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(150px, 1.15fr) repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
  align-items: start;
}
.footer-grid > div { min-width: 0; }
.footer-brand img { height: 52px; }
.site-footer h3 { color: var(--purple); font-size: 15px; margin: 0 0 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: var(--muted); font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-contact { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.back-top {
  position: fixed; right: 58px; bottom: 24px; z-index: 45;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--purple); color: #fff;
  box-shadow: 0 8px 20px rgba(26, 16, 36, 0.22);
  font-size: 18px; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; }
.back-top:hover { color: #fff; background: var(--purple-dark); transform: translateY(-2px); }

.share-rail {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 46;
  display: flex; flex-direction: column;
  background: rgba(90, 90, 95, 0.88);
  box-shadow: -4px 0 18px rgba(0,0,0,.12);
}
.share-rail a {
  width: 46px; height: 46px; display: grid; place-items: center;
  color: #fff; font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .15s ease, color .15s ease;
}
.share-rail a:last-child { border-bottom: 0; }
.share-rail a:hover { color: #fff; background: var(--purple); }
.share-rail a.is-donate:hover { background: var(--gold); }
.share-rail a[aria-label="Facebook"]:hover { background: #1877F2; }
.share-rail a[aria-label="Instagram"]:hover { background: #E4405F; }
.share-rail a[aria-label="WhatsApp"]:hover { background: #25D366; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--purple);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.muted { color: var(--muted); }
.site-footer .muted { color: var(--muted); }

.mobile-dock { display: none; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; font-size: 14px; }
.cta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.cta-row .card img {
  height: 280px; object-fit: contain; object-position: center;
}
.cta-row .card-body {
  align-items: center; text-align: center;
}
.cta-row .card h3 {
  text-align: center; width: 100%;
}
.cta-row .card .btn {
  align-self: center;
}
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: start; }

.video-modal {
  border: 0; padding: 0; background: #000; width: min(960px, 94vw);
  position: relative;
}
.video-modal::backdrop { background: rgba(0,0,0,.72); }
.video-modal video { width: 100%; max-height: 80vh; }
.video-close {
  position: absolute; right: 8px; top: 8px; background: #fff; border: 0;
  width: 36px; height: 36px; font-size: 22px; cursor: pointer; z-index: 2;
}

@media (max-width: 980px) {
  .header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 6px 0;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    overflow: hidden;
  }
  .brand img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .header-utils {
    flex: 0 0 auto;
    gap: 4px;
  }
  .lang-toggle {
    height: 32px; min-width: 0; padding: 0 7px; gap: 4px;
    justify-content: center; font-size: 12px;
  }
  .lang-toggle i { font-size: 13px; }
  .lang-toggle span { font-size: 12px; font-weight: 800; }
  .font-size-switch button { min-width: 26px; padding: 4px 5px; }
  .nav-toggle { width: 36px; height: 36px; padding: 6px; }
  .hero-video { width: 100%; }
  .hero-intro { padding: 22px 0 4px; }
  .hero-intro-inner { flex-direction: column; align-items: stretch; }
  .hero-intro .hero-actions { width: 100%; }
  .hero-overlay { padding-bottom: 72px; }
  .service-dock { margin-top: 28px; }
  .prose .col-md-4 { flex: 1 1 100%; }
  .news-mosaic, .campaign, .layout, .contact-grid, .split, .footer-grid,
  .cards, .cards.four, .cta-row, .donate-grid, .story-grid, .story-list {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .story-card.is-feature { grid-row: auto; }
  .news-mini { grid-template-columns: 100px 1fr; }
  .service-dock-inner { grid-template-columns: repeat(3, 1fr); }
  .btn-donate { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; border-top: 1px solid var(--line);
  }
  .site-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    flex-wrap: wrap; padding: 8px 0 20px; width: auto;
  }
  .nav-list > li { flex: none; text-align: left; }
  .nav-list > li > a, .nav-parent {
    width: auto; text-align: left; padding: 14px 16px; white-space: normal;
  }
  .sub-menu { position: static; box-shadow: none; border: 0; display: none; padding-left: 12px; }
  .has-sub.is-open .sub-menu { display: block; }
  .hero-arrow { height: 56px; width: 36px; }
  .hero-pause, .hero-dots { bottom: 72px; }
  .mobile-dock {
    display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 40;
  }
  .mobile-dock a {
    color: #fff; text-align: center; padding: 14px 8px; font-size: 22px;
    display: grid; place-items: center; min-height: 52px;
  }
  .dock-wa { background: #25D366; }
  .dock-fb { background: #1877F2; }
  .dock-ig { background: #E4405F; }
  .dock-donate { background: var(--gold); color: #fff; }
  .site-footer { padding-bottom: 110px; }
  .share-rail { display: none; }
  .back-top { bottom: 72px; right: 16px; }
  .contact-strip { padding: 24px 22px; }
  .wrap { width: min(var(--wrap), calc(100% - 56px)); }
  .section-title { padding-left: 0; }
}
@media (max-width: 640px) {
  .header-top-inner { gap: 6px; min-height: 52px; }
  .brand img { height: 36px; }
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .hero-video { width: 100%; }
  .hero-video-bar { gap: 8px; padding: 8px 10px; }
  .hero-time { font-size: 11px; }
  .service-dock { margin-top: 24px; }
  .service-dock-inner { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .service-icon-circle { width: 64px; height: 64px; font-size: 20px; }
  .service-icon-label { font-size: 14px; max-width: 100px; }
  .promo-modal { max-width: min(420px, 94vw); }
}
