:root {
  --ink: #162033;
  --muted: #5f6876;
  --paper: #fbf7ef;
  --cream: #fffaf0;
  --white: #ffffff;
  --gold: #d59b42;
  --amber: #f0c15b;
  --navy: #13213d;
  --teal: #2d7c78;
  --line: rgba(22, 32, 51, 0.14);
  --shadow: 0 22px 70px rgba(22, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.82), rgba(10, 17, 31, 0));
}

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

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.header-donate {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
}

.header-donate {
  background: var(--amber);
  color: #1d2433;
  border-color: transparent;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.section-band {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 70px) clamp(42px, 8vw, 90px);
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.88), rgba(8, 13, 24, 0.42), rgba(8, 13, 24, 0.18)),
    linear-gradient(0deg, rgba(8, 13, 24, 0.68), rgba(8, 13, 24, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.hero-lede {
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.donate-button {
  color: #1e2430;
  background: var(--amber);
  border-color: transparent;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--cream);
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.projects,
.video-section {
  background: var(--white);
}

.video-section {
  padding-top: clamp(50px, 7vw, 90px);
  text-align: center;
}

.video-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.video-section video {
  width: min(1120px, 100%);
  max-height: 70vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #0c1322;
  box-shadow: var(--shadow);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.project-panel {
  overflow: hidden;
  background: #f6f2e8;
  border: 1px solid rgba(22, 32, 51, 0.1);
  border-radius: 8px;
}

.project-panel img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
}

.project-panel div {
  padding: clamp(22px, 3vw, 34px);
}

.project-panel p {
  color: var(--muted);
  font-size: 17px;
}

.creative-section {
  background: #f2eadc;
}

.creative-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  column-gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.creative-copy .eyebrow {
  grid-column: 1 / -1;
}

.creative-copy h2,
.creative-copy p {
  margin-bottom: 0;
}

.creative-copy > p:last-child {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.creative-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.creative-gallery figure {
  margin: 0;
}

.creative-gallery img {
  width: 100%;
  height: clamp(330px, 45vw, 620px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.creative-gallery figure:last-child img {
  object-position: center;
}

.creative-gallery figcaption {
  padding: 14px 2px 0;
  color: var(--muted);
  font-size: 15px;
}

.community-highlight {
  position: relative;
  min-height: min(82vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--navy);
}

.community-highlight::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.86), rgba(8, 13, 24, 0.24)),
    linear-gradient(0deg, rgba(8, 13, 24, 0.68), transparent 65%);
}

.community-highlight > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.community-highlight > div {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.community-highlight p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.impact {
  background: #eef7f5;
}

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

.impact-list div {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(45, 124, 120, 0.15);
  border-radius: 8px;
}

.impact-list strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 32px;
}

.impact-list p {
  color: var(--muted);
}

.donate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
  background: var(--navy);
  color: var(--white);
}

.donate-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.payment-purpose {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--amber);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 8px 8px 0;
}

.payment-purpose strong,
.payment-purpose span {
  display: block;
}

.donate-card {
  align-self: start;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.donate-card-title {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  margin-bottom: 18px;
  background: #eef0f3;
  border-radius: 999px;
}

.mode {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.mode.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 22px rgba(22, 32, 51, 0.12);
}

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

.amount-grid button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.amount-grid button.selected {
  border-color: var(--teal);
  background: #e8f4f2;
}

.custom-amount {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.custom-amount input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfd;
}

.donate-button {
  width: 100%;
}

.test-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--cream);
}

.trust p {
  color: var(--muted);
  font-size: 18px;
}

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

.trust-details p {
  margin-bottom: 12px;
}

.trust-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.7);
  background: #0c1322;
}

.test-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.test-shell {
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.test-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 18px;
}

.test-shell h1 {
  color: var(--ink);
  font-size: clamp(34px, 6vw, 56px);
}

.test-shell p {
  color: var(--muted);
}

.test-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.test-summary div {
  padding: 18px;
  background: #eef7f5;
  border-radius: 8px;
}

.test-summary span,
.test-summary strong {
  display: block;
}

.test-summary span {
  color: var(--muted);
  font-size: 13px;
}

.test-summary strong {
  margin-top: 6px;
  font-size: 24px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .intro-grid,
  .project-grid,
  .creative-copy,
  .creative-gallery,
  .impact-list,
  .donate-section,
  .trust {
    grid-template-columns: 1fr;
  }

  .creative-copy {
    gap: 16px;
  }

  .creative-gallery img {
    height: min(78vw, 500px);
  }

}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .header-donate {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-actions,
  .hero-actions .button,
  .site-footer,
  .test-summary {
    display: grid;
    grid-template-columns: 1fr;
  }

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