* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: #13243b;
  font:
    17px/1.6 "Segoe UI",
    Arial,
    sans-serif;
  --accent: #164be0;
  --tint: #eaf1ff;
  --ink: #13243b;
}
body.moving {
  --accent: #f5cf40;
  --tint: #f5f2e8;
  --ink: #122c45;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
header,
main,
footer {
  max-width: 1320px;
  margin: auto;
}
header {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce2e8;
  gap: 24px;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 28px;
}
.moving .brand-icon {
  color: var(--ink);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.nav-cta {
  padding: 10px 19px;
  background: var(--ink);
  color: white;
  border-radius: 5px;
}
section {
  padding: 64px 40px;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 24px;
  font-weight: 800;
}
h1 {
  font-size: clamp(42px, 5.3vw, 74px);
  max-width: 850px;
}
h2 {
  font-size: clamp(32px, 3.5vw, 46px);
}
h3 {
  font-size: 25px;
}
p {
  margin: 0 0 22px;
}
ul,
ol {
  padding-left: 24px;
}
li {
  margin-bottom: 18px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #536777;
  margin-bottom: 22px;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 64px;
}
.intro {
  font-size: 20px;
  max-width: 650px;
  color: #4a5b6e;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 5px;
  padding: 16px 25px;
  font:
    750 16px "Segoe UI",
    Arial,
    sans-serif;
  cursor: pointer;
  margin: 10px 0 17px;
  min-height: 52px;
}
.moving .button {
  color: var(--ink);
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.small {
  font-size: 13px;
  color: #576777;
}
.hero-art {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--accent);
  border-radius: 8px;
  color: white;
}
.water-label {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  padding: 35px;
  position: relative;
  z-index: 1;
}
.water-label strong {
  color: #bfe9ff;
}
.hero-art svg {
  position: absolute;
  width: 100%;
  bottom: -8px;
  left: 0;
  fill: none;
}
.hero-art path {
  stroke: #fff;
  stroke-width: 44;
  stroke-linecap: round;
}
.hero-art .inner-pipe {
  stroke: #9bdcfb;
  stroke-width: 17;
}
.moving .hero-art {
  background: #173850;
  color: #fff;
  min-height: 440px;
}
.moving .hero-art path {
  stroke: #f5cf40;
  stroke-width: 8;
  stroke-dasharray: 12 10;
}
.moving .hero-art circle {
  fill: #f5cf40;
}
.route-label,
.route-end {
  position: absolute;
  left: 30px;
  top: 28px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.route-end {
  top: auto;
  bottom: 22px;
  left: auto;
  right: 25px;
}
.box {
  position: absolute;
  right: 35px;
  top: 45px;
  background: #e7b876;
  color: #173850;
  border: 2px solid #b08444;
  transform: rotate(-8deg);
  width: 170px;
  height: 150px;
  padding: 25px;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 12px 12px 0 #102638;
}
.strip {
  background: var(--tint);
  display: flex;
  justify-content: space-between;
  padding: 25px 40px;
  font-size: 14px;
  font-weight: 650;
  gap: 20px;
}
.section-heading {
  max-width: 660px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  padding: 28px;
  border: 1px solid #dce2e8;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  transition: background 0.15s;
}
.service-card:hover {
  background: var(--tint);
}
.service-card p {
  font-size: 15px;
  color: #536777;
}
.number {
  font-size: 13px;
  font-weight: 750;
  color: #60758b;
  display: block;
  margin-bottom: 36px;
}
.arrow {
  font-size: 28px;
}
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--tint);
  border-radius: 8px;
  margin: 0 40px;
  padding: 45px;
}
.place-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 25px;
}
.place-list a {
  padding: 14px 0;
  border-bottom: 1px solid #cbd5df;
  text-decoration: none;
  font-size: 16px;
}
.text-link {
  font-weight: 750;
}
.text-page {
  max-width: 900px;
  margin: auto;
  min-height: 55vh;
}
.text-page.wide {
  max-width: none;
}
.text-page h2 {
  font-size: 30px;
  margin-top: 38px;
}
.text-page li {
  line-height: 1.7;
}
.city-header {
  background: var(--tint);
  margin: 25px 40px 0;
  border-radius: 8px;
  padding: 50px;
}
.city-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 65px;
}
.city-content h2 {
  font-size: 32px;
  margin-top: 20px;
}
.city-content h3 {
  font-size: 23px;
  margin-top: 35px;
}
.city-content aside {
  background: #f3f6f9;
  padding: 28px;
  border-radius: 6px;
  align-self: start;
}
.city-content aside .place-list {
  display: block;
}
dl {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid #ddd;
}
dt,
dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}
dt {
  color: #607080;
}
.request-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.form-intro h1 {
  font-size: 52px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 20px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #91a2b2;
  border-radius: 4px;
  padding: 12px;
  margin-top: 7px;
  font:
    16px "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: white;
  min-width: 0;
}
textarea {
  resize: vertical;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 13px;
}
.consent input {
  width: 20px;
  flex-shrink: 0;
  min-height: 20px;
  margin-top: 2px;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.error,
.success {
  padding: 16px;
  border-radius: 4px;
  background: #ffebe7;
  color: #7b2414;
}
.success {
  background: #e8f5ee;
  color: #175036;
}
footer {
  padding: 65px 40px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  border-top: 1px solid #dce2e8;
  margin-top: 65px;
}
footer nav {
  flex-wrap: wrap;
  gap: 20px;
}
footer > .small {
  width: 100%;
}
footer p {
  font-size: 14px;
  margin: 10px 0;
}
.skip {
  position: absolute;
  left: 10px;
  top: -80px;
  background: #fff;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 5px;
}
:focus-visible {
  outline: 3px solid #de7a00;
  outline-offset: 4px;
}
@media (max-width: 850px) {
  header {
    padding: 20px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 19px;
  }
  nav {
    gap: 20px;
  }
  .hero,
  .location-section,
  .city-content,
  .request-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  section {
    padding: 42px 22px;
  }
  .hero-art {
    min-height: 320px;
  }
  .moving .hero-art {
    min-height: 330px;
  }
  .water-label {
    font-size: 42px;
  }
  .hero-art svg {
    width: 80%;
    left: auto;
    right: 0;
  }
  .hero h1 {
    max-width: 650px;
  }
  .strip {
    flex-wrap: wrap;
    padding: 25px 22px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-section {
    margin: 0 22px;
    padding: 30px;
  }
  .city-header {
    margin: 20px 20px 0;
    padding: 30px;
  }
  .request-layout {
    gap: 25px;
  }
  .form-intro h1 {
    font-size: 44px;
  }
  footer {
    padding: 40px 22px;
  }
}
@media (max-width: 500px) {
  header nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  header nav a {
    font-size: 12px;
  }
  .hero-art {
    min-height: 290px;
  }
  .service-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 24px;
  }
  .number {
    margin-bottom: 18px;
  }
  .form-grid {
    gap: 0;
  }
  .place-list {
    gap: 0 15px;
  }
  .place-list a {
    font-size: 14px;
  }
  .strip {
    display: block;
  }
  .strip span {
    display: block;
    margin: 8px 0;
  }
  h1 {
    font-size: 43px;
  }
  .intro {
    font-size: 18px;
  }
  .city-content {
    padding: 32px 22px;
  }
  .city-header h1 {
    font-size: 39px;
  }
  footer nav {
    gap: 15px;
  }
}

.plumbing .hero-art svg {
  height: 210px;
  bottom: 0;
}
.water-label {
  isolation: isolate;
}
@media (max-width: 850px) {
  .plumbing .hero-art svg {
    height: 135px;
  }
}
