:root {
  color: #17231f;
  background: #f4f7f5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2;
  padding: 10px 14px;
  background: #fff;
}
.skip-link:focus { left: 12px; }

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(22px, 7vw);
}

header { border-bottom: 1px solid #d9e2dd; background: #fff; }
header nav,
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
header nav a,
footer a { min-height: 32px; display: inline-flex; align-items: center; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 40px;
  text-decoration: none;
}
.wordmark span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #17644b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

main { display: block; }
.hero,
.details,
.contact,
.notice { padding: clamp(54px, 8vw, 100px) max(22px, 10vw); }

.hero { color: #fff; background: #173f34; }
.hero h1 {
  max-width: 900px;
  margin: 12px 0 20px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .98;
  letter-spacing: -.045em;
}
.lede { max-width: 760px; margin: 0; color: #dcebe5; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.6; }
.eyebrow { margin: 0; color: #6f8b81; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero .eyebrow { color: #99d4be; }

.details { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 7vw, 100px); background: #fff; }
h2 { margin: 10px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: -.025em; }
dl { margin: 0; display: grid; gap: 0; border-top: 1px solid #d9e2dd; }
dl div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid #d9e2dd; }
dt { color: #6b7c75; }
dd { margin: 0; font-weight: 750; }

.contact { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 36px; background: #e8f0ec; }
.contact p:not(.eyebrow) { max-width: 650px; color: #52655d; line-height: 1.7; }
.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 4px;
  color: #fff;
  background: #17644b;
  font-weight: 800;
  text-decoration: none;
}

.notice { padding-top: 48px; padding-bottom: 48px; }
.notice h2 { font-size: 24px; }
.notice p { max-width: 760px; color: #5f7069; line-height: 1.7; }

footer { color: #dbe8e3; background: #102c24; }
footer div { display: grid; gap: 4px; }
footer span { color: #9eb7ad; font-size: 13px; }

@media (max-width: 760px) {
  header { align-items: flex-start; flex-direction: column; }
  header nav { gap: 14px; }
  .details,
  .contact { grid-template-columns: 1fr; }
  dl div { grid-template-columns: 1fr; gap: 5px; }
  footer { align-items: flex-start; flex-direction: column; }
}
