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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: #1b2428;
}

a {
  color: inherit;
}

.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 5vw;
  border-bottom: 1px solid #dfe5e3;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #19282c;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #4c5b5f;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: #146b57;
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 7vw;
  padding: 11vh 8vw 8vh;
  background: #eef5f1;
  border-bottom: 1px solid #d8e5df;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #146b57;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #132226;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #425257;
  font-size: 20px;
  line-height: 1.7;
}

.service-facts {
  margin: 0;
  border-top: 1px solid #b9cbc3;
}

.service-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #b9cbc3;
}

.service-facts dt {
  color: #5a696b;
  font-size: 13px;
}

.service-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.section {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1.7fr);
  gap: 6vw;
  padding: 92px 8vw;
  border-bottom: 1px solid #e3e8e6;
}

.section.alternate {
  background: #f7f8f8;
}

.section-content {
  max-width: 920px;
}

h2 {
  margin: 0 0 24px;
  color: #18272b;
  font-size: 34px;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: 0;
}

p {
  color: #4e5c60;
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.principles article {
  padding-top: 20px;
  border-top: 3px solid #146b57;
}

.legal-copy p {
  max-width: 800px;
  margin: 0 0 18px;
}

.contact {
  background: #f2f6f4;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 8vw;
  color: #667477;
  font-size: 13px;
  background: #192528;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 72px 6vw 54px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    grid-template-columns: 1fr;
    padding: 64px 6vw;
  }

  .section-label {
    margin-bottom: 0;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    padding-inline: 6vw;
  }
}
