:root {
  --brand-green: #52d543;
  --brand-red: #f15059;
  --white: #ffffff;
  --ink: #152116;
  --muted-ink: #4c5b4e;
  --soft-green: #eefbea;
  --soft-red: #fff0f1;
  --line: #dbe8dc;
  --shadow: 0 18px 45px rgba(21, 33, 22, 0.12);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-mark,
.nav-links,
.hero-actions {
  align-items: center;
  display: flex;
}

.brand-mark {
  font-weight: 800;
  line-height: 0;
}

.brand-mark img {
  display: block;
  height: 46px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  color: var(--muted-ink);
  font-size: 15px;
  font-weight: 700;
  gap: clamp(14px, 3vw, 34px);
}

.nav-links a:hover {
  color: var(--brand-red);
}

.hero-section {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: calc(100svh - 75px);
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px) 44px;
}

.hero-copy {
  align-self: center;
  max-width: 850px;
}

.eyebrow {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(44px, 9vw, 94px);
  line-height: 0.96;
  margin-bottom: 28px;
  max-width: 980px;
}

h2 {
  font-size: clamp(31px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text {
  color: var(--muted-ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  max-width: 760px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  border: 2px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--brand-green);
  color: var(--ink);
}

.button-secondary {
  background: var(--white);
}

.hero-panel {
  align-self: end;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: clamp(26px, 4vw, 44px);
}

.hero-logo-wrap {
  align-items: center;
  background: var(--white);
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  min-height: 185px;
  padding: 18px;
}

.hero-logo-wrap img {
  display: block;
  height: auto;
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
}

.commitment-count {
  margin-top: auto;
}

.metric {
  color: var(--brand-green);
  display: block;
  font-size: clamp(68px, 10vw, 122px);
  font-weight: 900;
  line-height: 0.85;
}

.metric-label {
  color: #cfe5d0;
  font-weight: 800;
}

.hero-panel ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.hero-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  padding-top: 18px;
}

.statement-band {
  background: var(--brand-red);
  color: var(--white);
  padding: clamp(34px, 7vw, 72px) clamp(20px, 8vw, 120px);
}

.statement-band p {
  font-size: clamp(26px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  margin: 0;
  max-width: 1120px;
}

.content-section,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 19px;
  line-height: 1.55;
  margin-top: 18px;
}

.two-column {
  display: grid;
  gap: clamp(22px, 5vw, 72px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.two-column p,
.impact-list p {
  color: var(--muted-ink);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.work-section {
  background: var(--soft-green);
}

.pillar-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.pillar-card {
  background: var(--white);
  border: 2px solid var(--ink);
  min-height: 310px;
  padding: 26px;
}

.card-index {
  color: var(--brand-red);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 60px;
}

.pillar-card p {
  color: var(--muted-ink);
  font-size: 17px;
  line-height: 1.55;
}

.impact-section {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.impact-list {
  align-self: end;
}

.inline-brand-lockup {
  display: block;
  height: auto;
  margin-bottom: 30px;
  max-width: min(360px, 100%);
  width: 360px;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--brand-green);
}

.contact-section .section-heading > p:not(.eyebrow) {
  color: #d9e8da;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 980px;
}

label {
  color: #e6f2e7;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: var(--white);
  border: 2px solid transparent;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-green);
  outline: none;
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.form-status[data-type="success"] {
  color: var(--brand-green);
}

.form-status[data-type="error"] {
  color: #ff9fa5;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer img {
  display: block;
  height: 40px;
  max-width: min(240px, 60vw);
  object-fit: contain;
  width: auto;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-section,
  .two-column,
  .pillar-grid,
  .impact-section,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }

  .hero-logo-wrap {
    min-height: 150px;
  }

  .nav-links {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-section {
    padding-top: 42px;
  }

  .brand-mark img {
    height: 38px;
  }

  h1 {
    font-size: 42px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .button {
    width: 100%;
  }
}

.hidden-field {
  display: none;
}
