* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #173d35;
  background: #f6faf8;
  line-height: 1.65;
}

a {
  color: #1f8a70;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #1f8a70;
  outline-offset: 3px;
}

.skip-link {
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -44px;
  z-index: 20;
  background: #173d35;
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid #e2eee9;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px 20px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 58px;
  width: 72px;
  object-fit: contain;
}

.brand span {
  color: #31401b;
  font-size: 22px;
  font-weight: 900;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.links a {
  color: #31554c;
  text-decoration: none;
}

.hero,
.section,
.footer-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px 20px;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
}

.hero h1 {
  color: #173d35;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  margin: 0 0 18px;
}

.hero p {
  color: #52706a;
  font-size: 18px;
  margin: 0 0 22px;
}

.hero img,
.media-card img {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.eyebrow {
  background: #e9f7f2;
  border: 1px solid #caebdd;
  border-radius: 999px;
  color: #1f8a70;
  display: inline-block;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 8px 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: #1f8a70;
  border-radius: 14px;
  color: #fff;
  display: inline-block;
  padding: 13px 18px;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  border: 1px solid #b9d9cf;
  color: #173d35;
}

.section h2 {
  color: #173d35;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}

.section > p {
  color: #52706a;
  margin-top: 0;
  max-width: 820px;
}

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

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

.card {
  background: #fff;
  border: 1px solid #e2eee9;
  border-radius: 18px;
  padding: 22px;
}

.card h3 {
  margin-top: 0;
}

.list {
  padding-left: 20px;
}

.contact-box {
  background: #173d35;
  border-radius: 22px;
  color: #fff;
  padding: 24px;
}

.contact-box a {
  color: #fff;
}

.map-section {
  background: #fff;
  border: 1px solid #e2eee9;
  border-radius: 22px;
  margin-top: 22px;
  overflow: hidden;
}

.map-copy {
  padding: 22px 22px 0;
}

.map-copy h2 {
  margin-bottom: 8px;
}

.map-copy p {
  color: #52706a;
  margin-top: 0;
}

.map-section iframe {
  display: block;
  min-height: 340px;
  width: 100%;
}

footer {
  background: #173d35;
  color: #ddebe6;
}

footer a {
  color: #fff;
}

.footer-inner {
  padding-block: 32px;
}

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

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

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

  .hero,
  .section {
    padding-block: 36px;
  }
}
