:root {
  color-scheme: light;
  --ink: #17201f;
  --muted: #5b6865;
  --faint: #eef3f1;
  --line: #dce6e2;
  --paper: #fbfcfa;
  --white: #ffffff;
  --green: #2f6f5f;
  --green-dark: #204e44;
  --blue: #3e6f97;
  --gold: #b88945;
  --shadow: 0 18px 42px rgba(28, 44, 41, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.65rem 0.85rem;
  position: absolute;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  padding: 0.9rem 1.25rem;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 0.6rem;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.85rem;
  height: 2.1rem;
  justify-content: center;
  width: 2.1rem;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--green-dark);
}

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  margin: 0 auto;
  max-width: 1160px;
  min-height: 76vh;
  padding: 4.5rem 1.25rem 3.25rem;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-top: 1.25rem;
  max-width: 710px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 760;
  min-height: 2.85rem;
  padding: 0.68rem 1rem;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--green-dark);
}

.button.secondary:hover {
  background: var(--faint);
  color: var(--green-dark);
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section {
  padding: 4.5rem 1.25rem;
}

.section.alt {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-inner {
  margin: 0 auto;
  max-width: 1160px;
}

.section-heading {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.62fr);
  margin-bottom: 2rem;
}

.section-heading p,
.narrow p,
.card p,
.text-list li,
.disclosure p,
.contact-block p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 100%;
  padding: 1.25rem;
}

.card.accent {
  border-top: 4px solid var(--gold);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card-link {
  align-items: flex-start;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
}

.card-link:hover h3 {
  color: var(--green-dark);
}

.tag {
  background: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
}

.disclosure {
  background: #f6f3ed;
  border: 1px solid #e5d9c8;
  border-radius: 8px;
  margin-top: 2rem;
  padding: 1.25rem;
}

.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 1.25rem 3.4rem;
}

.page-header-inner,
.narrow {
  margin: 0 auto;
  max-width: 860px;
}

.page-header .lede {
  max-width: 780px;
}

.text-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.text-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.content-flow {
  display: grid;
  gap: 2rem;
}

.content-flow h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin-bottom: 0.8rem;
}

.content-flow h3 {
  margin: 1.2rem 0 0.35rem;
}

.contact-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.placeholder {
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 1.25rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .section-heading,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 3rem;
  }

  .section,
  .page-header {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

@media (max-width: 520px) {
  .nav,
  .section,
  .page-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button {
    justify-content: center;
    width: 100%;
  }
}
