:root {
  --green-dark: #17211a;
  --green: #3d4423;
  --green-light: #eae6d4;
  --cream: #f2efd0;
  --off-white: #faf8ef;
  --text: #1f2620;
  --text-muted: #4d574a;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.55;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2 {
  color: var(--green-dark);
  line-height: 1.25;
}

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

.status-banner {
  background: var(--cream);
  color: var(--green-dark);
  border-bottom: 3px solid var(--green);
  padding: 0.85rem 0;
  text-align: center;
  font-size: 1rem;
}

.status-banner-label {
  font-weight: 400;
}

.status-banner-value {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.site-header {
  background: var(--green-dark);
  color: #fff;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.campaign-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}

.hero {
  padding: 3rem 0 1.5rem;
}

.hero h1 {
  font-size: 1.75rem;
  margin: 0;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 1rem 0 0;
}

.explainer {
  padding: 0.5rem 0 2rem;
}

.explainer p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.resource {
  padding: 0.5rem 0 1.5rem;
}

.resource h2 {
  font-size: 1.2rem;
}

.cta {
  background: var(--green-light);
  padding: 2.5rem 0;
}

.cta h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
}

.button {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  padding: 0.9rem 1.25rem;
  border-radius: 6px;
  transition: background-color 0.15s ease-in-out;
}

.button:hover,
.button:focus {
  background: var(--green-dark);
}

.contact {
  padding: 2rem 0 3rem;
}

.contact h2 {
  font-size: 1.2rem;
}

.site-footer {
  background: var(--green-dark);
  color: var(--green-light);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: #fff;
}

@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .cta-buttons {
    flex-direction: row;
    max-width: none;
  }

  .button {
    flex: 1;
  }
}
