:root {
  color-scheme: dark;
  --bg: #10150f;
  --panel: #172016;
  --text: #f4f0e6;
  --muted: #c8c0ae;
  --green: #55b86b;
  --gold: #d8a846;
  --line: rgba(244, 240, 230, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 72px);
  background: url("/assets/bg1.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.88), rgba(7, 9, 7, 0.48) 52%, rgba(7, 9, 7, 0.18)),
    linear-gradient(0deg, rgba(16, 21, 15, 0.96), rgba(16, 21, 15, 0.1) 45%);
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 4vh;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  border-color: rgba(85, 184, 107, 0.88);
  background: var(--green);
  color: #071006;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 0;
}

.facts div,
.section article,
.donate {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 32, 22, 0.86);
}

.facts div {
  padding: 14px 16px;
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section {
  padding: clamp(32px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.section article {
  padding: 24px;
}

.section article p,
.donate p {
  color: var(--muted);
  line-height: 1.58;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.section--donate {
  padding-top: 0;
}

.donate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.donate p {
  max-width: 720px;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .hero {
    min-height: 84vh;
    padding: 24px 18px;
  }

  .actions,
  .donate {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .facts,
  .section--features .section__inner {
    grid-template-columns: 1fr;
  }
}
