:root {
  --ink: #101820;
  --ink-soft: #26323a;
  --muted: #5b6870;
  --line: #d8e0e2;
  --paper: #f6f8f7;
  --white: #ffffff;
  --green: #0e6b55;
  --green-dark: #074736;
  --yellow: #f6c647;
  --yellow-dark: #d99a00;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a,
.header-call,
.button,
.site-footer a {
  text-decoration: none;
}

.header-call {
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.72) 44%, rgba(16, 24, 32, 0.3) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.8) 0%, rgba(16, 24, 32, 0) 42%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(940px, 100%);
  padding: clamp(72px, 9vw, 136px) clamp(18px, 6vw, 72px) clamp(36px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 44px 0 0;
}

.quick-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 800;
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.notice-band h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 72px);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.intro .eyebrow,
.split .eyebrow,
.contact-panel .eyebrow {
  color: var(--green);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 216px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(16, 24, 32, 0.08);
}

.service-card p {
  color: var(--muted);
}

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: end;
  gap: 22px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.featured img,
.service-card.image-card img,
.split img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card.image-card {
  padding: 0;
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.steps span {
  grid-row: span 2;
  color: var(--yellow);
  font-weight: 950;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.areas {
  background: var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 10px 13px;
  color: var(--green-dark);
  background: #e9f4ef;
  border: 1px solid #cfe6da;
  border-radius: 999px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

summary {
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 6vw, 72px) clamp(58px, 8vw, 110px);
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

address {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-style: normal;
}

address span {
  color: var(--muted);
}

address a {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 950;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 72px) 88px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid rgba(16, 24, 32, 0.22);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .quick-facts,
  .intro-grid,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-inline: 18px;
  }

  .hero-actions,
  .notice-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-facts,
  .service-grid,
  .service-card.featured {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .service-card {
    grid-column: span 1;
  }

  .contact-panel {
    margin-inline: 18px;
  }
}
