:root {
  --green: #245f3d;
  --green-dark: #123c27;
  --green-deep: #0e2d20;
  --green-light: #edf6ef;
  --green-mid: #dfeee3;

  --cream: #fbfaf6;
  --white: #ffffff;

  --red-light: #fff1ec;
  --red: #9d3f2b;

  --text: #1f2a24;
  --muted: #647168;
  --border: #dce4df;

  --shadow: 0 12px 30px rgba(20, 55, 37, 0.08);
}

* {
  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(--text);
  background: var(--cream);

  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 90%);
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 10px;

  font-weight: 800;

  text-decoration: none;
}

.brand-mark {
  font-size: 1.6rem;
}

.nav {
  display: flex;
  align-items: center;

  gap: 26px;
}

.nav a {
  text-decoration: none;

  font-weight: 700;
}

.nav-button {
  background: var(--green);
  color: white;

  padding: 10px 16px;

  border-radius: 999px;
}


/* =========================
   HERO
========================= */

.hero {
  color: white;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,.09),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--green-deep),
      var(--green)
    );

  overflow: hidden;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;

  min-height: 720px;

  align-items: stretch;
}

.hero-copy-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding:
    80px
    clamp(40px, 7vw, 120px);

  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,.05),
      transparent 40%
    );
}

.eyebrow {
  margin: 0 0 12px;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.green {
  color: var(--green);
}

.light {
  color: #d7eadc;
}

.hero h1 {
  margin: 0 0 24px;

  max-width: 720px;

  font-size: clamp(3rem, 5vw, 5.4rem);

  line-height: 1;

  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 650px;

  font-size: 1.2rem;

  color: #e9f3ec;
}

.hero-actions {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.button {
  display: inline-block;

  padding: 14px 22px;

  border-radius: 10px;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: white;
  color: var(--green-dark);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.5);

  color: white;
}

.button-light {
  background: white;

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


/* =========================
   HERO IMAGE
========================= */

.hero-visual {
  position: relative;

  min-height: 720px;

  overflow: hidden;
}

.photo-placeholder {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      to right,
      rgba(14,45,32,.22),
      rgba(14,45,32,.02)
    ),
    url("hero-hens.png")
    center
    center / cover
    no-repeat;
}

.photo-overlay {
  position: absolute;

  left: 42px;
  right: 42px;
  bottom: 42px;

  padding: 24px 26px;

  border-radius: 16px;

  background: rgba(10, 38, 25, .72);

  backdrop-filter: blur(8px);

  box-shadow:
    0 15px 35px rgba(0,0,0,.18);
}

.photo-overlay p {
  margin: 4px 0;

  font-size: 1.14rem;

  font-weight: 800;
}


/* =========================
   HERO FACTS
========================= */

.quick-facts {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.hero-facts {
  grid-column: 1 / -1;

  justify-content: center;

  padding:
    18px
    24px
    24px;

  background: rgba(0,0,0,.10);

  border-top:
    1px solid rgba(255,255,255,.10);
}

.quick-facts span {
  padding: 9px 14px;

  border:
    1px solid rgba(255,255,255,.25);

  border-radius: 999px;

  background: rgba(255,255,255,.08);

  font-size: 0.9rem;

  font-weight: 700;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 80px 0;
}

.section-light {
  background: white;
}

.section-heading {
  max-width: 720px;

  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0 0 14px;

  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.15;

  letter-spacing: -0.03em;
}

.section-heading p {
  color: var(--muted);
}


/* =========================
   PROGRESS
========================= */

.progress-section {
  padding-top: 45px;

  padding-bottom: 35px;
}

.progress-card {
  padding: 30px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.progress-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 20px;
}

.progress-top h2 {
  margin: 0;
}

.progress-number {
  text-align: right;
}

.progress-number strong {
  display: block;

  font-size: 2.5rem;

  line-height: 1;

  color: var(--green);
}

.progress-number span {
  color: var(--muted);
}

.progress-bar {
  height: 14px;

  margin-top: 24px;

  border-radius: 999px;

  overflow: hidden;

  background: #e4ebe6;
}

.progress-fill {
  height: 100%;

  background: var(--green);
}

.progress-note {
  margin-bottom: 0;

  color: var(--muted);
}


/* =========================
   PROPOSAL CARDS
========================= */

.grid-two {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;
}

.card {
  position: relative;

  padding: 34px;

  border:
    1px solid var(--border);

  border-radius: 18px;
}

.card h3 {
  margin-top: 0;

  font-size: 1.4rem;
}

.card-icon {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  margin-bottom: 18px;

  border-radius: 50%;

  font-weight: 900;
}

.allowed {
  background: var(--green-light);
}

.allowed .card-icon {
  background: var(--green);

  color: white;
}

.prohibited {
  background: var(--red-light);
}

.prohibited .card-icon {
  background: var(--red);

  color: white;
}

.card ul {
  margin-bottom: 0;

  padding-left: 20px;
}

.card li {
  margin: 10px 0;
}


/* =========================
   BENEFITS
========================= */

.benefits {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}

.benefit-card {
  padding: 26px;

  background: white;

  border:
    1px solid var(--border);

  border-radius: 16px;

  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 2rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
}

.benefit-card p {
  margin-bottom: 0;

  color: var(--muted);
}


/* =========================
   STATS
========================= */

.stats {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin: 32px 0;
}

.stat {
  padding: 24px;

  background: white;

  border:
    1px solid var(--border);

  border-radius: 16px;

  text-align: center;
}

.stat strong {
  display: block;

  font-size: 2.4rem;

  line-height: 1;

  color: var(--green);
}

.stat span {
  display: block;

  margin-top: 8px;

  color: var(--muted);
}

.highlight {
  margin-top: 28px;

  padding: 22px 24px;

  background: var(--green-light);

  border-left:
    5px solid var(--green);

  border-radius: 10px;

  font-weight: 800;
}


/* =========================
   AMENDMENT
========================= */

.legal-box {
  padding: 28px;

  background: white;

  border:
    1px solid var(--border);

  border-radius: 16px;

  box-shadow: var(--shadow);
}

.small {
  font-size: 0.92rem;

  color: var(--muted);
}


/* =========================
   FAQ
========================= */

.faq {
  display: grid;

  gap: 12px;
}

details {
  padding: 18px 20px;

  background: white;

  border:
    1px solid var(--border);

  border-radius: 12px;
}

summary {
  cursor: pointer;

  font-weight: 800;
}

details p {
  color: var(--muted);
}


/* =========================
   SUPPORT
========================= */

.support {
  color: white;

  background:
    linear-gradient(
      135deg,
      var(--green-deep),
      var(--green)
    );
}

.support-grid {
  display: grid;

  grid-template-columns:
    1fr 420px;

  gap: 60px;

  align-items: center;
}

.support h2 {
  margin-top: 0;

  font-size:
    clamp(2.2rem, 4vw, 3.6rem);

  line-height: 1.1;
}

.contact-card {
  padding: 28px;

  background:
    rgba(255,255,255,.1);

  border:
    1px solid rgba(255,255,255,.18);

  border-radius: 16px;
}

.contact-card a {
  color: white;
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 28px 0;

  background: #0c2418;

  color: white;
}

.footer-wrap {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;
}

footer .small {
  color: #bcd0c3;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr;

    grid-template-rows: auto auto auto;

    min-height: auto;
  }

  .hero-copy-wrap {
    padding:
      64px
      6%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-facts {
    justify-content: flex-start;

    padding:
      18px
      6%
      24px;
  }

  .support-grid,
  .grid-two,
  .benefits,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .progress-top {
    flex-direction: column;

    align-items: flex-start;
  }

  .progress-number {
    text-align: left;
  }

  .footer-wrap {
    flex-direction: column;

    align-items: flex-start;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 560px) {

  .container {
    width:
      min(92%, 1160px);
  }

  .hero-copy-wrap {
    padding:
      52px
      5%;
  }

  .hero h1 {
    font-size:
      clamp(2.5rem, 14vw, 3.6rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;

    text-align: center;
  }

  .hero-visual {
    min-height: 330px;
  }

  .photo-overlay {
    left: 14px;

    right: 14px;

    bottom: 14px;

    padding: 16px;
  }

  .photo-overlay p {
    font-size: 1rem;
  }

  .quick-facts span {
    font-size: 0.82rem;
  }
}
