@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/unbounded.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/manrope-600.woff2") format("woff2");
}

:root {
  --ink: #0b1a22;
  --ink-deep: #071218;
  --gold: #d6c27a;
  --gold-soft: #e8d9a8;
  --mist: #e8eeea;
  --paper: #f4f6f3;
  --muted: #5f6f77;
  --text: #1a2a32;
  --on-dark: #ecf0e5;
  --line: rgba(11, 26, 34, 0.12);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font: 400 1.0625rem/1.65 Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 {
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}
p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid rgba(236, 240, 229, 0.4);
  color: var(--on-dark);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: var(--ink); color: var(--on-dark); }
.btn-ink:hover { background: #14303c; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 18, 24, 0.92);
  backdrop-filter: blur(10px);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(236, 240, 229, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img { width: 40px; height: auto; }
.brand b {
  display: block;
  font: 500 0.95rem/1.1 Unbounded, Manrope, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 240, 229, 0.65);
}
.menu {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.menu a,
.menu button {
  color: rgba(236, 240, 229, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}
.menu a:hover,
.menu button:hover { color: var(--gold); }
.burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.35rem;
  color: var(--on-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  color: var(--on-dark);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: #122a36;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) both;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 24, 0.78) 0%, rgba(7, 18, 24, 0.35) 55%, rgba(7, 18, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 18, 24, 0.25) 0%, rgba(7, 18, 24, 0.75) 100%);
}
.hero-in {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4.5rem;
  max-width: 36rem;
  font-family: Manrope, "Segoe UI", sans-serif;
}
.hero-brand {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  animation: rise 0.9s var(--ease) both;
}
.hero-tag {
  margin: 0.6rem 0 1.4rem;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 240, 229, 0.72);
  animation: rise 0.9s var(--ease) 0.08s both;
}
.hero h1 {
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 0.95rem;
  max-width: 22ch;
  animation: rise 0.9s var(--ease) 0.16s both;
}
.hero-lead {
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(236, 240, 229, 0.9);
  margin-bottom: 1.75rem;
  max-width: 36ch;
  animation: rise 0.9s var(--ease) 0.24s both;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.32s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-title {
  color: var(--gold);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Bridge text between hero and photos */
.bridge {
  background: var(--paper);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.bridge-text {
  margin: 0;
  max-width: 42rem;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}
.bridge-text em {
  font-style: normal;
  color: #b08d2e;
  font-weight: 600;
}

/* Photo strip */
.who-photo {
  background: var(--ink);
  color: var(--on-dark);
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(920px, 100%);
}
.photo-strip figure {
  margin: 0;
  background: #132833;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}
.who-kicker {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 720px) {
  .photo-strip { gap: 0.5rem; }
  .photo-strip img { max-height: 140px; }
}

/* Mission */
.mission { background: var(--mist); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.help {
  margin-top: 1.4rem;
  font-weight: 600;
}
.help-list {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.5rem;
}
.help-list li {
  padding-left: 1.1rem;
  position: relative;
}
.help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* Partners */
.partners { background: #fff; }
.partner-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}
.partner {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.partner img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.partner h3 {
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.partner a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  width: fit-content;
}
.partner a:hover { color: #0f2c38; }

/* Thanks */
.thanks { background: var(--ink-deep); color: var(--on-dark); }
.thanks .section-title { margin-bottom: 1.5rem; }
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.thanks-grid button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #1a2e38;
  cursor: zoom-in;
  overflow: hidden;
}
.thanks-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
}
.thanks-grid button:hover img {
  opacity: 0.92;
  transform: scale(1.02);
}
@media (max-width: 720px) {
  .thanks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Footer */
.site-footer {
  background: #061014;
  color: var(--on-dark);
  padding: 4.5rem 0 2rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(236, 240, 229, 0.12);
}
.label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.site-footer h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.85rem;
}
.foot-lead {
  color: rgba(236, 240, 229, 0.75);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
.meta { display: grid; gap: 1.2rem; }
.meta .label { margin-bottom: 0.25rem; }
.meta a:hover { color: var(--gold); }
.bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 1.25rem;
  color: rgba(236, 240, 229, 0.5);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 14, 18, 0.78);
}
.modal.open { display: grid; }
.modal-card {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  color: var(--text);
  padding: 1.6rem;
  position: relative;
}
.modal-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-right: 1.5rem;
}
.close {
  position: absolute;
  top: 0.55rem;
  right: 0.75rem;
  font-size: 1.6rem;
  color: var(--muted);
}
.close:hover { color: var(--ink); }
dl { margin: 0 0 1rem; display: grid; gap: 0.7rem; }
dt {
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
dd { margin: 0; font-weight: 600; word-break: break-word; }
.qr {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 0.85rem;
  color: var(--muted);
}
.qr img { margin: 0.65rem auto 0; width: 140px; height: 140px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(4, 10, 14, 0.92);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: min(960px, 100%);
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  cursor: zoom-out;
}
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  z-index: 1;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.35rem 0.55rem;
}

/* Inner pages */
.page-top {
  background: var(--ink);
  color: var(--on-dark);
  padding: 3rem 0 2.5rem;
}
.page-top a { color: var(--gold); }
.page-top h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 16ch;
}
.page-body {
  padding: 2rem 0 4rem;
}
.report-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem 1.4rem;
  margin: 0 0 0.85rem;
  transition: border-color 0.2s var(--ease);
}
.report-card:hover { border-color: var(--gold); }
.report-card .y {
  font: 500 1.5rem/1 Unbounded, Georgia, serif;
  color: var(--ink);
}
.report-card .d {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 0.35rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.stats div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(236, 240, 229, 0.12);
  padding: 0.95rem;
}
.stats span {
  display: block;
  font-size: 0.72rem;
  color: rgba(236, 240, 229, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.stats strong {
  font: 500 1.2rem/1.2 Unbounded, Georgia, serif;
  color: #fff;
}
.report-content {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.report-content ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  list-style: disc;
}
.report-content li { padding-left: 0.15rem; }

@media (max-width: 960px) {
  .mission-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .partner-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    display: none;
    width: 100%;
  }
  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: rgba(7, 18, 24, 0.98);
    padding: 0.9rem 1.25rem 1.2rem;
    border-bottom: 1px solid rgba(236, 240, 229, 0.1);
  }
  .nav { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .partner-list { grid-template-columns: 1fr; }
  .who-side { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-in { padding: 4.5rem 0 3.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
