:root {
  --teal: #004f58;
  --teal-2: #006f78;
  --green: #7fb747;
  --green-2: #8cc63f;
  --ink: #17373a;
  --muted: #677b7c;
  --paper: #f7f8f4;
  --paper-2: #f0f2ec;
  --white: #ffffff;
  --line: #dde8df;
  --shadow: 0 24px 60px rgba(8, 50, 55, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--teal-2);
}

:focus-visible {
  outline: 3px solid rgba(140, 198, 63, 0.55);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal);
  font-size: 25px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--green);
}

.phone-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.phone-pill:hover,
.phone-pill:focus-visible,
.button:hover,
.button:focus-visible {
  background: var(--teal-2);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--teal);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--paper);
  color: var(--teal);
}

.section {
  padding: 100px 0;
}

.section.soft {
  background: var(--paper);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(35px, 4vw, 52px);
}

h3 {
  margin: 0 0 18px;
  font-size: 27px;
}

p {
  margin: 0 0 20px;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: 110px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 13%, rgba(127, 183, 71, 0.12), transparent 28%),
    linear-gradient(120deg, #ffffff 0%, #ffffff 48%, var(--paper) 48%, var(--paper) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -14% 0 40%;
  height: 58%;
  background: linear-gradient(145deg, transparent 0%, rgba(221, 232, 223, 0.55) 100%);
  clip-path: ellipse(58% 38% at 56% 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 50px;
}

.hero-line {
  width: 90px;
  height: 4px;
  margin: 28px 0 28px;
  background: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.hero-visual img {
  position: relative;
  width: min(640px, 100%);
  height: auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 300px;
  padding: 38px 30px;
  background: var(--paper);
  border: 1px solid rgba(221, 232, 223, 0.8);
}

.service-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf0e8;
}

.service-icon img {
  width: 44px;
  height: 44px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 90px;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 34px -80px -80px 18px;
  border: 2px solid rgba(127, 183, 71, 0.45);
  border-radius: 50% 44% 46% 52%;
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  flex: 0 0 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 13px;
  line-height: 1;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.75fr repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.process-title {
  padding-right: 20px;
}

.step {
  position: relative;
  min-height: 230px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.step-number {
  color: var(--green);
  font-family: var(--serif);
  font-size: 36px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.contact-map {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-panel {
  padding: 70px 60px;
  background: var(--teal);
  color: var(--white);
}

.contact-panel h2,
.contact-panel .eyebrow {
  color: var(--white);
}

.contact-panel .eyebrow {
  color: #a8d17d;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 34px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--white);
}

.hours {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hours strong {
  color: #c7e4a6;
}

.map-panel {
  position: relative;
  min-height: 440px;
  background: var(--paper);
}

.map-link {
  display: block;
  min-height: 440px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(22deg, transparent 0 34%, rgba(255, 255, 255, 0.94) 34% 38%, transparent 38% 100%),
    linear-gradient(84deg, transparent 0 49%, rgba(255, 255, 255, 0.94) 49% 53%, transparent 53% 100%),
    linear-gradient(148deg, transparent 0 56%, rgba(255, 255, 255, 0.94) 56% 60%, transparent 60% 100%),
    linear-gradient(172deg, transparent 0 41%, rgba(255, 255, 255, 0.94) 41% 45%, transparent 45% 100%),
    linear-gradient(10deg, transparent 0 61%, rgba(255, 255, 255, 0.94) 61% 66%, transparent 66% 100%),
    #eef1ec;
}

.map-link::before,
.map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-link::before {
  background:
    linear-gradient(98deg, transparent 0 34%, rgba(221, 229, 222, 0.9) 34% 35%, transparent 35% 100%),
    linear-gradient(30deg, transparent 0 43%, rgba(221, 229, 222, 0.9) 43% 44%, transparent 44% 100%),
    linear-gradient(160deg, transparent 0 62%, rgba(221, 229, 222, 0.85) 62% 63%, transparent 63% 100%);
}

.map-link::after {
  background:
    radial-gradient(circle at 14% 66%, rgba(127, 183, 71, 0.13) 0 12%, transparent 12.4%),
    radial-gradient(circle at 92% 18%, rgba(127, 183, 71, 0.08) 0 16%, transparent 16.4%);
}

.map-label {
  position: absolute;
  z-index: 1;
  color: rgba(72, 90, 91, 0.72);
  font-weight: 700;
  pointer-events: none;
}

.map-label.city {
  left: 10%;
  top: 42%;
  font-size: clamp(28px, 3.4vw, 46px);
}

.map-label.road {
  font-size: 15px;
  color: rgba(93, 111, 112, 0.48);
}

.road-one {
  left: 29%;
  top: 19%;
  transform: rotate(-18deg);
}

.road-two {
  left: 27%;
  top: 55%;
  transform: rotate(-13deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  left: 47%;
  top: 38%;
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 14px 28px rgba(0, 79, 88, 0.16);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--white);
}

.route-card {
  position: absolute;
  z-index: 3;
  right: clamp(26px, 8vw, 92px);
  top: 50%;
  width: min(430px, calc(100% - 52px));
  min-height: 210px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(221, 232, 223, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-card img {
  width: 108px;
  height: auto;
}

.route-copy,
.route-action {
  display: grid;
  line-height: 1.35;
}

.route-copy strong {
  color: var(--teal);
}

.route-copy span {
  color: var(--muted);
  font-weight: 650;
}

.route-action {
  grid-column: 1 / -1;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-template-columns: 1fr auto;
}

.map-link:hover .route-card,
.map-link:focus-visible .route-card {
  transform: translateY(-52%);
  box-shadow: 0 30px 70px rgba(8, 50, 55, 0.13);
}

.inline-map {
  margin-top: 28px;
}

.page-hero {
  padding: 82px 0;
  background: var(--paper);
}

.page-hero .lead {
  max-width: 720px;
}

.content-page {
  padding: 80px 0 100px;
}

.content-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
}

.side-note {
  position: sticky;
  top: 126px;
  align-self: start;
  padding: 30px;
  background: var(--paper);
  border-left: 5px solid var(--green);
}

.rich-text {
  max-width: 820px;
}

.rich-text h2 {
  margin-top: 48px;
  font-size: 36px;
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text h3 {
  margin-top: 34px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 760;
}

.rich-text ul,
.rich-text ol {
  padding-left: 22px;
  color: var(--muted);
}

.rich-text li {
  margin-bottom: 10px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 26px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  margin-bottom: 0;
  padding: 14px 16px 14px 42px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.info-box {
  padding: 30px;
  background: var(--paper);
  border-top: 4px solid var(--green);
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  width: 175px;
  margin-bottom: 22px;
}

.footer-col h2 {
  margin: 0 0 16px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  margin-top: 46px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 128px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    padding: 24px 20px 30px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .phone-pill {
    width: fit-content;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 54px;
  }

  .hero-grid,
  .about-grid,
  .contact-map,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .services-grid,
  .process-grid,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-title {
    grid-column: 1 / -1;
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-grid,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    display: block;
  }

  .services-grid,
  .process-grid,
  .contact-cols,
  .footer-grid,
  .info-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .phone-pill {
    width: 100%;
  }

  .contact-panel {
    padding: 54px 28px;
  }

  .hours {
    padding-left: 0;
    border-left: 0;
  }
}
