:root {
  --navy: #0d2b4e;
  --navy-deep: #081a33;
  --green: #1c6b3a;
  --blue: #1976c8;
  --teal: #1a8f8f;
  --gold: #e8a13a;
  --cream: #fdf1d8;
  --panel: #eaf3fb;
  --line: #d7e3ee;
  --text: #1c2b3a;
  --text-light: #4a5b6c;
  --white: #ffffff;

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

a {
  color: var(--blue);
}

/* ============= HERO ============= */
.hero {
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
  background: #cfe6f7;
  /* matches the banner's sky tone, used as letterbox on ultra-wide screens */
  line-height: 0;
}

.hero-banner {
  display: block;
  width: 100%;
  height: auto;
  /* scales proportionally — never crops or zooms */
  max-width: 1600px;
  /* caps how large it gets on very wide monitors */
  margin: 0 auto;
}

.hero-sub {
  position: relative;
  z-index: 1;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

/* ============= ICON STRIP ============= */
.strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--navy);
}

.strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
}

.strip-icon svg {
  width: 17px;
  height: 17px;
}

.strip-icon--green {
  background: var(--green);
}

.strip-icon--blue {
  background: var(--blue);
}

.strip-icon--teal {
  background: var(--teal);
}

/* ============= MAIN SHEET ============= */
.sheet {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.col-left {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.col-right {
  padding-left: 0;
}

.block {
  margin-bottom: 26px;
}

.block h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.icon-mark {
  font-size: 1.1rem;
}

.block p,
.block ul {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.block ul {
  padding-left: 20px;
}

.block li {
  margin-bottom: 8px;
}

/* Impact metrics two-column bullet list */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  font-size: 0.92rem;
}

.metrics-grid ul {
  padding-left: 18px;
  margin: 0;
}

.metrics-grid li {
  margin-bottom: 8px;
}

/* Budget table */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 4px;
}

.budget-table thead th {
  background: var(--navy-deep);
  color: var(--white);
  text-align: left;
  padding: 8px 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.budget-table thead th:last-child,
.budget-table td:last-child {
  text-align: right;
}

.budget-table tbody td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
}

.budget-table tbody tr:nth-child(even) {
  background: var(--panel);
}

.budget-table tfoot td {
  padding: 9px 10px;
  font-weight: 700;
  background: var(--panel);
  border-top: 2px solid var(--navy-deep);
  color: var(--navy);
}

.fund-goal {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--blue);
}

/* Sponsor box */
.sponsor-box {
  margin-top: 14px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 12px 16px;
}

.sponsor-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(232, 161, 58, 0.5);
}

.sponsor-row:last-child {
  border-bottom: none;
}

.sponsor-row--top {
  font-weight: 700;
  color: var(--navy);
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ============= FOOTER ============= */
.site-footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-light);
  font-size: 0.85rem;
}

.mangrove {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 800px) {
  .sheet {
    grid-template-columns: 1fr;
  }

  .col-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}