:root {
  --orange: #f6821f;
  --orange-dark: #dd6b0c;
  --ink: #383333;
  --ink-soft: #6a6360;
  --line: #e6e3df;
  --bg: #ffffff;
  --bg-tint: #faf8f5;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(51, 56, 61, .10);
  --wrap: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange-dark); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { color: var(--ink-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffb066; }

.lede { font-size: 1.06rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(249, 115, 22, .32); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.brand__img { height: 54px; width: auto; }
.brand__img--footer { height: 52px; }
.brand__text { display: grid; line-height: 1.05; }
.brand__text small { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.brand__text strong { font-size: 1.32rem; font-weight: 700; letter-spacing: -.02em; }
.brand__text em { font-style: normal; color: var(--orange); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 500; }
.nav a:not(.btn):hover { color: var(--orange); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__toggle span + span { margin-top: 5px; }

/* Hero */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(24, 27, 30, .93) 6%, rgba(24, 27, 30, .74) 48%, rgba(24, 27, 30, .28) 100%),
    linear-gradient(180deg, rgba(24, 27, 30, .10), rgba(24, 27, 30, .30));
}
.hero__inner { padding: clamp(72px, 12vw, 132px) 0; max-width: 720px; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { color: rgba(255, 255, 255, .84); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Stats */
.stats { background: var(--ink); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 34px 0; }
.stats__grid div { display: grid; gap: 4px; }
.stats__grid strong { font-size: 1.5rem; color: var(--orange); font-weight: 700; }
.stats__grid span { font-size: .88rem; color: rgba(255, 255, 255, .72); line-height: 1.5; }

/* Sections */
.section { padding: clamp(64px, 9vw, 104px) 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 680px; margin-bottom: 48px; }
.section__head h2 { margin-bottom: 16px; }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.split__body h2 { margin-bottom: 18px; }
.split__body p + p { margin-top: 14px; }
.split__body .btn { margin-top: 26px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .94rem; }

/* Callout */
.callout {
  margin-top: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.callout h3 { margin-bottom: 10px; font-size: 1.35rem; }
.callout p { color: rgba(255, 255, 255, .76); font-size: .95rem; max-width: 62ch; }

/* Tiles */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.tile img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.tile figcaption { padding: 20px 22px; display: grid; gap: 6px; }
.tile strong { font-weight: 600; }
.tile span { font-size: .9rem; color: var(--ink-soft); }

.note { margin-top: 32px; font-size: .95rem; }

/* Band */
.band { position: relative; background-size: cover; background-position: center; color: #fff; isolation: isolate; }
.band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28, 31, 34, .93), rgba(28, 31, 34, .86));
}
.band__inner { padding: clamp(64px, 9vw, 104px) 0; }
.band h2 { margin-bottom: 16px; max-width: 20ch; }
.band .lede { color: rgba(255, 255, 255, .8); max-width: 62ch; }

.donate { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.donate__card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.donate__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: #ffb066; font-weight: 600; }
.donate__iban { font-size: 1.35rem; letter-spacing: .04em; }
.donate__meta { font-size: .9rem; color: rgba(255, 255, 255, .68); }
.donate__card p { color: rgba(255, 255, 255, .72); font-size: .94rem; }
.donate__card .btn { margin-top: 10px; justify-self: start; }

/* Contact list */
.contact { list-style: none; display: grid; gap: 16px; margin-top: 26px; }
.contact li { display: grid; gap: 2px; font-size: .96rem; color: var(--ink-soft); }
.contact span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--orange); font-weight: 600; }

/* Footer */
.footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 62px 0 26px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.footer a { display: block; color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .92rem; margin-bottom: 8px; }
.footer a:hover { color: var(--orange); }
.footer p { color: rgba(255, 255, 255, .6); font-size: .92rem; margin-top: 14px; }
.brand--footer { margin-bottom: 6px; }
.brand--footer .brand__text small,
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: rgba(255, 255, 255, .6); }
.footer__bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* Responsive */
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .cards, .grid3, .donate { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; padding: 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 780px) {
  .nav__toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    display: none;
  }
  .nav--open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; border-bottom: 0; }
  .hero__cta .btn { flex: 1 1 auto; }
}
