:root {
  --red: #c8102e;
  --red-bright: #e21b3d;
  --red-dark: #8f0d24;
  --rose: #fff0f3;
  --ink: #161616;
  --muted: #656565;
  --line: #ead7d4;
  --paper: #fff7f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(119, 13, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 36px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(200, 16, 46, 0.14);
  box-shadow: 0 10px 34px rgba(120, 16, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 198px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(143, 13, 36, 0.12));
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

nav a:hover {
  color: var(--red-dark);
  background: rgba(200, 16, 46, 0.08);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #f9e4e8;
  border-radius: 999px;
}

.language-switch button {
  border: 0;
  padding: 8px 12px;
  color: var(--red-dark);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #b50e2b;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.36) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 74%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px);
  background-size: 110px 110px, 160px 160px, 130px 130px;
  opacity: 0.72;
  pointer-events: none;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media.logo-hero img {
  object-fit: contain;
  object-position: 76% center;
  padding: 132px 3vw 58px 34vw;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f6 42%, #c8102e 100%);
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(97, 0, 18, 0.88) 0%, rgba(156, 11, 38, 0.66) 48%, rgba(200, 16, 46, 0.2) 100%),
    linear-gradient(0deg, rgba(50, 0, 10, 0.55), rgba(50, 0, 10, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 168px 8vw 86px;
  color: var(--white);
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  display: inline-flex;
  padding: 9px 12px;
  color: #fff5f7;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 10vw, 138px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-shadow: 0 20px 50px rgba(69, 0, 12, 0.28);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hero-content p:not(.kicker) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #fff2f4;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 52px;
  padding: 15px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(108, 0, 18, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(108, 0, 18, 0.28);
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 48px;
  padding: 112px 8vw;
  background: var(--white);
  border-bottom: 1px solid rgba(200, 16, 46, 0.12);
}

.mission-band > p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.impact,
.timeline-section {
  padding: 110px 8vw;
}

.impact {
  background:
    linear-gradient(180deg, #fff7f7, #ffffff 38%),
    radial-gradient(circle at 12% 12%, rgba(200, 16, 46, 0.08), transparent 28%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.impact-item {
  position: relative;
  min-height: 208px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(200, 16, 46, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impact-item::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 132px;
  height: 132px;
  border: 24px solid rgba(200, 16, 46, 0.08);
  border-radius: 999px;
}

.impact-value {
  display: block;
  color: var(--red);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
  line-height: 1;
}

.impact-label {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.timeline-shell {
  position: relative;
  overflow: hidden;
  padding: 38px 0 30px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.timeline-line {
  position: relative;
  display: block;
}

.timeline-marquee {
  position: relative;
  min-height: 820px;
}

.timeline-axis {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(143, 13, 36, 0.1), var(--red-dark), var(--red-bright), rgba(255, 193, 203, 0.5));
  border-radius: 999px;
}

.timeline-axis::before,
.timeline-axis::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: var(--white);
  border: 4px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(143, 13, 36, 0.18);
}

.timeline-axis::before {
  left: 0;
}

.timeline-axis::after {
  right: 0;
}

.timeline-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  animation: timeline-loop calc(max(var(--timeline-count), 1) * 1.75s) linear infinite;
  animation-direction: normal;
  will-change: transform;
}

.timeline-line:hover .timeline-track,
.timeline-marquee:hover .timeline-track {
  animation-play-state: paused;
}

.timeline-node {
  position: relative;
  flex: 0 0 320px;
  height: 820px;
  margin-right: 26px;
}

.timeline-card {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 238px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.timeline-node.is-top .timeline-card {
  bottom: calc(50% + 36px);
}

.timeline-node.is-bottom .timeline-card {
  top: calc(50% + 36px);
}

.timeline-node:hover .timeline-card,
.timeline-node:focus-within .timeline-card {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(119, 13, 34, 0.2);
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border: 4px solid var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 43px;
  transform: translateX(-50%);
  background: rgba(200, 16, 46, 0.38);
}

.timeline-node.is-top .timeline-dot::before {
  top: -44px;
}

.timeline-node.is-bottom .timeline-dot::before {
  bottom: -44px;
}

.timeline-thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose);
  outline: none;
}

.timeline-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.timeline-thumb:hover img,
.timeline-thumb:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.12);
}

.timeline-date {
  margin-top: 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
}

.timeline-title {
  margin: 10px 0 0;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.24;
}

.timeline-summary {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes timeline-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.timeline-empty {
  display: none;
  color: var(--muted);
  font-size: 18px;
}

.supporters-section {
  padding: 112px 8vw 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #8f0d24 0%, #c8102e 52%, #610012 100%);
}

.supporters-section .section-label,
.supporters-section h2 {
  color: var(--white);
}

.supporters-intro {
  max-width: 780px;
  margin: -18px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.supporters-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: 430px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.supporter-column {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.supporter-track {
  display: grid;
  gap: 10px;
  padding: 14px;
  animation: supporter-loop var(--supporter-speed) linear infinite;
}

.supporter-column:hover .supporter-track {
  animation-play-state: paused;
}

.supporter-name {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

@keyframes supporter-loop {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 8vw;
  color: var(--muted);
  background: var(--white);
}

footer img {
  width: 62px;
  height: 44px;
  object-fit: contain;
}

.activity-page {
  min-height: 100vh;
  padding-top: 108px;
  background: var(--white);
}

.activity-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 90px;
}

.activity-article img,
.activity-article video {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.activity-article h1 {
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 86px);
}

.activity-date {
  color: var(--red);
  font-weight: 900;
}

.activity-body {
  color: #303030;
  font-size: 20px;
  line-height: 1.85;
  white-space: pre-wrap;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px 14px;
  }

  .brand img {
    width: 132px;
    height: 74px;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    font-size: 13px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 7px 8px;
  }

  .language-switch button {
    padding: 7px 9px;
    font-size: 13px;
  }

  .hero-content {
    padding: 178px 24px 68px;
  }

  .hero-media.logo-hero img {
    object-position: center 22%;
    padding: 146px 18px 280px;
    opacity: 0.58;
  }

  .mission-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .mission-band,
  .impact,
  .timeline-section {
    padding: 68px 24px;
  }

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

  .timeline-line {
    min-width: 0;
  }

  .timeline-marquee {
    min-height: 820px;
  }

  .timeline-node {
    flex-basis: 280px;
    height: 820px;
    margin-right: 18px;
  }

  .timeline-node.is-top .timeline-card {
    bottom: calc(50% + 36px);
  }

  .timeline-node.is-bottom .timeline-card {
    top: calc(50% + 36px);
  }

  .supporters-section {
    padding: 74px 24px 72px;
  }

  .supporters-wall {
    grid-template-columns: 1fr;
    height: 520px;
  }

  .supporter-column:nth-child(n + 2) {
    display: none;
  }
}

.admin-body {
  background: #f7f1ef;
}

.admin-shell {
  min-height: 100vh;
  padding: 36px;
}

.login-panel {
  max-width: 460px;
  margin: 9vh auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.login-panel img {
  width: 160px;
  height: 100px;
  object-fit: contain;
}

.login-panel h1,
.admin-topbar h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  color: var(--ink);
}

.login-panel p,
.form-message {
  color: var(--muted);
  line-height: 1.5;
}

.login-panel form,
.editor-panel {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #3d3030;
  font-size: 14px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8cdca;
  border-radius: 8px;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

.admin-editor {
  max-width: 1440px;
  margin: 0 auto;
}

.admin-topbar,
.panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.admin-actions,
.upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid #d8cdca;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.admin-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  justify-content: stretch;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-nav a {
  padding: 12px;
  border-radius: 8px;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: none;
}

.admin-nav a:hover {
  background: #f8ecea;
}

.admin-panels {
  display: grid;
  gap: 24px;
}

.editor-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.editor-panel h2 {
  font-size: 30px;
}

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

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

.repeat-item {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  margin-top: 14px;
  background: #fffaf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.remove-button {
  justify-self: end;
  padding: 8px 12px;
  color: #8f0d24;
  background: #ffe9ed;
  border: 1px solid #ffd1da;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 960px) {
  .admin-shell {
    padding: 18px;
  }

  .admin-topbar,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-nav {
    position: static;
    grid-template-columns: repeat(5, minmax(max-content, 1fr));
    overflow-x: auto;
  }

  .field-grid,
  .field-grid.two {
    grid-template-columns: 1fr;
  }
}

/* 2026 public-site visual refresh */
:root {
  --red: #c51632;
  --red-bright: #e3314d;
  --red-dark: #821126;
  --forest: #173b36;
  --forest-soft: #2d5750;
  --ink: #171b1a;
  --muted: #66706d;
  --line: #dfe3de;
  --paper: #f4f6f2;
  --rose: #fcecef;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(28, 44, 39, 0.12);
}

body {
  background: var(--paper);
}

.hero,
.mission-band,
.timeline-section,
.impact,
.supporters-section {
  scroll-margin-top: 94px;
}

.site-header {
  min-height: 94px;
  grid-template-columns: 184px 1fr auto;
  gap: 24px;
  padding: 7px clamp(24px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 59, 54, 0.1);
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(1.25);
}

.brand {
  width: 184px;
  height: 80px;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

nav {
  gap: 3px;
  font-size: 14px;
  letter-spacing: 0;
}

nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 6px;
  transition: color 160ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover {
  color: var(--red);
  background: transparent;
}

nav a:hover::after {
  transform: scaleX(1);
}

.language-switch {
  gap: 2px;
  padding: 3px;
  background: #f1f3ef;
  border: 1px solid #e4e7e1;
  border-radius: 6px;
}

.language-switch button,
.language-switch button.active {
  border-radius: 4px;
}

.language-switch button {
  padding: 8px 11px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: max(760px, 100svh);
  align-items: center;
  background: var(--forest);
}

.hero-media::before {
  display: none;
}

.hero-media img,
.hero-media video {
  object-position: center center;
  filter: saturate(0.9) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 30, 27, 0.92) 0%, rgba(15, 42, 37, 0.82) 32%, rgba(17, 48, 43, 0.38) 59%, rgba(13, 33, 30, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 20, 18, 0.55) 0%, transparent 34%);
}

.hero-content {
  width: min(760px, 64vw);
  max-width: none;
  padding: 148px clamp(24px, 7vw, 108px) 70px;
}

.hero .kicker {
  margin-bottom: 24px;
  padding: 0 0 11px;
  color: #f5d8dd;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  backdrop-filter: none;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(64px, 8.5vw, 126px);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 16px 44px rgba(4, 20, 17, 0.3);
}

h2 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-content p:not(.kicker) {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.hero-actions .button {
  margin-top: 0;
}

.hero-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.button {
  min-height: 52px;
  margin-top: 34px;
  padding: 14px 22px;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  box-shadow: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts > span {
  min-width: 0;
  padding: 18px 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts > span:first-child {
  padding-left: 0;
}

.hero-facts > span:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.hero-facts small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: 34px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
}

.hero-scroll span {
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 4px;
  animation: scroll-cue 1.7s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateY(5px);
  }
}

.mission-band {
  position: relative;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(46px, 8vw, 130px);
  padding: clamp(90px, 10vw, 150px) max(8vw, calc((100vw - 1480px) / 2));
  background: var(--white);
  border-bottom: 0;
}

.mission-band::before {
  content: "✦";
  position: absolute;
  top: 74px;
  right: 7vw;
  color: rgba(197, 22, 50, 0.14);
  font-size: 92px;
  line-height: 1;
}

.section-label {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.mission-band h2 {
  max-width: 900px;
  color: var(--forest);
}

.mission-band > p {
  margin: 36px 0 0;
  padding-left: 28px;
  color: var(--muted);
  border-left: 2px solid var(--red);
  font-size: 17px;
  line-height: 1.82;
}

.impact,
.timeline-section,
.supporters-section {
  padding: clamp(86px, 9vw, 136px) max(6vw, calc((100vw - 1540px) / 2));
}

.timeline-section {
  background: #f2f4f0;
}

.section-heading {
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  align-items: start;
  gap: 44px;
  margin-bottom: 62px;
}

.section-index {
  display: block;
  margin-bottom: 26px;
  color: rgba(23, 59, 54, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.section-deck {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.timeline-shell {
  padding: 18px 0 22px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.timeline-marquee,
.timeline-node {
  min-height: 820px;
  height: 820px;
}

.timeline-axis {
  height: 2px;
  background: #cbd3ce;
}

.timeline-axis::before,
.timeline-axis::after {
  width: 12px;
  height: 12px;
  background: var(--paper);
  border: 3px solid var(--red);
  box-shadow: none;
}

.timeline-track {
  animation-duration: calc(max(var(--timeline-count), 1) * 1.75s);
}

.timeline-node {
  flex-basis: 328px;
  margin-right: 28px;
}

.timeline-card {
  min-height: 342px;
  padding: 0 0 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e3e7e2;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(27, 43, 39, 0.09);
  text-decoration: none;
  overflow: hidden;
}

.timeline-node.is-top .timeline-card {
  bottom: calc(50% + 37px);
}

.timeline-node.is-bottom .timeline-card {
  top: calc(50% + 37px);
}

.timeline-node:hover .timeline-card,
.timeline-node:focus-within .timeline-card {
  transform: translateY(-5px);
  border-color: rgba(197, 22, 50, 0.3);
  box-shadow: 0 24px 52px rgba(27, 43, 39, 0.14);
}

.timeline-thumb {
  border-radius: 0;
  background: #e9ede8;
}

.timeline-thumb img {
  aspect-ratio: 16 / 9.5;
}

.timeline-date,
.timeline-title,
.timeline-summary,
.timeline-read {
  margin-right: 22px;
  margin-left: 22px;
}

.timeline-date {
  margin-top: 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.timeline-title {
  margin-top: 9px;
  font-size: 21px;
  line-height: 1.28;
}

.timeline-summary {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 9px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.timeline-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 13px;
  color: var(--forest);
  border-top: 1px solid #e7eae6;
  font-size: 12px;
  font-weight: 850;
}

.timeline-read b {
  color: var(--red);
  font-size: 17px;
  transition: transform 160ms ease;
}

.timeline-card:hover .timeline-read b,
.timeline-card:focus-visible .timeline-read b {
  transform: translateX(4px);
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-width: 5px;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.impact {
  color: var(--white);
  background: var(--forest);
}

.impact .section-heading {
  margin-bottom: 54px;
}

.impact .section-index {
  color: rgba(255, 255, 255, 0.2);
}

.impact .section-label {
  color: #f0a8b5;
}

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

.impact .section-deck {
  color: rgba(255, 255, 255, 0.62);
}

.impact-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-item {
  min-height: 250px;
  padding: 32px 34px 38px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item::after {
  display: none;
}

.impact-number {
  display: block;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.impact-value {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
}

.impact-label {
  max-width: 260px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.supporters-section {
  color: var(--white);
  background: var(--red-dark);
}

.supporters-section .section-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 48px;
}

.supporters-section .section-index {
  color: rgba(255, 255, 255, 0.2);
}

.supporters-section .section-label,
.supporters-section h2 {
  color: var(--white);
}

.supporters-intro {
  margin: -28px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.supporters-wall {
  gap: 10px;
  height: 420px;
}

.supporter-column {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(43, 0, 10, 0.2);
  backdrop-filter: none;
}

.supporter-track {
  gap: 0;
  padding: 0 15px;
  animation-delay: var(--supporter-delay);
}

.supporter-name {
  position: relative;
  min-height: 44px;
  padding: 9px 12px 9px 30px;
  color: rgba(255, 255, 255, 0.83);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  font-size: 14px;
  font-weight: 720;
}

.supporter-name::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 7px;
  height: 7px;
  background: #f2b7c1;
  transform: rotate(45deg);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  justify-content: stretch;
  padding: 56px max(6vw, calc((100vw - 1540px) / 2));
  color: var(--muted);
  background: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--forest);
  font-size: 18px;
}

.footer-brand span {
  margin-top: 5px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

footer > small {
  align-self: center;
  font-size: 12px;
}

.activity-page {
  padding-top: 94px;
  background: var(--paper);
}

.activity-article {
  max-width: 1120px;
  padding: 72px 28px 110px;
}

.activity-article img,
.activity-article video {
  max-height: 660px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.activity-date {
  margin-top: 42px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.activity-article h1 {
  max-width: 900px;
  margin-top: 18px;
  color: var(--forest);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
  text-shadow: none;
}

.activity-body {
  max-width: 780px;
  margin-top: 34px;
  padding-top: 32px;
  color: #36413e;
  border-top: 1px solid var(--line);
  font-size: 19px;
  line-height: 1.9;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .timeline-track,
  .supporter-track,
  .hero-scroll span {
    animation-play-state: paused;
  }
}

@media (max-width: 820px) {
  .hero,
  .mission-band,
  .timeline-section,
  .impact,
  .supporters-section {
    scroll-margin-top: 122px;
  }

  .site-header {
    min-height: 122px;
    grid-template-columns: 92px 1fr auto;
    grid-template-rows: 68px 42px;
    gap: 6px;
    padding: 6px 14px 5px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 92px;
    height: 68px;
  }

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

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 0;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  nav a {
    padding: 7px 8px;
  }

  nav a::after {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img,
  .hero-media video {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 29, 26, 0.9), rgba(13, 39, 35, 0.54)),
      linear-gradient(0deg, rgba(5, 20, 18, 0.72) 0%, rgba(5, 20, 18, 0.12) 70%);
  }

  .hero-content {
    width: 100%;
    padding: 174px 24px 54px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .hero-content p:not(.kicker) {
    font-size: 17px;
  }

  .hero-facts {
    margin-top: 42px;
  }

  .hero-facts > span {
    padding: 16px 9px;
  }

  .hero-facts > span:first-child {
    padding-left: 0;
  }

  .hero-facts strong {
    font-size: 24px;
  }

  .hero-facts small {
    font-size: 9px;
  }

  .hero-scroll {
    display: none;
  }

  .mission-band,
  .impact,
  .timeline-section,
  .supporters-section {
    padding: 72px 24px;
  }

  .mission-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .mission-band {
    gap: 34px;
  }

  .mission-band::before {
    top: 40px;
    font-size: 58px;
  }

  .mission-band > p {
    margin-top: 0;
    padding-left: 20px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 42px;
  }

  .section-index {
    margin-bottom: 16px;
    font-size: 38px;
  }

  .timeline-shell {
    margin-right: -24px;
    margin-left: -24px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .timeline-node {
    flex-basis: 286px;
    margin-right: 18px;
  }

  .timeline-card {
    min-height: 330px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .impact-item {
    min-height: 0;
    padding: 28px 4px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .impact-number {
    margin-bottom: 24px;
  }

  .supporters-section .section-heading {
    padding-bottom: 34px;
  }

  .supporters-intro {
    margin-top: -18px;
  }

  .supporters-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    height: 440px;
  }

  .supporter-column:nth-child(n + 2) {
    display: block;
  }

  .supporter-track {
    padding: 0 4px;
  }

  .supporter-name {
    min-height: 42px;
    padding: 7px 4px 7px 17px;
    font-size: 11px;
  }

  .supporter-name::before {
    left: 4px;
    width: 5px;
    height: 5px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 24px;
  }

  .footer-links {
    gap: 18px;
  }

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

  .activity-article {
    padding: 38px 20px 80px;
  }
}
