:root {
  color-scheme: light;
  --ink: #273033;
  --muted: #5f6d6b;
  --line: #d8e5df;
  --panel: #ffffff;
  --soft: #f4fff9;
  --mist: #dff8ed;
  --teal: #009e75;
  --teal-dark: #006644;
  --logo-blue: #0067b1;
  --green: #009e75;
  --violet: #826ec3;
  --orange: #009e75;
  --charcoal: #4c5053;
  --shadow: 0 18px 44px rgba(0, 102, 68, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(216, 229, 223, 0.95);
  box-shadow: 0 8px 26px rgba(31, 57, 51, 0.08);
}

.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  min-height: 34px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: #009e75;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(142px, 18vw, 200px);
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #344f48;
  font-size: 0.95rem;
}

nav a {
  padding: 8px 0;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.quote-button svg,
.primary-action svg,
.secondary-action svg,
.contact-methods svg,
.contact-form button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  padding: 164px clamp(18px, 4vw, 56px) 32px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1578496479530-799fd6d0803a?auto=format&fit=crop&fm=jpg&q=78&w=2400");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 102, 68, 0.94), rgba(0, 102, 68, 0.62) 46%, rgba(0, 158, 117, 0.28)),
    linear-gradient(0deg, rgba(34, 43, 41, 0.46), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-bottom: 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6.3vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-content p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.primary-action {
  background: var(--orange);
  color: var(--ink);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

section:not(.hero) {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: #fff;
}

.intro p:last-child {
  margin: 0;
  font-size: 1.1rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.solutions {
  background: var(--mist);
}

.service-lines {
  display: grid;
  gap: 14px;
}

.service-line {
  overflow: clip;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 111, 88, 0.07);
}

.service-line summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 26px;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.service-line summary::-webkit-details-marker {
  display: none;
}

.summary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #009e75;
  color: var(--teal-dark);
}

.summary-icon svg,
.chevron {
  width: 20px;
  height: 20px;
}

.service-line strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.service-line small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.chevron {
  color: var(--teal-dark);
  transition: transform 0.2s ease;
}

.service-line[open] .chevron {
  transform: rotate(180deg);
}

.service-body {
  padding: 0 22px 24px 86px;
}

.service-intro {
  max-width: 820px;
  margin-bottom: 18px;
}

.service-intro h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

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

.category-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ngs-options {
  display: grid;
  gap: 14px;
}

.ngs-option {
  overflow: clip;
  background: rgba(0, 158, 117, 0.18);
  border: 1px solid #009e75;
  border-radius: 8px;
}

.ngs-option summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.service-line summary > span,
.ngs-option summary > span {
  display: block;
  min-width: 0;
  width: 100%;
}

.ngs-option summary::-webkit-details-marker {
  display: none;
}

.ngs-option strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.18rem;
  line-height: 1.25;
}

.ngs-option small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ngs-option[open] > summary .chevron {
  transform: rotate(180deg);
}

.ngs-breakdown {
  display: grid;
  gap: 16px;
  padding: 0 20px 20px;
}

.ngs-breakdown h5 {
  margin: 0 0 9px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.category-grid article {
  padding: 18px;
  background: rgba(0, 158, 117, 0.18);
  border: 1px solid #009e75;
  border-radius: 8px;
}

.category-grid h4 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.25;
}

.category-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.category-grid ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #009e75;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  background: #fff;
}

.contact-copy {
  align-self: center;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(0, 158, 117, 0.16);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #46535e;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cddbd4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form button {
  border: 0;
  background: var(--teal-dark);
  color: #fff;
  cursor: pointer;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #26312f;
  color: #fff;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

footer a {
  font-weight: 800;
}

@media (max-width: 920px) {
  .utility-bar {
    display: none;
  }

  .main-nav {
    min-height: 70px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .intro,
  .contact,
  .category-grid,
  .category-grid.two-up,
  .category-grid.three-up {
    grid-template-columns: 1fr;
  }

  .service-body {
    padding-left: 22px;
  }

}

@media (max-width: 560px) {
  .main-nav {
    min-height: 66px;
  }

  .brand {
    gap: 8px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 124px;
  }

  .quote-button {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .service-line summary {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 16px;
  }

  .summary-icon {
    width: 42px;
    height: 42px;
  }

  .service-body {
    padding: 0 16px 18px;
  }

  .ngs-option summary {
    position: relative;
    display: block;
    padding: 16px 48px 16px 16px;
  }

  .ngs-option summary .chevron {
    position: absolute;
    top: 21px;
    right: 16px;
    margin: 0;
  }

  .category-grid,
  .category-grid.two-up,
  .category-grid.three-up {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
  }
}
