:root {
  --green: #075e54;
  --green2: #177eaa;
  --mint: #eaf7f3;
  --gold: #e87962;
  --ink: #163532;
  --muted: #607774;
  --cream: #f6fbf9;
  --white: #fff;
  --shadow: 0 20px 60px rgba(7, 94, 84, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.65 "DM Sans",
    sans-serif;
  background: var(--white);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: #fff;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e7eeeb;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--green);
  position: relative;
  display: grid;
  place-items: center;
}
.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}
.brand-mark:before {
  width: 22px;
  height: 7px;
}
.brand-mark:after {
  width: 7px;
  height: 22px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font:
    800 16px/1.1 Manrope,
    sans-serif;
}
.brand-copy small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green2);
  margin-top: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 14px;
}
.main-nav > a:not(.nav-cta):not(.staff-mail-button):hover {
  color: var(--green2);
}
.nav-cta,
.staff-mail-button {
  padding: 11px 16px;
  border-radius: 99px;
}
.nav-cta {
  background: var(--green);
  color: #fff;
}
.staff-mail-button {
  border: 1px solid #c8d9d3;
  color: var(--green);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
}
.hero {
  min-height: 680px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(4, 63, 57, 0.94) 0%,
    rgba(7, 94, 84, 0.76) 40%,
    rgba(23, 126, 170, 0.1) 75%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 85px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
  color: #bde9df;
  margin: 0 0 16px;
}
.eyebrow.dark {
  color: var(--green);
}
.eyebrow.teal {
  color: var(--green2);
}
.eyebrow.light {
  color: #bde9df;
}
.hero h1 {
  font:
    800 clamp(45px, 6vw, 76px) / 1.03 Manrope,
    sans-serif;
  letter-spacing: -0.045em;
  max-width: 700px;
  margin: 0;
}
.hero-lede {
  font-size: 19px;
  max-width: 610px;
  color: #e7f0ed;
  margin: 25px 0 30px;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 21px;
  border-radius: 6px;
  font-weight: 700;
}
.button-primary {
  background: var(--gold);
  color: #2f211f;
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--ink);
  padding: 24px max(28px, calc((100vw - 1160px) / 2));
  padding-left: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 600px;
}
.note-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
}
.hero-note div {
  display: flex;
  flex-direction: column;
}
.hero-note span {
  font-size: 14px;
  color: var(--muted);
}
.section {
  padding: 100px 0;
}
.intro {
  background: var(--cream);
}
.intro-grid,
.promise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.section h2 {
  font:
    800 clamp(34px, 4vw, 54px) / 1.1 Manrope,
    sans-serif;
  letter-spacing: -0.035em;
  margin: 0;
}
.intro-copy {
  font-size: 18px;
  color: #52645f;
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.trust-row > div {
  background: #fff;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  border-left: 3px solid var(--gold);
}
.trust-row span {
  grid-row: 1/3;
  color: var(--green2);
  font-weight: 800;
}
.trust-row small {
  color: var(--muted);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 430px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 34px 25px;
  border: 1px solid #dce6e2;
  min-height: 285px;
  transition: 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.service-number {
  position: absolute;
  right: 20px;
  top: 18px;
  font: 700 12px Manrope;
  color: #9aa8a4;
}
.service-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 42px;
}
.service-card h3 {
  font: 700 20px Manrope;
  margin: 0 0 12px;
}
.service-card p {
  color: var(--muted);
  margin: 0;
}
.service-card.featured p {
  color: #d4e2de;
}
.promise {
  background: var(--green);
  color: #fff;
}
.promise-list p {
  display: grid;
  grid-template-columns: 45px 110px 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 21px 0;
  margin: 0;
  color: #cbded8;
}
.promise-list span {
  color: var(--gold);
  font-weight: 700;
}
.promise-list strong {
  color: #fff;
}
.contact {
  background: #e8f1ed;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--green);
  color: #fff;
  padding: 65px;
}
.contact-copy p:last-child {
  color: #d2e1dc;
  max-width: 480px;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  padding: 35px;
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--green2);
  font-weight: 700;
}
.contact-card > a {
  display: block;
  font: 700 clamp(17px, 2vw, 23px) Manrope;
  margin: 9px 0 18px;
  word-break: break-word;
}
.contact-card p {
  color: var(--muted);
}
.contact-card .button {
  display: inline-flex;
  font-size: 15px;
}
.map-link {
  font: 600 14px DM Sans !important;
  margin: auto 0 !important;
}
.site-footer {
  background: #043f39;
  color: #c9d9d4;
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.brand-light .brand-mark {
  background: #fff;
}
.brand-light .brand-copy strong {
  color: #fff;
}
.site-footer p:last-child {
  text-align: right;
  font-size: 13px;
}
.site-footer a:hover {
  color: #fff;
}
.simple-main {
  min-height: 70vh;
  background: var(--cream);
  padding: 80px 0;
}
.simple-card {
  max-width: 850px;
  background: #fff;
  margin: auto;
  padding: 50px;
  box-shadow: var(--shadow);
}
.mail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}
.mail-item {
  padding: 18px;
  border: 1px solid #dde7e3;
}
.mail-item small {
  display: block;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 81px;
    background: #fff;
    padding: 25px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green);
  }
  .hero {
    min-height: 720px;
  }
  .hero-image {
    object-position: 64% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(4, 63, 57, 0.95),
      rgba(7, 94, 84, 0.78)
    );
  }
  .intro-grid,
  .promise-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer p:last-child {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-note {
    left: 0;
    max-width: none;
    padding: 20px;
  }
  .section {
    padding: 72px 0;
  }
  .service-grid,
  .trust-row,
  .mail-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding: 34px 22px;
  }
  .simple-card {
    padding: 30px 22px;
  }
  .promise-list p {
    grid-template-columns: 35px 1fr;
  }
  .promise-list p strong {
    grid-column: 2;
  }
  .promise-list p {
    font-size: 14px;
  }
}
