:root {
  --blue: #284828;
  --navy: #112716;
  --ice: #f5f7f1;
  --white: #ffffff;
  --orange: #b05820;
  --line: #ccd8c8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ice);
  color: var(--navy);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

embed-place-card-element {
  display: none !important;
}

.gm-inset-map {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgb(242 247 251 / 0.96);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 150px);
  height: auto;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 70px);
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 24px;
  padding: clamp(28px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgb(17 39 22 / 0.9), rgb(17 39 22 / 0.66), rgb(17 39 22 / 0.14)),
    url("assets/plumbing-hero-clean-repair-optimized.jpg")
      center / cover;
  color: white;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 16px;
  max-width: 820px;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
}

.hero__content .eyebrow {
  margin: 0;
}

.hero__content h1 + p {
  margin: 18px 0 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.82;
}

h3 {
  margin: 16px 0 0;
  font-size: 1.4rem;
}

p {
  color: rgb(17 39 22 / 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero p:not(.eyebrow),
.contact-strip p {
  color: rgb(255 255 255 / 0.76);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 22px;
  font-weight: 800;
}

.button--large {
  min-height: 64px;
  padding: 18px 28px;
  font-size: 1.05rem;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
}

.button--secondary {
  border: 1px solid rgb(255 255 255 / 0.36);
  color: white;
}

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

.hero__panel {
  align-self: end;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 8px;
  background: rgb(17 39 22 / 0.74);
  padding: 28px;
}

.hero__panel p {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__panel strong {
  display: block;
  margin-top: 10px;
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.hero__panel span {
  display: block;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.7);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 70px);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-list article {
  min-height: 270px;
  background: white;
  padding: 28px;
}

.service-list span {
  color: var(--orange);
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
}

.split-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 70px);
  background: white;
  border-block: 1px solid var(--line);
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  padding: clamp(72px, 10vw, 112px) clamp(20px, 5vw, 70px);
  background: var(--blue);
  color: white;
}

.contact-strip h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.contact-strip__copy {
  max-width: 780px;
}

.contact-strip__card {
  display: grid;
  gap: 16px;
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  padding: clamp(24px, 3vw, 34px);
}

.contact-strip__card span {
  color: var(--orange);
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-strip__phone {
  color: var(--blue);
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
}

address {
  color: rgb(17 39 22 / 0.72);
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.service-area-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ice);
  overflow: hidden;
}

.service-map {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgb(19 59 77 / 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgb(19 59 77 / 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, #e7eff4 0%, #f9fbfc 52%, #dceaf0 100%);
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.service-map::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  width: min(74%, 330px);
  aspect-ratio: 1;
  border: 3px solid rgb(176 88 32 / 0.82);
  border-radius: 50%;
  box-shadow: 0 0 0 999px rgb(17 39 22 / 0.48);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-map::after {
  content: "Primary coverage";
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  text-transform: uppercase;
  pointer-events: none;
}

.service-map__grid,
.service-map__river,
.service-map__route,
.service-map__pin {
  position: absolute;
}

.service-map__grid {
  inset: 7%;
  border: 1px solid rgb(19 59 77 / 0.16);
}

.service-map__river {
  top: -12%;
  bottom: -16%;
  left: 13%;
  width: 5rem;
  border-radius: 999px;
  background: rgb(66 122 145 / 0.18);
  transform: rotate(22deg);
}

.service-map__route {
  z-index: 1;
  background: rgb(19 59 77 / 0.18);
  box-shadow: 0 0 0 1px rgb(19 59 77 / 0.08);
}

.service-map__route--one {
  top: 47%;
  right: -8%;
  left: -8%;
  height: 2.1rem;
  transform: rotate(-8deg);
}

.service-map__route--two {
  top: -8%;
  bottom: -8%;
  left: 54%;
  width: 2.4rem;
  transform: rotate(9deg);
}

.service-map__pin {
  top: 43%;
  left: 52%;
  z-index: 3;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.75rem 0.9rem;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.service-area-list {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

.service-area-list p {
  margin: 0;
  color: var(--orange);
  font-family: Impact, "Arial Narrow", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.service-area-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--blue);
  font-weight: 800;
  list-style: none;
}

.service-area-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.service-area-list span {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.demo-disclosure {
  border-top: 1px solid var(--line);
  color: rgb(17 39 22 / 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin: 0 clamp(20px, 5vw, 70px) 24px;
  padding-top: 20px;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .hero,
  .split-band,
  .contact-strip,
  .service-area-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  section[id] {
    scroll-margin-top: 124px;
  }

  body {
    padding-top: 104px;
  }

  .site-header {
    align-items: center;
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    box-shadow: 0 1px 0 var(--line);
    transform: translateZ(0);
  }

  nav {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  nav a[href="#contact"] {
    display: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-map {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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