@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.woff2") format("woff2");
  font-weight: 700 800;
  font-display: swap;
}
:root {
  --ink: #151817;
  --muted: #616764;
  --paper: #f5f5f2;
  --line: rgba(21, 24, 23, 0.14);
  --soft: #dce6e2;
  --dark: #1d2220;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-color: #8d9692 var(--paper);
}
body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: #cfded8;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
button,
a,
summary {
  outline-offset: 4px;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #45665d;
}
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #323735;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.82) contrast(1.02) brightness(1.18);
  transform: scale(1.001);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(9, 12, 11, 0.56) 0%,
    rgba(9, 12, 11, 0.2) 58%,
    rgba(9, 12, 11, 0.62) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 52px clamp(18px, 2.2vw, 36px);
  color: white;
  text-align: left;
}
.orientation-hint {
  display: none;
}
.hero-main {
  max-width: 1310px;
  margin-left: clamp(24px, 3vw, 56px);
}
.hero-intro {
  transform: translateY(-100px);
}
h1,
h2 {
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h1 {
  max-width: 900px;
  font-size: clamp(55px, 7.2vw, 96px);
  font-weight: 600;
  line-height: 0.92;
  margin: 0 0 25px;
}
.hero-lead {
  max-width: 760px;
  margin: 0 0 40px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.hero-details {
  display: block;
}
.status-cluster {
  padding-top: 8px;
}
.fundraiser {
  width: min(760px, 100%);
  margin: 0 0 27px;
  color: white;
}
.fundraiser-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.amount {
  display: block;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.percentage {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.progress-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.28);
  margin-top: 19px;
  overflow: hidden;
}
.progress-fill {
  display: block;
  width: 48.857%;
  height: 100%;
  background: white;
  transform-origin: left;
  animation: grow 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.progress-fill:after {
  content: none;
}
.demo-note {
  font-size: 10px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.donate-button,
.faq-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
  padding: 13px 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.donate-button:hover,
.faq-button:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}
.faq-button {
  min-width: auto;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.78);
}
.reasons {
  width: min(1180px, 100%);
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.reasons h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}
.reasons ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  counter-reset: reasons;
  margin: 0;
  padding: 0;
}
.reasons li {
  counter-increment: reasons;
  position: relative;
  min-height: 68px;
  padding: 0 18px 0 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.reasons li:before {
  content: "0" counter(reasons);
  position: absolute;
  left: 14px;
  top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  font-variant-numeric: tabular-nums;
}
.reasons strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.reasons span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.supporters {
  padding: 32px 0 27px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.supporters > p:first-child {
  margin: 0 20px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.logo-window {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 9%,
    #000 91%,
    transparent
  );
}
.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.logo-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  width: max(100vw, 760px);
  flex: 0 0 max(100vw, 760px);
  align-items: center;
}
.logo-placeholder {
  display: block;
  padding: 0 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #777d7a;
  opacity: 0.64;
}
.logo-serif,
.logo-script {
  font-family: Manrope, sans-serif;
  font-style: normal;
  line-height: 1.05;
}
.logo-wide {
  letter-spacing: 0.1em;
  font-size: 12px;
}
.supporters:hover .logo-track {
  animation-play-state: paused;
}
.donation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 500px);
  gap: clamp(50px, 9vw, 128px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px;
  align-items: center;
}
.donation-intro h2,
.faq h2 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 25px;
}
.donation-intro p,
.faq-heading p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.bank-panel {
  background: var(--dark);
  color: white;
  padding: 32px;
}
.bank-panel > p:first-child {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.bank-row span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.54);
}
.bank-row strong {
  display: block;
  margin-top: 5px;
  font-size: 23px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.copy-button {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: white;
  padding: 9px 12px;
  font:
    600 11px Manrope,
    sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.copy-button:hover {
  background: white;
  color: var(--ink);
}
.bank-hint {
  margin: 11px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.videos {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px clamp(100px, 12vw, 160px);
}
.videos-heading {
  margin-bottom: 34px;
}
.videos-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.02;
  margin: 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-item h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin: 18px 0 6px;
}
.video-item p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.faq {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px clamp(90px, 12vw, 150px);
}
.faq-heading {
  margin-bottom: 34px;
}
.faq-heading h2 {
  white-space: nowrap;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-column {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 42px 25px 0;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary span:before,
summary span:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
summary span:after {
  transform: rotate(90deg);
}
details[open] summary span:after {
  transform: rotate(0);
}
details p {
  margin: -6px 40px 26px 0;
  max-width: 68ch;
  line-height: 1.7;
  color: var(--muted);
  font-size: 14px;
}
.contact {
  background: var(--dark);
  color: white;
  padding: clamp(80px, 10vw, 130px) max(24px, calc((100vw - 1132px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 9vw, 120px);
}
.contact-heading h2 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 22px;
}
.contact-heading p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  padding: 14px 15px;
  font:
    400 15px Manrope,
    sans-serif;
  outline: none;
  resize: vertical;
  caret-color: white;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #f0a9a2;
}
.message-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.character-count {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.field-error {
  min-height: 16px;
  color: #f5beb8;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  border: 1px solid white;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 14px 18px;
  font:
    600 13px Manrope,
    sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s;
}
.contact-form button:hover {
  background: #e9efec;
  transform: translateY(-1px);
}
.contact-form button:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: #c7d5d0;
  font-size: 13px;
  line-height: 1.5;
}
.form-status[data-state="success"] { color: #bce8cd; }
.form-status[data-state="error"] { color: #f5beb8; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@keyframes grow {
  from {
    transform: scaleX(0);
  }
}
@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 1050px) {
  .hero-main {
    margin-left: 0;
  }
  .hero-details {
    display: block;
  }
  .reasons {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .reasons ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .reasons li:nth-child(4) {
    border-left: 0;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: max(1180px, 100svh);
    align-items: start;
  }
  .hero-image {
    height: min(720px, 72svh);
    object-position: 32% center;
    filter: saturate(0.88) contrast(1.01) brightness(1.24);
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 78%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 78%,
      transparent 100%
    );
  }
  .hero-shade {
    background: linear-gradient(
      to bottom,
      rgba(9, 12, 11, 0.34) 0%,
      rgba(9, 12, 11, 0.4) 48%,
      rgba(29, 34, 32, 0.88) 68svh,
      var(--dark) 78svh,
      var(--dark) 100%
    );
  }
  .hero-content {
    padding: calc(76px + env(safe-area-inset-top)) 18px
      calc(62px + env(safe-area-inset-bottom));
  }
  .hero-intro {
    transform: translateY(-48px);
  }
  h1 {
    font-size: clamp(40px, 11.5vw, 52px);
  }
  .hero-lead {
    max-width: 34ch;
    margin-bottom: 30px;
    font-size: 16px;
  }
  .fundraiser-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
  .amount {
    font-size: clamp(24px, 7.6vw, 32px);
  }
  .percentage {
    display: none;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .donate-button,
  .faq-button {
    width: 100%;
  }
  .faq-button {
    justify-content: center;
    min-height: 48px;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(9, 12, 11, 0.16);
  }
  .donate-button {
    min-height: 48px;
  }
  .orientation-hint {
    display: block;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.45;
    text-align: left;
  }
  .reasons {
    display: block;
    width: 100%;
    margin-top: 34px;
    padding-top: 16px;
    overflow: visible;
  }
  .reasons h2 {
    margin-bottom: 18px;
    font-size: 21px;
  }
  .reasons ol {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .reasons li,
  .reasons li:nth-child(4) {
    width: 100%;
    min-height: 0;
    padding: 14px 0 14px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }
  .reasons li:first-child {
    border-top: 0;
  }
  .supporters {
    padding: 26px 0;
  }
  .donation-section {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 84px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .donation-section {
    gap: 42px;
  }
  .bank-panel {
    padding: 26px 22px;
  }
  .copy-button {
    min-width: 60px;
    min-height: 44px;
  }
  .videos {
    padding-bottom: 92px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .videos-heading {
    margin-bottom: 26px;
  }
  .videos-heading h2 {
    white-space: normal;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .faq {
    padding-bottom: 84px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .faq-heading {
    margin-bottom: 26px;
  }
  .faq-heading h2 {
    white-space: normal;
    font-size: 43px;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-column + .faq-column {
    border-top: 0;
  }
  summary {
    min-height: 58px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    padding-left: 18px;
    padding-right: 18px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
  .contact-form button {
    min-height: 48px;
  }
}
@media (max-width: 360px) {
  .hero-content,
  .donation-section,
  .videos,
  .faq,
  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 {
    font-size: clamp(29px, 9.6vw, 35px);
  }
  .amount {
    font-size: clamp(22px, 7vw, 26px);
  }
  .bank-panel {
    padding: 22px 18px;
  }
  .bank-row {
    gap: 12px;
  }
  .bank-row strong {
    font-size: 20px;
  }
  .donation-intro h2,
  .videos-heading h2,
  .faq-heading h2,
  .contact-heading h2 {
    font-size: 38px;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-top: 62px;
    padding-bottom: 42px;
  }
  .hero-intro {
    transform: translateY(-36px);
  }
}
@media (max-width: 760px) and (orientation: landscape) {
  .hero-image {
    height: 100%;
    object-position: center 50%;
    filter: saturate(0.82) contrast(1.02) brightness(1.18);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(9, 12, 11, 0.56) 0%,
      rgba(9, 12, 11, 0.2) 58%,
      rgba(9, 12, 11, 0.62) 100%
    );
  }
  .orientation-hint {
    display: none;
  }
  .reasons {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
  }
  .reasons ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reasons li,
  .reasons li:nth-child(4) {
    width: auto;
    padding: 10px 12px 10px 42px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }
}
@media (pointer: coarse) {
  .copy-button,
  .contact-form button,
  .donate-button,
  .faq-button,
  summary {
    touch-action: manipulation;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .logo-track,
  .progress-fill {
    animation: none;
  }
  .donate-button,
  .toast,
  summary span:after {
    transition: none;
  }
}
