:root {
  --ink: #17201b;
  --muted: #627067;
  --line: #dce4dd;
  --paper: #fff;
  --soft: #f2f6f2;
  --green: #0f634f;
  --green-dark: #0b4539;
  --accent: #c53d3d;
  --shadow: 0 18px 50px rgba(24, 34, 29, 0.12);
  --site-header-height: 85px;
}

@keyframes v2-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v2-soft-scale {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f6f8f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  animation: v2-fade-up 520ms ease both;
}
.site-header.compact { position: static; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  font-weight: 700;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green);
  transform: translateY(-2px);
}
.primary-nav a.is-active {
  color: var(--green);
  border-color: var(--green);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-bottom: 0;
  border-radius: 999px;
  text-align: center;
  line-height: 1;
}
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible,
.primary-nav .nav-cta.is-active {
  color: #fff;
  background: var(--green-dark);
  border-color: transparent;
}
.nav-login,
.nav-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}
.nav-login {
  color: var(--green-dark);
  background: var(--soft);
}
.nav-user {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
}
.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 154px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav-submenu a {
  justify-content: flex-start;
  width: 100%;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: var(--green-dark);
  white-space: nowrap;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.is-active {
  background: var(--soft);
  transform: none;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 8px 12px;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(40px, 8vw, 100px);
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.86), rgba(8, 18, 24, 0.48), rgba(8, 18, 24, 0.18)),
    var(--hero-image) center / cover no-repeat;
  animation: v2-soft-scale 680ms ease both;
}
.hero-inner {
  width: min(760px, 100%);
  color: #fff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-summary {
  width: min(340px, 100%);
  display: grid;
  gap: 10px;
  padding: 18px;
  color: #fff;
  background: rgba(10, 22, 25, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.hero-summary div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-summary div:last-child { border-bottom: 0; }
.hero-summary strong {
  font-size: 30px;
  line-height: 1;
}
.hero-summary span {
  color: #edf7f3;
  font-weight: 800;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
}
.hero .eyebrow { color: #d8fff3; }
h1, h2, h3, p { word-break: keep-all; }
h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 20px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}
.button.primary { color: #fff; background: var(--green); }
.button.danger {
  color: #fff;
  background: #9f1d1d;
}
.button.danger:hover,
.button.danger:focus-visible {
  color: #fff;
  background: #7f1717;
}
.danger-link {
  color: #9f1d1d;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 34, 29, 0.14);
}
.button.primary:hover,
.button.primary:focus-visible {
  color: #fff;
  background: var(--green-dark);
}
.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
}
.button.light {
  color: var(--green-dark);
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 900;
  transition:
    color 180ms ease,
    transform 180ms ease;
}
.text-link:hover,
.text-link:focus-visible {
  color: var(--green-dark);
  transform: translateX(3px);
}
.merged-quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 0;
}
.merged-quick-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(24, 34, 29, 0.06);
}
.merged-quick-nav a:hover {
  border-color: rgba(15, 99, 79, 0.35);
  background: var(--soft);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-ready .hero[data-reveal],
.reveal-ready .visual-subhero[data-reveal],
.reveal-ready .detail-hero[data-reveal],
.reveal-ready .blog-detail-hero[data-reveal] {
  transform: translateY(18px) scale(0.99);
}
.reveal-ready .hero[data-reveal].is-visible,
.reveal-ready .visual-subhero[data-reveal].is-visible,
.reveal-ready .detail-hero[data-reveal].is-visible,
.reveal-ready .blog-detail-hero[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}
.merged-quick-nav a,
.impact-strip div,
.feature-row article,
.partner-grid article,
.portal-grid article,
.content-panel,
.profile-grid article,
.activity-showcase article,
.gallery-feature,
.donation-intro,
.receipt-visual,
.partner-visual,
.portal-preview-panel,
.usage-dashboard article,
.transparency-flow article,
.about-anchor-nav a,
.mag-history article {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}
.merged-quick-nav a:hover,
.merged-quick-nav a:focus-visible,
.impact-strip div:hover,
.feature-row article:hover,
.partner-grid article:hover,
.portal-grid article:hover,
.content-panel:hover,
.profile-grid article:hover,
.activity-showcase article:hover,
.gallery-feature:hover,
.donation-intro:hover,
.receipt-visual:hover,
.partner-visual:hover,
.portal-preview-panel:hover,
.usage-dashboard article:hover,
.transparency-flow article:hover,
.about-anchor-nav a:hover,
.about-anchor-nav a:focus-visible,
.mag-history article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 99, 79, 0.28);
  box-shadow: 0 18px 38px rgba(24, 34, 29, 0.1);
}
.impact-strip {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}
.impact-strip div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: #fff;
}
.impact-strip strong {
  font-size: 18px;
}
.impact-strip span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: normal;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split img,
.info-card img,
.gallery-grid img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split img { aspect-ratio: 4 / 3; width: 100%; }

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}
.story-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.image-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.image-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.image-mosaic .wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}
.info-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.info-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.program-section {
  padding-top: 20px;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.program-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.program-card div {
  padding: 18px;
}
.program-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.feature-band {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background: #13251f;
  color: #fff;
  border-radius: 8px;
}
.feature-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}
.feature-band .eyebrow {
  color: #bdeee1;
}
.feature-band p {
  color: #d9e7e1;
  font-size: 18px;
}
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.mini-feature-grid span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.gallery-grid figcaption {
  margin-top: 10px;
  font-weight: 800;
}
.usage-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-top: 18px;
}
.usage-preview p {
  color: var(--muted);
  font-size: 18px;
}
.usage-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.usage-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.usage-bars {
  display: grid;
  gap: 18px;
}
.usage-bars div {
  display: grid;
  gap: 8px;
}
.usage-bars span {
  color: var(--muted);
  font-weight: 800;
}
.usage-bars strong {
  position: relative;
  display: block;
  padding-top: 12px;
  color: var(--green);
  font-size: 20px;
}
.usage-bars strong::before,
.usage-bars strong::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  border-radius: 999px;
}
.usage-bars strong::before {
  width: 100%;
  background: #e6eee8;
}
.usage-bars strong::after {
  width: var(--bar);
  background: var(--green);
}
.news-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  padding-top: 18px;
}
.news-preview,
.partner-preview {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.news-preview article {
  margin: 0 -16px;
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.news-preview article:hover,
.news-preview article:focus-within {
  transform: translateY(-3px);
  background: #fff;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(24, 34, 29, 0.1);
}
.news-preview time {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
}
.news-preview p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.partner-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.partner-mini-list span {
  padding: 12px;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 900;
}
.partner-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.donate-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
  padding: 34px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 8px;
}
.donate-band .eyebrow { color: #bdeee1; }
.donate-band p { margin-bottom: 0; }
.donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin-top: clamp(46px, 6vw, 82px);
  padding: 36px clamp(20px, 5vw, 72px) 32px;
  text-align: center;
  color: #d9ded9;
  background: #1d211f;
}
.footer-info {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.site-footer a {
  color: #d9ded9;
}
.footer-agencies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-agencies a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(225px, 21vw, 282px);
  height: clamp(72px, 6.8vw, 87px);
  padding: 12px 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: none;
}
.footer-agencies a:hover {
  transform: none;
}
.footer-agencies img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.footer-brand-logo img {
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
}

.sub-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(28px, 5vw, 56px);
}
.visual-subhero {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 0;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 23, 31, 0.84), rgba(11, 23, 31, 0.42)),
    var(--sub-image) center / cover no-repeat;
}
.sub-hero h1 {
  color: var(--ink);
}
.visual-subhero h1 {
  color: #fff;
}
.sub-hero p:last-child {
  width: min(720px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}
.visual-subhero p:last-child {
  color: #edf5ef;
}
.visual-subhero + .section,
.visual-subhero + .mag-section,
.visual-subhero + .receipt-login-panel,
.visual-subhero + .receipt-dashboard-grid {
  margin-top: clamp(34px, 4.5vw, 64px);
}
.hero-badges {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  width: min(360px, 100%);
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-weight: 900;
}
.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  padding-top: 16px;
}
.content-copy p {
  margin: 0 0 18px;
  font-size: 18px;
}
.page-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-row,
.partner-grid,
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}
.feature-row article,
.partner-grid article,
.portal-grid article,
.content-panel {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.feature-row article span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
}
.activity-grid {
  padding-top: 16px;
}
.gallery-grid.expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.notice-list {
  display: grid;
  gap: 14px;
  padding-top: 16px;
}
.notice-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  margin: 0 -18px;
  padding: 24px 18px;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.notice-list article:hover,
.notice-list article:focus-within {
  transform: translateY(-3px);
  background: #fff;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(24, 34, 29, 0.1);
}
.notice-list time {
  color: var(--green);
  font-weight: 900;
}
.news-preview h3 a,
.notice-list h2 a,
.blog-feature h2 a,
.blog-card h3 a {
  color: inherit;
}
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding-top: 16px;
}
.step-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.step-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.step-list strong {
  color: var(--green);
}
.method-list {
  display: grid;
  gap: 12px;
}
.method-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}
.donation-process-hero {
  width: min(100% - 40px, 1280px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 0;
  overflow: hidden;
  min-height: 560px;
  margin: 28px auto 0;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.donation-process-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
}
.donation-process-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
}
.donation-process-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
}
.donation-process-card {
  display: grid;
  align-content: end;
  min-height: 560px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 24, 31, 0.08), rgba(7, 24, 31, 0.76)),
    url("/assets/images/customer/stage-hero-wide.jpg") center / cover no-repeat;
}
.donation-process-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(5, 20, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.donation-process-card strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.28;
}
.donation-process-card span {
  color: #dce8e1;
  font-weight: 800;
}
.donation-process-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.donation-process-side {
  position: sticky;
  top: 104px;
}
.donation-process-side p {
  color: var(--muted);
  font-size: 18px;
}
.donation-flow-list {
  display: grid;
  gap: 14px;
  counter-reset: donation-flow;
}
.donation-flow-list article {
  counter-increment: donation-flow;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-flow-list article::before {
  content: counter(donation-flow, decimal-leading-zero);
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}
.donation-flow-list h3 {
  margin-bottom: 8px;
}
.donation-flow-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.donation-guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.donation-guide-points span {
  padding: 9px 12px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}
.donation-value-hero {
  width: min(100% - 40px, 1280px);
  min-height: 640px;
  display: grid;
  align-items: end;
  margin: 28px auto 0;
  padding: clamp(38px, 7vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 18, 22, 0.84), rgba(4, 18, 22, 0.52), rgba(4, 18, 22, 0.16)),
    url("/assets/images/customer/stage-ensemble.jpg") center / cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
}
.donation-value-title {
  width: min(780px, 100%);
}
.donation-value-title .eyebrow {
  color: #bff7e9;
}
.donation-value-title h1 {
  color: #fff;
}
.donation-value-title p {
  color: #ecf6f1;
  font-size: 20px;
}
.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.donation-value-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}
.donation-value-story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.donation-value-story p {
  color: var(--muted);
  font-size: 18px;
}
.donation-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.donation-impact-grid article {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-impact-grid strong {
  color: var(--green-dark);
  font-size: 18px;
}
.donation-impact-grid span {
  color: var(--muted);
  font-weight: 700;
}
.donation-value-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-value-stats article {
  padding: 24px;
  background: #fff;
}
.donation-value-stats span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}
.donation-value-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}
.donation-value-steps {
  margin-top: 24px;
  padding: clamp(30px, 5vw, 62px);
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-value-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.donation-value-steps-grid article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-value-steps-grid span {
  color: var(--green);
  font-weight: 900;
}
.donation-value-steps-grid h3 {
  margin-top: 18px;
}
.donation-value-steps-grid p {
  color: var(--muted);
  font-weight: 650;
}
.donation-value-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 24px;
  align-items: start;
}
.donation-value-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-value-panel > .button {
  margin-top: 22px;
}
.donation-report-panel {
  padding: clamp(24px, 4vw, 34px);
}
.donation-usage-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.donation-usage-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) minmax(220px, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-usage-list span {
  color: var(--muted);
  font-weight: 850;
}
.donation-usage-list strong {
  color: var(--green-dark);
}
.donation-usage-list em {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}
.donation-usage-list p {
  grid-column: 2 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.donation-allocation-mini {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.donation-allocation-mini h3 {
  margin-bottom: 0;
}
.donation-allocation-mini div {
  display: grid;
  gap: 7px;
}
.donation-allocation-mini span {
  color: var(--muted);
  font-weight: 900;
}
.donation-allocation-mini strong {
  position: relative;
  display: block;
  padding-top: 12px;
  color: var(--green-dark);
  font-size: 18px;
}
.donation-allocation-mini strong::before,
.donation-allocation-mini strong::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  border-radius: 999px;
}
.donation-allocation-mini strong::before {
  width: 100%;
  background: #e6eee8;
}
.donation-allocation-mini strong::after {
  width: var(--bar);
  background: linear-gradient(90deg, var(--green), #5c9b7f);
}
.usage-section-title {
  padding-bottom: 18px;
}
.usage-section-title p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.report-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.report-row {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.95fr) 120px 130px minmax(260px, 1.25fr);
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.report-row:last-child {
  border-bottom: 0;
}
.report-row.head {
  color: var(--muted);
  background: var(--soft);
  font-weight: 900;
}
.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.portal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat-number {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1;
  font-weight: 900;
}
.policy-copy h2 {
  margin-top: 34px;
}
.policy-copy h2:first-child {
  margin-top: 0;
}
.profile-section {
  padding-top: 18px;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.profile-grid article,
.activity-showcase article,
.gallery-feature,
.donation-intro,
.usage-report-hero,
.receipt-visual,
.partner-visual,
.portal-preview-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.activity-showcase article {
  border: 0;
}
.profile-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.profile-grid h3,
.profile-grid p {
  margin-left: 18px;
  margin-right: 18px;
}
.profile-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 650;
}
.subpage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  padding: 30px;
  color: #fff;
  background: #13251f;
  border-radius: 8px;
}
.subpage-cta p {
  margin: 0;
  color: #dce8e1;
}
.activity-showcase {
  padding-bottom: 18px;
}
.activity-gallery-feature {
  padding-top: 18px;
}
.activity-gallery-section {
  padding-top: 18px;
}
.activity-showcase article,
.gallery-feature,
.donation-intro,
.usage-report-hero,
.receipt-visual,
.partner-visual,
.portal-preview-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
}
.activity-showcase img,
.gallery-feature img,
.donation-intro img,
.usage-report-hero img,
.receipt-visual img,
.partner-visual img,
.portal-preview-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.activity-showcase article > div,
.gallery-feature > div,
.donation-intro > div,
.usage-report-hero > div,
.receipt-visual > div,
.partner-visual > div,
.portal-preview-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}
.activity-showcase p,
.gallery-feature p,
.donation-intro p,
.usage-report-hero p,
.receipt-visual p,
.partner-visual p,
.portal-preview-panel p {
  color: var(--muted);
  font-size: 18px;
}
.blog-feature {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.blog-feature:hover,
.blog-feature:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(24, 34, 29, 0.12);
}
.blog-feature-image {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
.blog-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  transition: transform 260ms ease;
}
.blog-feature:hover img,
.blog-feature:focus-within img {
  transform: scale(1.035);
}
.blog-feature article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
}
.blog-feature time,
.blog-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}
.blog-feature p,
.blog-card p {
  color: var(--muted);
  font-size: 18px;
}
.blog-layout {
  display: block;
  padding-top: 18px;
}
.blog-content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(15, 99, 79, 0.28);
  box-shadow: 0 20px 44px rgba(24, 34, 29, 0.12);
}
.blog-card > a {
  overflow: hidden;
  display: block;
}
.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}
.blog-card:hover img,
.blog-card:focus-within img {
  transform: scale(1.045);
}
.blog-card div {
  padding: 20px;
}
.blog-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 999px;
  font-weight: 900;
}
.blog-card h3 {
  margin-bottom: 10px;
}
.blog-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.blog-aside h2 {
  margin-bottom: 4px;
  font-size: 22px;
}
.blog-aside a {
  padding: 11px 12px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 900;
}
.detail-hero,
.blog-detail-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.blog-detail-hero {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}
.detail-hero > div,
.blog-detail-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: clamp(34px, 5vw, 62px);
}
.detail-hero img,
.blog-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.detail-hero h1,
.blog-detail-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}
.detail-hero p,
.blog-detail-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}
.detail-hero time,
.blog-detail-hero time {
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 900;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.35fr);
  gap: 24px;
  align-items: start;
}
.detail-article,
.detail-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-article {
  padding: clamp(28px, 5vw, 58px);
}
.detail-article p {
  color: #2d3834;
  font-size: 20px;
  line-height: 1.9;
}
.detail-article p + p {
  margin-top: 22px;
}
.detail-article h2,
.detail-article h3 {
  margin: 32px 0 14px;
  color: var(--ink);
  font-weight: 950;
  line-height: 1.25;
}
.detail-article h2 {
  font-size: clamp(28px, 3vw, 40px);
}
.detail-article h3 {
  font-size: clamp(22px, 2.3vw, 30px);
}
.detail-article ul,
.detail-article ol {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 24px;
  color: #2d3834;
  font-size: 19px;
  line-height: 1.8;
}
.detail-article a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.detail-inline-image {
  margin: 30px 0;
}
.detail-inline-image img {
  width: 100%;
  max-height: 460px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.detail-inline-image figcaption {
  margin-top: 10px;
  color: #64706c;
  font-size: 14px;
  font-weight: 800;
}
.detail-article blockquote {
  margin: 0 0 30px;
  padding: 24px 28px;
  color: var(--green-dark);
  background: var(--soft);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}
.detail-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 24px;
}
.detail-side ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-side li,
.related-list a {
  padding: 14px;
  background: var(--soft);
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 900;
}
.related-list {
  display: grid;
  gap: 10px;
}
.related-list a {
  display: grid;
  gap: 6px;
}
.related-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.detail-empty {
  min-height: 420px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-header,
  .hero {
    animation: none;
  }
  .reveal-ready [data-reveal],
  .primary-nav a,
  .button,
  .text-link,
  .merged-quick-nav a,
  .impact-strip div,
  .feature-row article,
  .partner-grid article,
  .portal-grid article,
  .content-panel,
  .profile-grid article,
  .activity-showcase article,
  .gallery-feature,
  .donation-intro,
  .receipt-visual,
  .partner-visual,
  .portal-preview-panel,
  .usage-dashboard article,
  .transparency-flow article,
  .about-anchor-nav a,
  .mag-history article,
  .news-preview article,
  .notice-list article,
  .blog-feature,
  .blog-feature img,
  .blog-card,
  .blog-card img {
    transition: none;
  }
  .reveal-ready [data-reveal],
  .reveal-ready .hero[data-reveal],
  .reveal-ready .visual-subhero[data-reveal],
  .reveal-ready .detail-hero[data-reveal],
  .reveal-ready .blog-detail-hero[data-reveal],
  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .button:hover,
  .button:focus-visible,
  .text-link:hover,
  .text-link:focus-visible,
  .merged-quick-nav a:hover,
  .merged-quick-nav a:focus-visible,
  .impact-strip div:hover,
  .feature-row article:hover,
  .partner-grid article:hover,
  .portal-grid article:hover,
  .content-panel:hover,
  .profile-grid article:hover,
  .activity-showcase article:hover,
  .gallery-feature:hover,
  .donation-intro:hover,
  .receipt-visual:hover,
  .partner-visual:hover,
  .portal-preview-panel:hover,
  .usage-dashboard article:hover,
  .transparency-flow article:hover,
  .about-anchor-nav a:hover,
  .about-anchor-nav a:focus-visible,
  .mag-history article:hover,
  .news-preview article:hover,
  .news-preview article:focus-within,
  .notice-list article:hover,
  .notice-list article:focus-within,
  .blog-feature:hover,
  .blog-feature:focus-within,
  .blog-feature:hover img,
  .blog-feature:focus-within img,
  .blog-card:hover,
  .blog-card:focus-within,
  .blog-card:hover img,
  .blog-card:focus-within img {
    transform: none;
  }
}
.usage-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 22px;
}
.usage-dashboard article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.usage-dashboard span {
  color: var(--muted);
  font-weight: 850;
}
.usage-dashboard strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.usage-dashboard p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.allocation-section {
  margin-top: 0;
}
.allocation-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.allocation-list div {
  display: grid;
  gap: 8px;
}
.allocation-list span {
  color: var(--muted);
  font-weight: 900;
}
.allocation-list strong {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  color: var(--green-dark);
  font-size: 20px;
}
.allocation-list strong::before,
.allocation-list strong::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 999px;
}
.allocation-list strong::before {
  width: 100%;
  background: #e6eee8;
}
.allocation-list strong::after {
  width: var(--bar);
  background: linear-gradient(90deg, var(--green), #5c9b7f);
}
.transparency-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 24px;
}
.transparency-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.transparency-flow article {
  padding: 22px;
  background: #fff;
}
.transparency-flow span {
  color: var(--green);
  font-weight: 900;
}
.transparency-flow strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 20px;
}
.transparency-flow p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.report-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.report-panel .section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.report-dashboard {
  display: grid;
  gap: 24px;
}
.report-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.report-dashboard-grid article,
.report-upload-panel,
.report-status-panel,
.report-list-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.report-dashboard-grid article {
  padding: 22px;
}
.report-dashboard-grid span,
.report-status-panel span {
  color: var(--muted);
  font-weight: 850;
}
.report-dashboard-grid strong,
.report-status-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.report-dashboard-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.report-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 24px;
  align-items: start;
}
.report-upload-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
}
.report-upload-panel > div p:last-child {
  color: var(--muted);
  font-weight: 650;
}
.report-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.report-upload-panel input[type="file"] {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  background: var(--soft);
}
.report-status-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 24px;
}
.report-status-panel div {
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}
.report-status-panel strong {
  font-size: 18px;
}
.report-list-panel {
  padding: 26px;
}
.report-file-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.report-file-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 110px 130px 110px minmax(220px, 0.8fr);
  gap: 14px;
  align-items: start;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}
.report-file-row:last-child {
  border-bottom: 0;
}
.report-file-row.head {
  color: var(--muted);
  background: var(--soft);
  font-weight: 900;
}
.report-file-row a {
  color: var(--green);
  font-weight: 900;
}
.report-file-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.report-status-chip {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}
.report-file-empty {
  padding: 28px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.receipt-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.receipt-dashboard-grid article,
.receipt-account-strip,
.receipt-history-panel,
.receipt-login-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.receipt-dashboard-grid article {
  padding: 22px;
}
.receipt-dashboard-grid span,
.receipt-account-strip span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}
.receipt-dashboard-grid strong,
.receipt-account-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
}
.receipt-dashboard-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.receipt-account-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
}
.receipt-account-strip article {
  min-width: 0;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.receipt-account-strip strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}
.receipt-history-panel,
.receipt-login-panel {
  padding: clamp(24px, 4vw, 34px);
}
.receipt-login-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.receipt-login-panel p:last-child {
  color: var(--muted);
  font-weight: 650;
}
.receipt-empty {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 38px 20px;
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}
.receipt-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.receipt-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.receipt-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 96px 108px 116px 112px minmax(150px, 0.8fr) 104px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.receipt-row:last-child {
  border-bottom: 0;
}
.receipt-row.head {
  color: var(--muted);
  background: var(--soft);
  font-weight: 900;
}
.receipt-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 750;
}
.receipt-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}
.receipt-status.is-complete {
  color: #07533f;
  background: #dff2e8;
}
.receipt-status.is-pending {
  color: #7a4200;
  background: #fff0d6;
}
.receipt-status.is-review {
  color: #31506f;
  background: #e4edf6;
}
.receipt-status.is-muted {
  color: var(--muted);
  background: var(--soft);
}
.inline-action-form {
  margin: 0;
}
.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.button.compact {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.usage-cta {
  margin-top: 0;
}
.process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 58px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.process-band div {
  padding: 24px;
  background: #fff;
}
.process-band span {
  color: var(--green);
  font-weight: 900;
}
.process-band strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 22px;
}
.process-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 28px;
  align-items: start;
}
.notice-layout .notice-list {
  padding-top: 0;
}
.notice-ad-grid {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}
.notice-ad-banner {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 142px;
  color: #fff;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(24, 34, 29, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.notice-ad-banner:hover,
.notice-ad-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(24, 34, 29, 0.12);
}
.notice-ad-banner img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.notice-ad-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 18, 22, 0.22), rgba(6, 18, 22, 0));
}
.notice-ad-banner span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.1;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.policy-hero {
  min-height: 300px;
}
.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.policy-layout aside {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 104px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.policy-layout aside strong {
  margin-bottom: 8px;
  font-size: 18px;
}
.policy-layout aside span {
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
}
.about-anchor-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 22px;
  padding-bottom: 0;
}
.about-anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(24, 34, 29, 0.06);
}
.about-intro,
.greeting-section,
.leader-card,
.organization-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}
.about-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}
.about-image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-image-stack img:first-child {
  aspect-ratio: 4 / 3;
}
.about-image-stack img:last-child {
  aspect-ratio: 3 / 4;
}
.greeting-section {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(26px, 5vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.greeting-section img,
.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.greeting-section p,
.organization-section p {
  color: var(--muted);
  font-size: 18px;
}
.greeting-section strong {
  display: block;
  margin-top: 22px;
  color: var(--green-dark);
  font-size: 20px;
}
.history-section {
  padding-top: 28px;
}
.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.history-timeline article {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}
.history-timeline time {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}
.history-timeline p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}
.leader-section {
  padding-top: 28px;
}
.leader-card {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  padding: clamp(24px, 5vw, 44px);
  background: #13251f;
  color: #fff;
  border-radius: 8px;
}
.leader-card .eyebrow {
  color: #bdeee1;
}
.leader-role {
  margin: -4px 0 18px;
  color: #dce8e1;
  font-weight: 800;
}
.leader-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.leader-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 750;
}
.organization-section {
  align-items: start;
  padding-top: 28px;
}
.org-chart {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.org-node {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
}
.org-node.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.org-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.magazine {
  background: #fcfbf7;
}
.about-stage-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 15, 18, 0.88), rgba(7, 15, 18, 0.48), rgba(7, 15, 18, 0.18)),
    url("/assets/images/customer/stage-hero-wide.jpg") center / cover no-repeat;
}
.about-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  padding: clamp(42px, 7vw, 96px);
}
.about-stage-copy .eyebrow {
  color: #d7fff1;
}
.about-stage-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #edf5ef;
  font-size: 21px;
}
.mag-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 700px;
}
.mag-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 84px);
}
.mag-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 21px;
}
.mag-cover {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 14px;
  padding: 20px;
  background: #efe8dc;
}
.mag-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.mag-cover img:nth-child(1) {
  grid-row: span 2;
}
.mag-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(28px, 6vw, 84px) 44px;
}
.mag-index a {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
}
.mag-section {
  padding: clamp(44px, 7vw, 86px) clamp(28px, 6vw, 84px);
}
.mag-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}
.mag-panel {
  padding: clamp(26px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.mag-panel p {
  color: var(--muted);
  font-size: 18px;
}
.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}
.split-cards .mag-panel {
  min-height: 100%;
}
.intro-contact {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.intro-contact strong {
  color: var(--green-dark);
  font-size: 18px;
}
.intro-contact span {
  color: var(--muted);
  font-weight: 750;
}
.mag-photo {
  position: relative;
  min-height: 100%;
}
.mag-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mag-photo img + img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 52%;
  min-height: 0;
  margin: 0;
  border: 8px solid #fcfbf7;
}
.quote-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 0;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
}
.quote-section img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.quote-section div {
  padding: clamp(30px, 5vw, 62px);
}
.quote-section .eyebrow {
  color: #c7efe2;
}
.quote-section blockquote {
  margin: 0 0 22px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.16;
  font-weight: 950;
}
.quote-section p {
  color: #dce8e1;
  font-size: 18px;
}
.mag-history {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.mag-history article {
  min-height: 128px;
  padding: 18px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mag-history article:nth-child(4n) {
  border-right: 0;
}
.mag-history article:nth-last-child(-n + 4) {
  border-bottom: 0;
}
.mag-history time {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 950;
}
.mag-history p {
  margin: 0;
  font-weight: 760;
}
.mag-profile {
  display: block;
}
.mag-profile .mag-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: center;
}
.mag-leader-combined {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: center;
}
.mag-profile .mag-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.mag-leader-combined > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.mag-leader-combined blockquote {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.18;
  font-weight: 950;
}
.mag-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.mag-list span {
  padding: 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}
.work-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-strip span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}
.org-map {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.org-map article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.org-map article:first-child {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.org-map p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.org-map article:first-child p {
  color: #e5f3ee;
}
.org-tree {
  margin-top: 28px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 50% 0, rgba(16, 109, 83, 0.08), transparent 34%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.org-tree-stack {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 26px;
}
.org-tree-stack::before {
  display: none;
}
.org-tree-node {
  min-width: 250px;
  max-width: 320px;
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 17px 20px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 34, 27, 0.06);
}
.org-tree-node strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 19px;
}
.org-tree-node span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  text-wrap: balance;
}
.org-tree-node.primary {
  width: min(320px, 100%);
  min-height: 92px;
  padding: 18px 24px;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 18px 42px rgba(16, 109, 83, 0.18);
}
.org-tree-node.primary strong,
.org-tree-node.primary span {
  color: #fff;
}
.org-tree-node.secondary {
  width: min(340px, 100%);
  background: #eef5ef;
}
.org-tree-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.org-tree-branches::before {
  display: none;
}
.org-tree-branches .org-tree-node {
  position: relative;
  min-width: 0;
  max-width: none;
  min-height: 88px;
}
.org-tree-branches .org-tree-node::before {
  display: none;
}

.form-page {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: start center;
  padding: 56px 20px;
}
.form-panel {
  width: min(920px, 100%);
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.donation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
label, fieldset {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
legend { padding: 0 8px; }
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cad6cd;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}
select,
textarea {
  width: 100%;
  border: 1px solid #cad6cd;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
}
select {
  min-height: 48px;
}
textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}
.full { grid-column: 1 / -1; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.method-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.method-card input {
  width: auto;
  min-height: auto;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check input {
  width: auto;
  min-height: auto;
}
.field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.notice {
  margin: 18px 0;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}
.notice.success { background: #e8f7ee; color: #155b3e; }
.notice.error { background: #fff0ef; color: #9b2020; }
.donation-apply-page {
  padding: 28px 20px 64px;
}
.donation-apply-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  margin: 0 auto;
}
.donation-apply-main {
  display: grid;
  gap: 18px;
}
.donation-apply-form {
  display: grid;
  gap: 18px;
}
.participant-status-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  color: #fff;
  background: linear-gradient(135deg, #0d3c31, #14261f);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 35, 29, 0.12);
}
.participant-status-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
}
.participant-status-head p {
  grid-column: 1 / -1;
  margin: 0;
  color: #bdeee1;
  font-weight: 900;
}
.participant-status-head h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}
.participant-status-head > span {
  padding: 8px 12px;
  color: var(--green-dark);
  background: #e9f4ef;
  border-radius: 999px;
  font-weight: 950;
}
.participant-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.participant-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.participant-status-grid article {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.participant-profile-grid article {
  display: grid;
  gap: 7px;
  min-height: 72px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.participant-status-grid span {
  color: #bdeee1;
  font-size: 13px;
  font-weight: 850;
}
.participant-profile-grid span {
  color: #bdeee1;
  font-size: 13px;
  font-weight: 850;
}
.participant-status-grid strong,
.participant-profile-grid strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  word-break: break-word;
}
.participant-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.donation-complete-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background: linear-gradient(135deg, #0c3b30, #10241e);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 35, 29, 0.16);
}
.donation-complete-panel .eyebrow {
  color: #bdeee1;
}
.donation-complete-panel h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
.donation-complete-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}
.completion-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.completion-summary-grid article {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.completion-summary-grid span {
  color: #bdeee1;
  font-size: 13px;
  font-weight: 900;
}
.completion-summary-grid strong {
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
}
.apply-intro-section {
  display: grid;
  gap: 8px;
}
.apply-intro-section h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
.apply-intro-section p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.section-top-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.apply-section {
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.apply-section-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.1;
}
.apply-section > header {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}
.apply-section > header.section-header-actions {
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
}
.section-header-actions .button.compact {
  min-height: 40px;
  padding: 0 16px;
}
.apply-section > header > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}
.apply-section header p {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 900;
}
.apply-section header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}
.my-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.my-data-grid article {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.my-data-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
.my-data-grid strong {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.35;
  word-break: break-word;
}
.choice-grid,
.amount-grid,
.apply-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.choice-grid.two,
.apply-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.choice-grid.one {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}
.choice-card,
.amount-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 110px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.amount-card {
  min-height: 88px;
  align-content: center;
}
.choice-card input,
.amount-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: auto;
  min-height: auto;
}
.choice-card span,
.amount-card span {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}
.amount-card span {
  font-size: 22px;
}
.choice-card small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}
.choice-card:has(input:checked),
.amount-card:has(input:checked),
.method-card:has(input:checked) {
  background: #fff;
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
.verify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  align-items: end;
}
.verify-row button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.signup-page .apply-field-grid {
  grid-template-columns: minmax(0, 1fr);
}
.signup-page .apply-field-grid label:not(.full) {
  max-width: 460px;
}
.signup-page .verify-row {
  max-width: 770px;
  grid-template-columns: minmax(0, 1fr) 150px;
}
.signup-page .verify-row label {
  max-width: none;
}
.signup-page .apply-field-grid > .full {
  max-width: 770px;
}
.signup-page .apply-field-grid + .choice-grid {
  margin-top: 14px;
}
.apply-methods .method-card {
  min-height: 82px;
  background: #fff;
}
.recurring-payment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 14px;
  align-items: end;
  margin-top: 14px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.compact-check {
  min-height: 48px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
}
.recurring-day-field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}
.payment-guide-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.payment-guide-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f5f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.payment-guide-card[hidden] {
  display: none;
}
.payment-guide-card strong {
  color: var(--green-dark);
  font-size: 18px;
}
.payment-guide-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.payment-guide-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.payment-guide-card dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.payment-guide-card dt {
  color: var(--muted);
  font-weight: 900;
}
.payment-guide-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  word-break: break-word;
}
.agreement-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.agreement-section .button {
  min-width: 180px;
}
.mypage-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.mypage-actions-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mypage-actions .button {
  min-width: 0;
  min-height: 48px;
  padding: 0 22px;
}
.mypage-actions .button.primary {
  min-width: 220px;
}
.mypage-actions .danger-link {
  border: 1px solid #efd0d0;
  color: #9f1d1d;
  background: #fff8f8;
}
.mypage-actions .danger-link:hover,
.mypage-actions .danger-link:focus-visible {
  color: #fff;
  background: #9f1d1d;
  border-color: #9f1d1d;
}
.deletion-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e2b8b8;
  border-radius: 8px;
  background: #fff7f7;
  color: #541313;
  font-weight: 800;
}
.deletion-complete {
  min-height: 360px;
  align-content: center;
}
.agreement-copy {
  display: grid;
  gap: 12px;
}
.agreement-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.agreement-links .button.compact {
  min-width: 0;
  min-height: 40px;
  padding: 0 14px;
}
.donation-apply-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.donation-apply-side > div {
  padding: 22px;
  background: #13251f;
  border-radius: 8px;
  color: #fff;
}
.donation-apply-side > div + div {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.donation-apply-side .eyebrow {
  color: #bdeee1;
}
.donation-apply-side > div + div .eyebrow {
  color: var(--green);
}
.donation-apply-side h2 {
  font-size: 26px;
}
.donation-apply-side ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.donation-apply-side li {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 850;
}
.donation-apply-side p {
  color: var(--muted);
  font-weight: 650;
}
.side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.side-actions .button {
  min-height: 44px;
}
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.login-page .apply-section > header {
  grid-template-columns: minmax(0, 1fr);
}
.login-page .apply-section > header > span {
  display: none;
}
.business-doc-section.is-hidden {
  display: none;
}
.business-doc-section input[type="file"] {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-complete-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 20, 17, 0.58);
}
.donation-complete-dialog {
  display: grid;
  gap: 12px;
  width: min(460px, 100%);
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  text-align: center;
}
.donation-complete-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 4vw, 34px);
}
.donation-complete-dialog p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.donation-complete-dialog .button {
  justify-self: center;
  margin-top: 8px;
}
.donation-detail-page {
  padding: 34px 20px 76px;
}
.donation-detail-shell {
  display: grid;
  gap: 18px;
}
.donation-detail-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background: linear-gradient(135deg, #0d3c31, #14261f);
  border-radius: 8px;
}
.donation-detail-head h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}
.donation-detail-head p {
  margin: 8px 0 0;
  color: #d6f5ec;
  font-weight: 850;
}
.donation-detail-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-detail-flow span,
.donation-detail-flow strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: var(--soft);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 900;
}
.donation-detail-flow span:not(:last-child)::after,
.donation-detail-flow strong::after {
  content: "→";
  margin-left: 12px;
  color: var(--muted);
}
.donation-detail-flow strong {
  color: #fff;
  background: var(--green);
}
.donation-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.donation-detail-summary article,
.donation-management-note,
.detail-action-panel,
.donation-single-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.donation-detail-summary article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  align-content: center;
  padding: 20px;
}
.donation-detail-summary span,
.donation-management-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
.donation-detail-summary strong:not(.receipt-status) {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.2;
}
.donation-detail-summary small {
  color: var(--muted);
  font-weight: 750;
}
.donation-management-note {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}
.donation-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 18px;
}
.compact-data-grid article {
  min-height: 74px;
  padding: 14px;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.detail-action-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 16px;
  background: var(--soft);
}
.detail-action-panel strong {
  color: var(--green-dark);
  font-size: 18px;
}
.detail-action-panel span {
  color: var(--muted);
  font-weight: 850;
}
.donation-management-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 12px;
  align-items: end;
}
.donation-management-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
.donation-stop-form {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}
.donation-single-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
}
.donation-single-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 16px 28px;
  }
  .primary-nav {
    gap: 18px;
  }
  .program-grid,
  .gallery-grid,
  .gallery-grid.expanded,
  .partner-grid,
  .usage-dashboard,
  .transparency-flow,
  .history-timeline,
  .mag-history,
  .org-tree-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portal-grid,
  .feature-row,
  .profile-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-anchor-nav,
  .mag-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .story-band,
  .feature-band,
  .usage-preview,
  .news-partner-grid,
  .donation-intro,
  .usage-report-hero,
  .receipt-visual,
  .partner-visual,
  .portal-preview-panel,
  .blog-content-row,
  .detail-layout,
  .transparency-section,
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .blog-aside,
  .detail-side,
  .notice-aside,
  .notice-ad-grid,
  .policy-layout aside {
    position: static;
  }
  .report-row {
    grid-template-columns: 110px minmax(180px, 1fr) 110px 120px;
  }
  .report-row > span:nth-child(5) {
    grid-column: 2 / -1;
    color: var(--muted);
  }
  .report-row.head > span:nth-child(5) {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-wrap: wrap;
  }
  .brand span {
    max-width: min(54vw, 420px);
    line-height: 1.25;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .primary-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open,
  .primary-nav.always {
    display: flex;
  }
  .primary-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px;
  }
  .nav-item {
    display: grid;
    align-items: stretch;
  }
  .nav-parent::after {
    margin-left: auto;
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px;
    background: var(--soft);
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .nav-submenu::before {
    display: none;
  }
  .nav-submenu a {
    padding: 10px 12px;
    background: #fff;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    padding: 12px 16px;
  }
  .brand {
    gap: 9px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand span {
    max-width: calc(100vw - 138px);
    font-size: 15px;
  }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open,
  .primary-nav.always { display: flex; }
  .primary-nav a { padding: 12px; }
  .nav-item {
    display: grid;
    align-items: stretch;
  }
  .nav-parent::after {
    margin-left: auto;
  }
  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px;
    background: var(--soft);
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .nav-submenu::before {
    display: none;
  }
  .nav-submenu a {
    padding: 10px 12px;
    background: #fff;
  }
  .nav-cta {
    width: 100%;
  }
  .split,
  .page-split,
  .story-band,
  .cards,
  .donation-form,
  .gallery-grid,
  .gallery-grid.expanded,
  .feature-row,
  .partner-grid,
  .portal-grid,
  .page-grid,
  .impact-strip,
  .program-grid,
  .feature-band,
  .usage-preview,
  .usage-board,
  .news-partner-grid,
  .merged-quick-nav,
  .profile-grid,
  .activity-showcase article,
  .gallery-feature,
  .donation-intro,
  .usage-report-hero,
  .receipt-visual,
  .partner-visual,
  .portal-preview-panel,
  .process-band,
  .notice-layout,
  .blog-feature,
  .blog-layout,
  .blog-content-row,
  .blog-grid,
  .detail-hero,
  .blog-detail-hero,
  .detail-layout,
  .policy-layout,
  .usage-dashboard,
  .transparency-section,
  .transparency-flow,
  .about-anchor-nav,
  .about-intro,
  .greeting-section,
  .leader-card,
  .organization-section,
  .history-timeline,
  .about-stage-hero,
  .mag-hero,
  .mag-feature,
  .quote-section,
  .mag-profile,
  .mag-index,
  .mag-cover,
  .mag-history,
  .mag-list,
  .split-cards,
  .mag-profile .mag-panel,
  .mag-leader-combined,
  .org-map,
  .org-tree-branches {
    grid-template-columns: 1fr;
  }
  .about-image-stack,
  .org-branches {
    grid-template-columns: 1fr;
  }
  .about-stage-hero {
    min-height: auto;
  }
  .visual-subhero {
    align-items: flex-start;
    flex-direction: column;
    min-height: 320px;
  }
  .hero-badges {
    justify-content: flex-start;
  }
  .hero {
    align-items: stretch;
    flex-direction: column;
    min-height: auto;
  }
  .hero-summary {
    width: 100%;
  }
  .info-card {
    grid-template-columns: 1fr;
  }
  .notice-list article,
  .step-list li,
  .report-row {
    grid-template-columns: 1fr;
  }
  .report-row.head {
    display: none;
  }
  .mag-hero {
    min-height: auto;
  }
  .mag-cover img {
    min-height: 220px;
  }
  .mag-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .mag-photo img + img {
    position: static;
    width: 100%;
    height: auto;
    margin: 12px 0 0;
    border: 0;
  }
  .mag-profile .mag-panel > img {
    min-height: 340px;
  }
  .mag-history article,
  .mag-history article:nth-child(4n) {
    border-right: 0;
  }
  .mag-history article:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .mag-history article:last-child {
    border-bottom: 0;
  }
  .org-tree {
    padding: 20px;
  }
  .org-tree-stack {
    gap: 18px;
  }
  .org-tree-stack::before {
    top: 82px;
    bottom: -14px;
  }
  .org-tree-branches {
    gap: 12px;
    margin-top: 30px;
  }
  .org-tree-branches::before,
  .org-tree-branches .org-tree-node::before {
    display: none;
  }
  .donate-band {
    align-items: stretch;
    flex-direction: column;
  }
  .subpage-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .notice-aside,
  .notice-ad-grid,
  .blog-aside,
  .detail-side,
  .policy-layout aside {
    position: static;
  }
  .blog-feature img {
    min-height: 260px;
    border-radius: 8px 8px 0 0;
  }
  .blog-feature-image {
    border-radius: 8px 8px 0 0;
  }
  .blog-feature article {
    border-left: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
  }
  .detail-hero img,
  .blog-detail-hero img {
    min-height: 260px;
  }
  .detail-hero > div,
  .blog-detail-hero > div {
    min-height: auto;
  }
  .site-footer {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .footer-agencies {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.08;
  }
  h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
  h3 {
    font-size: 20px;
  }
  .section,
  .sub-hero,
  .detail-hero,
  .blog-detail-hero {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 44px 0;
  }
  .hero {
    padding: 42px 20px 48px;
  }
  .hero p,
  .sub-hero p:last-child,
  .visual-subhero p:last-child,
  .detail-hero p,
  .blog-detail-hero p {
    font-size: 17px;
  }
  .visual-subhero {
    min-height: 300px;
    padding: 48px 20px;
  }
  .hero-actions,
  .donate-actions,
  .button-row {
    width: 100%;
    flex-direction: column;
  }
  .button,
  .hero-actions .button,
  .donate-actions .button,
  .button-row .button {
    width: 100%;
  }
  .impact-strip {
    margin-top: 0;
  }
  .feature-band,
  .donation-intro,
  .usage-report-hero,
  .receipt-visual,
  .partner-visual,
  .portal-preview-panel,
  .blog-feature,
  .detail-hero,
  .blog-detail-hero,
  .greeting-section,
  .leader-card,
  .organization-section,
  .mag-feature,
  .quote-section {
    border-radius: 8px;
  }
  .feature-band > div,
  .donation-intro > div,
  .usage-report-hero > div,
  .receipt-visual > div,
  .partner-visual > div,
  .portal-preview-panel > div,
  .detail-hero > div,
  .blog-detail-hero > div,
  .detail-article,
  .detail-side,
  .content-panel,
  .panel {
    padding: 22px;
  }
  .program-card img,
  .gallery-grid img,
  .activity-showcase img,
  .gallery-feature img,
  .donation-intro img,
  .usage-report-hero img,
  .receipt-visual img,
  .partner-visual img,
  .portal-preview-panel img,
  .blog-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .blog-feature img,
  .detail-hero img,
  .blog-detail-hero img {
    min-height: 220px;
  }
  .method-grid,
  .method-list div {
    grid-template-columns: 1fr;
  }
  .method-list div {
    align-items: flex-start;
    flex-direction: column;
  }
  .report-table {
    border-radius: 8px;
  }
  .report-row {
    gap: 8px;
    padding: 14px;
  }
  .report-row span,
  .report-row strong {
    min-width: 0;
  }
  .org-tree-node {
    max-width: none;
  }
  .form-page {
    padding: 28px 14px;
  }
  .form-panel {
    padding: 22px;
  }
  .footer-agencies {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-agencies a {
    width: min(320px, 100%);
    height: 86px;
  }
}

@media (max-width: 1180px) {
  .report-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .report-workspace {
    grid-template-columns: 1fr;
  }
  .report-status-panel {
    position: static;
  }
  .donation-apply-layout {
    grid-template-columns: 1fr;
  }
  .donation-apply-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .participant-status-grid,
  .participant-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .completion-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .donation-process-hero,
  .donation-process-flow,
  .donation-value-story,
  .donation-value-bottom {
    grid-template-columns: 1fr;
  }
  .donation-process-side {
    position: static;
  }
  .donation-value-stats,
  .donation-value-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .donation-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .report-dashboard-grid,
  .report-form-grid,
  .report-file-row {
    grid-template-columns: 1fr;
  }
  .report-upload-panel,
  .report-status-panel,
  .report-list-panel {
    padding: 20px;
  }
  .report-file-row.head {
    display: none;
  }
  .donation-apply-page {
    padding: 28px 14px 46px;
  }
  .donation-apply-side,
  .donation-detail-summary,
  .donation-management-form,
  .my-data-grid,
  .participant-profile-grid,
  .participant-status-grid,
  .completion-summary-grid,
  .choice-grid,
  .choice-grid.two,
  .amount-grid,
  .apply-field-grid,
  .recurring-payment-box,
  .verify-row,
  .agreement-section {
    grid-template-columns: 1fr;
  }
  .participant-status-head {
    grid-template-columns: 1fr;
  }
  .participant-status-head > span {
    width: fit-content;
  }
  .donation-detail-page {
    padding: 26px 14px 54px;
  }
  .donation-detail-head {
    flex-direction: column;
  }
  .donation-detail-head .button-row,
  .donation-management-form .button,
  .donation-stop-form .button {
    width: 100%;
  }
  .donation-detail-flow span,
  .donation-detail-flow strong {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }
  .donation-detail-flow span:not(:last-child)::after,
  .donation-detail-flow strong::after {
    content: "↓";
  }
  .detail-action-panel,
  .donation-management-note {
    align-items: stretch;
    flex-direction: column;
  }
  .donation-stop-form {
    justify-content: stretch;
  }
  .apply-section,
  .donation-apply-side > div {
    padding: 22px;
  }
  .apply-section > header {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }
  .apply-section > header.section-header-actions {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .section-header-actions .button.compact {
    grid-column: 2 / -1;
    width: fit-content;
  }
  .apply-section > header > span {
    width: 40px;
    height: 40px;
  }
  .agreement-section .button {
    width: 100%;
  }
  .mypage-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .mypage-actions-secondary {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .mypage-actions .button.primary {
    width: 100%;
    min-width: 0;
  }
  .donation-process-hero,
  .donation-value-hero {
    width: min(100% - 28px, 1280px);
    min-height: auto;
  }
  .donation-process-copy,
  .donation-value-hero {
    padding: 48px 22px;
  }
  .donation-process-card {
    min-height: 320px;
    padding: 18px;
  }
  .donation-actions {
    width: 100%;
    flex-direction: column;
  }
  .donation-actions .button {
    width: 100%;
  }
  .donation-impact-grid,
  .donation-value-stats,
  .donation-value-steps-grid,
  .donation-flow-list article,
  .donation-usage-list div {
    grid-template-columns: 1fr;
  }
  .donation-process-flow,
  .donation-value-steps,
  .donation-value-panel {
    padding: 22px;
  }
  .donation-usage-list p {
    grid-column: auto;
  }
  .receipt-dashboard-grid,
  .receipt-account-strip {
    grid-template-columns: 1fr;
  }
  .receipt-login-panel {
    align-items: stretch;
    flex-direction: column;
  }
  .receipt-row.head {
    display: none;
  }
  .receipt-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
  .receipt-row > span,
  .receipt-row > strong {
    min-width: 0;
  }
  .receipt-row > span {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
  }
  .receipt-row > span::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 900;
  }
}
.payment-guide-stack .payment-guide-card:not(.is-managed-guide) {
  display: none;
}
