﻿:root {
  --ink: #0b1f33;
  --ink-soft: #526171;
  --paper: #f4f7fb;
  --paper-strong: #ffffff;
  --white: #ffffff;
  --line: rgba(11, 31, 51, 0.13);
  --line-light: rgba(255, 255, 255, 0.22);
  --gold: #c99b35;
  --gold-deep: #85621f;
  --blue: #1f5fa8;
  --blue-deep: #0d3f73;
  --clay: #8a5145;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.12);
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --body-font: "Source Sans 3", "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  --display-font: "Spectral", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 190px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.96) 420px),
    var(--paper);
  font-family: var(--body-font);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0057b8 0 50%, #ffd700 50% 100%);
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seal-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 40px), 1240px);
  margin: 18px auto 0;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(11, 31, 51, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  animation: header-drop 620ms var(--ease) both;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(11, 31, 51, 0.94);
}

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

.brand-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.08);
  overflow: hidden;
}

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.86rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(6, minmax(31px, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 31px;
  height: 34px;
  padding: 0 6px;
  border: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.language-switcher button:hover {
  color: var(--white);
}

.language-switcher button.is-active,
.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-action {
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper-strong);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 120px 24px 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.92) 0%, rgba(9, 13, 20, 0.74) 44%, rgba(9, 13, 20, 0.18) 100%),
    url("assets/optimized/work-logistics.webp") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-seal {
  position: absolute;
  z-index: 0;
  right: max(36px, calc((100vw - var(--max)) / 2));
  bottom: 74px;
  width: min(28vw, 340px);
  opacity: 0.16;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.42));
  pointer-events: none;
  animation: seal-breathe 8s ease-in-out infinite;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  animation: fade-slide-up 760ms var(--ease) 40ms both;
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-family: var(--display-font);
  font-size: 4.7rem;
  line-height: 0.98;
  font-weight: 700;
  animation: fade-slide-up 760ms var(--ease) 120ms both;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
  animation: fade-slide-up 760ms var(--ease) 240ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: fade-slide-up 760ms var(--ease) 360ms both;
}

.button {
  min-width: 178px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: #d7ad5a;
  box-shadow: 0 12px 30px rgba(197, 154, 68, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.46);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 48px), var(--max));
  margin: -34px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  animation: fade-slide-up 760ms var(--ease) 460ms both;
}

.credibility-item {
  padding: 28px;
}

.credibility-item + .credibility-item {
  border-left: 1px solid var(--line);
}

.credibility-item span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-weight: 800;
}

.credibility-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: 2.05rem;
  line-height: 1;
}

.credibility-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 62px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 780px;
  display: block;
}

.section-heading h2,
.transparency h2 {
  margin: 12px 0 0;
  font-family: var(--display-font);
  font-size: 2.9rem;
  line-height: 1.08;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.about-copy {
  padding-top: 4px;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.director-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 30px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(36, 95, 168, 0.78)),
    var(--ink);
}

.director-panel p,
.contact-card p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.director-panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1.12;
}

.director-panel span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.activity {
  padding: 92px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(19, 38, 68, 0.96)),
    var(--ink);
}

.activity-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.activity-heading {
  align-items: start;
  color: var(--white);
}

.activity-heading h2 {
  color: var(--white);
}

.activity-heading > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
}

.photo-story figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-story figure:hover img {
  transform: scale(1.035);
}

.story-main {
  min-height: 648px;
}

.story-main figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.72);
  backdrop-filter: blur(14px);
}

.story-main figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-main figcaption strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1.18;
}

.story-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.story-side figure:first-child {
  grid-column: 1 / -1;
}

.story-side figure {
  min-height: 315px;
}

.story-side figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(16, 24, 32, 0.72);
  font-weight: 800;
}

.impact-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.impact-cases figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-cases img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.impact-cases figure:hover img {
  transform: scale(1.035);
}

.impact-cases figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.74);
  backdrop-filter: blur(12px);
}

.impact-cases span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-cases strong {
  display: block;
  font-family: var(--display-font);
  font-size: 1.28rem;
  line-height: 1.22;
}

.field-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.field-notes article {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.field-notes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-notes article > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.field-notes h3 {
  margin: 12px 0 12px;
  font-family: var(--display-font);
  font-size: 1.75rem;
  line-height: 1.12;
}

.field-notes p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.report {
  display: grid;
  gap: 28px;
}

.report-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.report-copy h2 {
  margin: 12px 0 18px;
  font-family: var(--display-font);
  font-size: 2.75rem;
  line-height: 1.08;
}

.report-copy p:not(.section-label) {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.report-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.report-board div {
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.report-board span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: var(--display-font);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1;
}

.report-board p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.report-breakdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.report-panel {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.report-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 154, 68, 0.34);
  box-shadow: 0 30px 74px rgba(16, 24, 32, 0.16);
}

.report-panel-strong {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(36, 95, 168, 0.84)),
    var(--ink);
}

.report-panel > span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-panel-strong > span {
  color: var(--gold);
}

.report-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-panel li {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.report-panel-strong li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.report-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}

.report-panel strong {
  color: var(--blue);
  font-family: var(--display-font);
  font-size: 1.82rem;
  line-height: 1;
  white-space: nowrap;
}

.report-panel-strong strong {
  color: var(--gold);
}

.report-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.48;
}

.report-panel-strong p {
  color: rgba(255, 255, 255, 0.76);
}

.report-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.report-note strong {
  color: var(--gold-deep);
  text-transform: uppercase;
}

.report-note p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.donate {
  padding: 92px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(22, 58, 71, 0.95)),
    var(--ink);
}

.donate-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.donate-copy h2 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-family: var(--display-font);
  font-size: 3rem;
  line-height: 1.06;
}

.donate-copy p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.donate-goal {
  display: inline-grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.donate-goal span,
.donate-card-number span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.donate-goal strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 2rem;
}

.donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.donate-card-number {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.donate-card-number strong {
  color: var(--paper-strong);
  font-size: 1.28rem;
  overflow-wrap: anywhere;
}

.donate-qr {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.donate-qr:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.donate-qr img {
  width: 100%;
  border-radius: 6px;
}

.donate-qr figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-weight: 800;
}

.donate-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.donate-impact div {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.donate-impact span {
  display: block;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.donate-impact p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.direction-card {
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.7);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.direction-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.direction-card h3 {
  margin: 0 0 14px;
  font-family: var(--display-font);
  font-size: 1.45rem;
  line-height: 1.16;
}

.direction-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.honor {
  padding-top: 54px;
}

.honor .section-heading > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.honor-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.honor-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.honor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 155, 53, 0.34);
  box-shadow: 0 30px 76px rgba(11, 31, 51, 0.16);
}

.honor-card-feature {
  grid-row: span 2;
  min-height: 596px;
}

.honor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 420ms ease;
}

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

.honor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 51, 0.02) 0%, rgba(11, 31, 51, 0.22) 38%, rgba(11, 31, 51, 0.88) 100%);
  pointer-events: none;
}

.honor-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 31, 51, 0.72);
  backdrop-filter: blur(14px);
}

.honor-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.honor-card h3 {
  margin: 0 0 10px;
  font-family: var(--display-font);
  font-size: 1.46rem;
  line-height: 1.15;
}

.honor-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.honor-note {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 95, 168, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 95, 168, 0.08), rgba(201, 155, 53, 0.08)),
    var(--paper-strong);
}

.honor-note strong {
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: 1.24rem;
}

.honor-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.documents {
  position: relative;
}

.documents::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 34px;
  width: min(94vw, 1360px);
  height: calc(100% - 68px);
  transform: translateX(-50%);
  border: 1px solid rgba(31, 95, 168, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 95, 168, 0.04), rgba(201, 155, 53, 0.05)),
    rgba(255, 255, 255, 0.42);
}

.documents .section-heading {
  align-items: start;
}

.documents .section-heading > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.official-document-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 95, 168, 0.08), rgba(255, 255, 255, 0.92) 46%, rgba(201, 155, 53, 0.09)),
    var(--paper-strong);
  box-shadow: 0 26px 70px rgba(11, 31, 51, 0.12);
}

.official-document-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-right: 10px;
}

.official-document-copy span {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 6px;
  color: var(--blue-deep);
  background: rgba(31, 95, 168, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.official-document-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.official-document-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.official-document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.official-document-list div {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(31, 95, 168, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
}

.official-document-list dt {
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.official-document-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.official-document-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 10px;
  margin-top: -8px;
}

.official-document-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(31, 95, 168, 0.2);
  border-radius: 7px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 200ms var(--ease),
    border-color 200ms ease,
    background 200ms ease;
}

.official-document-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 155, 53, 0.48);
  background: var(--white);
}

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

.document-card {
  position: relative;
  display: grid;
  min-height: 236px;
  align-content: end;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    var(--paper-strong);
  box-shadow: 0 18px 48px rgba(11, 31, 51, 0.1);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.document-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--blue) 0 5px, transparent 5px),
    linear-gradient(135deg, rgba(31, 95, 168, 0.06), transparent 42%, rgba(201, 155, 53, 0.08));
}

.document-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 58px;
  height: 72px;
  border: 1px solid rgba(11, 31, 51, 0.13);
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(201, 155, 53, 0.2) 66%),
    rgba(255, 255, 255, 0.72);
}

.document-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 155, 53, 0.36);
  box-shadow: 0 28px 70px rgba(11, 31, 51, 0.14);
}

.document-card span,
.document-card strong,
.document-card p {
  position: relative;
  z-index: 1;
}

.document-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 6px;
  color: var(--blue-deep);
  background: rgba(31, 95, 168, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
}

.document-card strong {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.46rem;
  line-height: 1.12;
}

.document-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.managed-notice {
  display: grid;
  gap: 10px;
  width: min(100%, 720px);
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.76), rgba(18, 56, 95, 0.68)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.managed-notice[hidden] {
  display: none;
}

.managed-notice span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.managed-notice strong {
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.managed-notice p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.managed-notice a {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #e2b844);
  font-weight: 900;
  text-decoration: none;
}

.managed-updates-section {
  position: relative;
}

.managed-updates-section[hidden],
.managed-honor-grid[hidden] {
  display: none;
}

.managed-updates-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 32px 0 32px;
  background:
    linear-gradient(90deg, rgba(31, 95, 168, 0.05), rgba(201, 155, 53, 0.06)),
    rgba(255, 255, 255, 0.52);
}

.managed-updates-section .section-heading > p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.managed-updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.managed-update-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 22px 60px rgba(11, 31, 51, 0.12);
}

.managed-update-card > img,
.managed-update-card > video,
.managed-gallery-card > img,
.managed-gallery-card > video {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  background: var(--ink);
}

.managed-update-card > video,
.managed-gallery-card > video {
  filter: saturate(0.95) contrast(1.05);
}

.managed-update-card:has(> video)::before,
.managed-gallery-card:has(> video)::before {
  content: "Відео";
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(11, 31, 51, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.managed-update-card > div {
  display: grid;
  align-content: center;
  padding: 24px;
}

.managed-update-card span,
.managed-gallery-card span,
.managed-honor-card span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.managed-update-card h3,
.managed-gallery-card strong {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

.managed-update-card p,
.managed-gallery-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.managed-update-card a,
.managed-gallery-card a,
.managed-honor-card a {
  width: fit-content;
  margin-top: 16px;
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration: none;
}

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

.gallery-toggle {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  padding: 0 24px;
  border: 1px solid rgba(31, 95, 168, 0.28);
  border-radius: 7px;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    var(--paper-strong);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.1);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.gallery-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 155, 53, 0.5);
  box-shadow: 0 24px 58px rgba(11, 31, 51, 0.14);
}

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

.managed-gallery-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 26px 70px rgba(11, 31, 51, 0.16);
}

.managed-gallery-card > img,
.managed-gallery-card > video {
  position: absolute;
  inset: 0;
  min-height: 100%;
  filter: saturate(0.96) contrast(1.04);
}

.managed-gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 96px 22px 22px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11, 31, 51, 0.9));
}

.managed-gallery-card strong {
  display: block;
  color: var(--white);
}

.managed-gallery-card p {
  color: rgba(255, 255, 255, 0.78);
}

.managed-gallery-card a {
  color: var(--gold);
}

.managed-honor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.managed-honor-card {
  min-height: 420px;
}

@media (max-width: 980px) {
  .managed-updates-grid,
  .managed-gallery-grid,
  .managed-honor-grid {
    grid-template-columns: 1fr;
  }

  .managed-update-card {
    grid-template-columns: 1fr;
  }

  .managed-update-card > img,
  .managed-update-card > video {
    min-height: 240px;
  }
}

.transparency {
  padding: 92px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(18, 49, 82, 0.95)),
    var(--ink);
}

.transparency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.transparency h2 {
  color: var(--white);
}

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

.transparency-list div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.transparency-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.transparency-list strong {
  overflow-wrap: anywhere;
  color: var(--paper-strong);
  font-size: 1rem;
}

.copy-button {
  display: inline-flex;
  min-height: 34px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.copy-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
}

.copy-button.light {
  min-height: 44px;
  color: var(--white);
}

.contact-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-copy-actions .copy-button {
  min-height: 30px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.contact-copy-actions .copy-button:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

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

.faq-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.faq-grid h3 {
  margin: 0 0 14px;
  font-family: var(--display-font);
  font-size: 1.5rem;
}

.faq-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.contact-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.primary-contact {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(141, 74, 60, 0.94), rgba(16, 24, 32, 0.94)),
    var(--clay);
}

.contact-card h3 {
  margin: 0 0 24px;
  font-family: var(--display-font);
  font-size: 2rem;
}

.contact-card a:not(.button),
.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  line-height: 1.7;
}

.contact-card:not(.primary-contact) span {
  max-width: 560px;
  color: var(--ink-soft);
}

.contact-card .button {
  margin-top: 22px;
}

.messenger-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.messenger {
  position: relative;
  display: inline-flex;
  width: 54px;
  min-width: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 28px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    filter 180ms ease;
}

.messenger svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.messenger span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.messenger:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 34px rgba(0, 0, 0, 0.28);
  filter: saturate(1.12);
}

.messenger.whatsapp {
  background: linear-gradient(135deg, #1fbf61, #25d366);
}

.messenger.telegram {
  background: linear-gradient(135deg, #168ed9, #2aabee);
}

.messenger.viber {
  background: linear-gradient(135deg, #6550d9, #8b6cff);
}

.messenger.facebook {
  background: linear-gradient(135deg, #0b5bd3, #1877f2);
}

.messenger.instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 32%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quick-contact span {
  margin: 0 6px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.quick-contact a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.quick-contact .quick-social {
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(11, 31, 51, 0.1);
}

.quick-social.whatsapp {
  background: linear-gradient(135deg, #1fbf61, #25d366);
}

.quick-social.telegram {
  background: linear-gradient(135deg, #168ed9, #2aabee);
}

.quick-social.viber {
  background: linear-gradient(135deg, #6550d9, #8b6cff);
}

.quick-social.facebook {
  background: linear-gradient(135deg, #0b5bd3, #1877f2);
}

.quick-social.instagram {
  background: radial-gradient(circle at 20% 120%, #feda75 0 18%, #fa7e1e 32%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.direction-card:hover,
.faq-grid article:hover,
.report-board div:hover,
.transparency-list div:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 154, 68, 0.34);
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.12);
}

.reveal-target {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(118px, 1fr) 44px;
    gap: 12px;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  body.nav-open .site-nav {
    position: fixed;
    display: grid;
    top: 82px;
    left: 24px;
    right: 24px;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: rgba(11, 31, 51, 0.96);
  }

  body.nav-open .site-nav a {
    padding: 16px;
    border-radius: 6px;
    color: var(--white);
  }

  body.nav-open .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(118px, 1fr) 44px;
    gap: 12px;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    grid-column: 3;
    justify-self: end;
  }

  body.nav-open .site-nav {
    position: fixed;
    display: grid;
    top: 82px;
    left: 24px;
    right: 24px;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: rgba(16, 24, 32, 0.96);
  }

  body.nav-open .site-nav a {
    padding: 16px;
    border-radius: 6px;
    color: var(--white);
  }

  body.nav-open .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .section-heading,
  .about-grid,
  .transparency-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .photo-story,
  .impact-cases,
  .field-notes,
  .donate-inner,
  .report-layout,
  .report-breakdown,
  .honor-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .honor-card-feature {
    grid-row: auto;
    min-height: 500px;
  }

  .honor-note {
    grid-template-columns: 1fr;
  }

  .field-notes article {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .story-main {
    min-height: 520px;
  }

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

  .report-panel {
    min-height: auto;
  }

  .section-heading {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 148px 18px 48px;
    background:
      linear-gradient(90deg, rgba(9, 13, 20, 0.9) 0%, rgba(9, 13, 20, 0.72) 70%, rgba(9, 13, 20, 0.36) 100%),
      url("assets/optimized/work-logistics.webp") center / cover no-repeat;
  }

  .hero-seal {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .credibility,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .credibility {
    width: calc(100% - 28px);
  }

  .credibility-item + .credibility-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .section-heading h2,
  .transparency h2 {
    font-size: 2.15rem;
  }

  .direction-card,
  .contact-card,
  .director-panel {
    padding: 24px;
  }

  .transparency {
    padding: 72px 14px;
  }

  .activity {
    padding: 72px 14px;
  }

  .donate {
    padding: 72px 14px;
  }

  .story-main,
  .story-side figure,
  .impact-cases figure {
    min-height: 360px;
  }

  .story-side,
  .report-board {
    grid-template-columns: 1fr;
  }

  .report-panel {
    padding: 22px;
  }

  .report-panel li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-note {
    flex-direction: column;
    gap: 10px;
  }

  .story-main figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .report-copy h2 {
    font-size: 2.15rem;
  }

  .donate-copy h2 {
    font-size: 2.15rem;
  }

  .field-notes article {
    grid-template-columns: 1fr;
  }

  .field-notes img {
    min-height: 300px;
  }

  .site-footer {
    width: calc(100% - 28px);
    flex-direction: column;
  }
}

/* Navigation and identity upgrade */
.site-header {
  grid-template-columns: auto minmax(420px, 1fr) auto;
  grid-template-areas: "brand nav tools";
  gap: 14px;
  width: min(calc(100% - 32px), 1320px);
  padding: 10px 14px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 43, 72, 0.94), rgba(9, 31, 54, 0.92)),
    rgba(11, 31, 51, 0.94);
  overflow: hidden;
}

.brand {
  grid-area: brand;
}

.header-tools {
  grid-area: tools;
  justify-self: end;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 215, 0, 0.12), transparent 58%),
    var(--paper-strong);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(11, 31, 51, 0.08);
}

.brand-logo img {
  width: 60px;
  height: 60px;
}

.brand-text strong {
  font-size: 1.08rem;
}

.brand-text span {
  font-size: 0.82rem;
}

.site-nav {
  grid-area: nav;
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  padding-top: 0;
  border-top: 0;
  font-size: 0.79rem;
  max-width: 100%;
  min-width: 0;
  overflow-x: visible;
  overflow-y: hidden;
}

.site-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--paper-strong);
  outline: none;
}

.site-nav a[href="#donate"] {
  color: var(--ink);
  border-color: rgba(255, 215, 0, 0.46);
  background: linear-gradient(180deg, #e3b94c, var(--gold));
}

.site-nav a[href="#donate"]:hover,
.site-nav a[href="#donate"]:focus-visible {
  background: #f0c95e;
}

.site-header.is-scrolled {
  width: min(calc(100% - 24px), 1260px);
  padding: 7px 10px;
  background:
    linear-gradient(180deg, rgba(12, 35, 60, 0.98), rgba(8, 26, 46, 0.98)),
    rgba(11, 31, 51, 0.98);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .brand-logo {
  width: 52px;
  height: 52px;
}

.site-header.is-scrolled .brand-logo img {
  width: 46px;
  height: 46px;
}

.site-header.is-scrolled .brand-text span {
  display: none;
}

.site-header.is-scrolled .site-nav {
  gap: 6px;
  padding-top: 0;
}

.site-header.is-scrolled .site-nav a {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.site-header.is-scrolled .language-switcher button {
  height: 30px;
}

.site-header.is-scrolled .header-action {
  min-height: 40px;
}

.menu-toggle {
  display: none !important;
}

.hero {
  min-height: 92svh;
  padding-top: 146px;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.94) 0%, rgba(7, 19, 33, 0.78) 48%, rgba(7, 19, 33, 0.26) 100%),
    url("assets/optimized/work-logistics.webp") center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 360px);
  gap: 42px;
  align-items: end;
}

.hero-inner > :not(.hero-logo-card) {
  grid-column: 1;
}

.hero-seal {
  right: max(16px, calc((100vw - var(--max)) / 2 - 44px));
  bottom: 96px;
  width: min(38vw, 520px);
  opacity: 0.22;
}

.hero-logo-card {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: end;
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(11, 31, 51, 0.62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  animation: fade-slide-up 760ms var(--ease) 420ms both;
}

.hero-logo-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(11, 31, 51, 0.08);
}

.hero-logo-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-logo-card strong {
  display: block;
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.7rem;
  line-height: 1.08;
}

.hero-logo-card small {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.credibility {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    var(--paper-strong);
}

.credibility-item span {
  color: var(--blue-deep);
}

.direction-card {
  background: var(--paper-strong);
}

.direction-card,
.faq-grid article,
.contact-card,
.report-panel,
.report-board div {
  box-shadow: 0 14px 40px rgba(11, 31, 51, 0.08);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand tools"
      "nav nav";
    row-gap: 10px;
  }

  .header-action {
    display: none;
  }

  .site-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    scrollbar-width: thin;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 188px;
  }

  .hero-inner > :not(.hero-logo-card),
  .hero-logo-card {
    grid-column: 1;
  }

  .hero-logo-card {
    grid-row: auto;
    grid-template-columns: auto 1fr;
    width: min(100%, 560px);
    align-items: center;
  }

  .hero-logo-card img {
    width: 118px;
    height: 118px;
  }

  .donate-impact,
  .official-document-panel,
  .official-document-list,
  .document-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "tools"
      "nav";
    gap: 8px;
    padding: 9px;
  }

  .site-header.is-scrolled {
    width: calc(100% - 16px);
    padding: 9px;
  }

  .header-tools {
    justify-self: stretch;
  }

  .language-switcher {
    width: 100%;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-logo img {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.76rem;
  }

  .language-switcher button {
    height: 30px;
    min-height: 30px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .site-nav {
    margin: 0 -2px;
    gap: 5px;
    padding-top: 4px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .site-nav a {
    flex: 1 1 calc(25% - 5px);
    min-width: 0;
    min-height: 30px;
    padding: 0 3px;
    white-space: normal;
    text-align: center;
    font-size: 0.66rem;
    line-height: 1.08;
  }

  .site-header.is-scrolled .site-nav a {
    min-height: 30px;
    padding: 0 3px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 92svh;
    padding-top: 196px;
  }

  .hero-logo-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .hero-logo-card img {
    width: 104px;
    height: 104px;
  }

  .honor-card,
  .honor-card-feature {
    min-height: 390px;
  }

  .donate-impact div {
    min-height: auto;
  }

  .document-card {
    min-height: 218px;
    padding: 22px;
  }

  .official-document-panel {
    padding: 20px;
  }

  .official-document-actions a {
    flex: 1 1 100%;
  }
}

/* Richer editorial-government layer */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 95, 168, 0.11), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(201, 155, 53, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.98) 460px),
    var(--paper);
  overflow-x: hidden;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 31, 51, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.section-heading h2,
.transparency h2,
.hero h1,
.report-copy h2,
.donate-copy h2 {
  letter-spacing: 0;
}

.hero {
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  top: 148px;
  right: max(20px, calc((100vw - 1320px) / 2));
  width: min(42vw, 590px);
  height: min(42vw, 590px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 155, 53, 0.12), transparent 58%),
    radial-gradient(circle, rgba(31, 95, 168, 0.18), transparent 68%);
  filter: blur(0.2px);
}

.hero::after {
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(201, 155, 53, 0.18) 34% 35%, transparent 35% 52%, rgba(255, 255, 255, 0.08) 52% 53%, transparent 53%),
    linear-gradient(90deg, transparent, rgba(31, 95, 168, 0.16));
  opacity: 0.9;
}

.hero h1 {
  font-weight: 800;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
}

.hero-copy {
  border-left: 3px solid rgba(201, 155, 53, 0.78);
  padding-left: 18px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 26px;
  animation: fade-slide-up 760ms var(--ease) 430ms both;
}

.hero-proof-grid div {
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(11, 31, 51, 0.56);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-proof-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-proof-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-logo-card {
  position: relative;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 155, 53, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
}

.credibility {
  overflow: hidden;
  position: relative;
}

.credibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 95, 168, 0.08), transparent 26%, transparent 74%, rgba(201, 155, 53, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(11, 31, 51, 0.025) 16px 17px);
  pointer-events: none;
}

.credibility-item {
  position: relative;
  z-index: 1;
}

.process {
  width: 100%;
  padding: 20px 24px 100px;
}

.process-shell {
  position: relative;
  overflow: hidden;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 54px;
  border: 1px solid rgba(11, 31, 51, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.94)),
    var(--paper-strong);
  box-shadow: 0 30px 90px rgba(11, 31, 51, 0.12);
}

.process-shell::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(31, 95, 168, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(31, 95, 168, 0.11), transparent 58%),
    radial-gradient(circle, rgba(201, 155, 53, 0.12), transparent 72%);
}

.process-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.process .section-heading {
  position: relative;
  z-index: 1;
  align-items: start;
}

.process .section-heading > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.process-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    var(--paper-strong);
  box-shadow: 0 18px 48px rgba(11, 31, 51, 0.1);
}

.process-grid article::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 95, 168, 0.3), transparent);
}

.process-grid span {
  color: rgba(31, 95, 168, 0.22);
  font-family: var(--display-font);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 0.9;
}

.process-grid strong {
  margin-top: 34px;
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: 1.36rem;
  line-height: 1.14;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.process .section-heading.reveal-target,
.process-grid article.reveal-target {
  opacity: 1;
  transform: none;
}

.activity,
.transparency,
.donate {
  position: relative;
  overflow: hidden;
}

.activity::before,
.transparency::before,
.donate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.045) 48% 49%, transparent 49%),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, 0.035) 20px 21px);
  pointer-events: none;
}

.activity-inner,
.transparency-inner,
.donate-inner {
  position: relative;
  z-index: 1;
}

.photo-story figure,
.impact-cases figure,
.field-notes article,
.honor-card {
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.18);
}

.report {
  position: relative;
}

.report::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 50%;
  width: min(94vw, 1360px);
  height: 68%;
  transform: translateX(-50%);
  border: 1px solid rgba(31, 95, 168, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 95, 168, 0.05), rgba(201, 155, 53, 0.04)),
    rgba(255, 255, 255, 0.32);
}

.honor-grid {
  position: relative;
}

.honor-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -18px;
  right: -18px;
  top: 42px;
  bottom: 42px;
  border: 1px solid rgba(201, 155, 53, 0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(31, 95, 168, 0.04), rgba(201, 155, 53, 0.04));
}

@media (max-width: 980px) {
  .process-shell {
    padding: 38px 24px;
  }

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

  .hero-proof-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .process {
    padding: 0 14px 72px;
  }

  .process-shell {
    padding: 32px 18px;
  }

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

/* Public prelaunch improvements */
.hero-trust {
  max-width: 760px;
  margin: 20px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(246, 201, 86, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

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

.credibility-item {
  min-width: 0;
}

.credibility-item + .credibility-item {
  border-left-color: rgba(31, 95, 168, 0.1);
}

.credibility-item strong {
  overflow-wrap: anywhere;
}

.report-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
}

.report-proof-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(31, 95, 168, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(14, 32, 60, 0.06);
}

.report-proof-card span,
.donate-method > span,
.partner-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-proof-card p,
.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.report-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.report-note p {
  flex: 1 1 420px;
}

.donate-inner-expanded {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

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

.donate-method {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.donate-method-feature {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(246, 201, 86, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.donate-method h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.donate-method p,
.donate-method figcaption,
.donate-details {
  color: rgba(255, 255, 255, 0.78);
}

.donate-details {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.donate-details div {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.donate-details dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donate-details dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.donate-method .donate-actions {
  justify-content: flex-start;
}

.donate-method-qr .donate-qr {
  max-width: 280px;
  margin: 12px auto 0;
}

.donate-method-qr .donate-qr img {
  width: 100%;
}

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

.direction-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.direction-need {
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
}

.direction-action {
  align-self: flex-start;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(31, 95, 168, 0.18);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.direction-action:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 95, 168, 0.38);
  background: rgba(31, 95, 168, 0.06);
}

.partners {
  background:
    linear-gradient(135deg, rgba(31, 95, 168, 0.06), rgba(201, 155, 53, 0.08)),
    #fff;
  border-top: 1px solid rgba(31, 95, 168, 0.1);
  border-bottom: 1px solid rgba(31, 95, 168, 0.1);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.partner-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(31, 95, 168, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(14, 32, 60, 0.06);
}

.international {
  background: var(--ink);
  color: var(--white);
}

.international-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.international h2,
.international p {
  color: var(--white);
}

.international p {
  color: rgba(255, 255, 255, 0.78);
}

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

.international-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.international-grid strong,
.international-grid span,
.international-grid a {
  display: block;
}

.international-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.international-grid span,
.international-grid a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

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

@media (max-width: 1180px) {
  .credibility,
  .report-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credibility-item + .credibility-item {
    border-left: 0;
    border-top: 1px solid rgba(31, 95, 168, 0.1);
  }

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

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

@media (max-width: 900px) {
  .donate-inner-expanded,
  .international-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.35rem);
  }

  .hero-actions,
  .donate-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .donate-actions .button,
  .donate-actions .copy-button {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    font-size: 0.92rem;
  }

  .credibility,
  .report-proof-grid,
  .direction-grid,
  .donate-methods,
  .partner-grid,
  .international-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .donate-method-feature {
    grid-column: auto;
  }

  .report-proof-grid {
    width: min(100% - 28px, 1180px);
  }
}

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

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