:root {
  --navy: #0b2344;
  --blue: #1557b0;
  --red: #e44133;
  --sky: #eaf2fc;
  --paper: #f7f8fa;
  --ink: #17212e;
  --muted: #586578;
  --line: #d9e0e9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: white;
  color: var(--ink);
  font-family: Archivo, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
}
.header {
  height: 80px;
  padding: 0 max(22px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo span {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.logo strong {
  font-size: 18px;
}
.header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.top-call {
  text-decoration: none;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.1;
}
.top-call small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  color: #bdd5f6;
  margin-bottom: 3px;
}
.hero {
  height: min(750px, calc(100vh - 80px));
  min-height: 650px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 22, 44, 0.97) 0%,
    rgba(7, 22, 44, 0.84) 36%,
    rgba(7, 22, 44, 0.12) 68%,
    transparent 100%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1200px) / 2));
  padding-top: 90px;
}
.label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #b9d5fa;
}
.label.blue {
  color: var(--blue);
}
h1,
h2 {
  font-family: Newsreader, serif;
  font-weight: 600;
  letter-spacing: 0;
}
h1 {
  font-size: 67.2px;
  line-height: 0.94;
  margin: 0 0 22px;
  max-width: 12ch;
}
h2 {
  font-size: 57.6px;
  line-height: 1;
  margin: 0 0 18px;
}
h3 {
  font-size: 21px;
  letter-spacing: 0;
  margin: 0;
}
.hero-copy > p:not(.label) {
  font-size: 18px;
  line-height: 1.7;
  color: #e3ecf7;
  max-width: 57ch;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
}
.button.red {
  background: var(--red);
  color: white;
}
.button.outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}
.button.navy {
  background: var(--navy);
  color: white;
}
.dispatch-line {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0 max(22px, calc((100vw - 1200px) / 2));
  min-height: 68px;
  align-items: center;
}
.dispatch-line > * {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.dispatch-line b {
  border-left: 0;
  padding-left: 0;
}
.dispatch-line span {
  font-size: 13px;
  font-weight: 600;
}
.proof-bar {
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px max(22px, calc((100vw - 1200px) / 2));
}
.proof-bar p {
  margin: 0;
  font-size: 18px;
}
.proof-bar a {
  font: 800 22px Archivo;
  text-decoration: none;
}
.departments {
  padding: 110px max(22px, calc((100vw - 1200px) / 2));
  background: var(--paper);
}
.departments > header {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  margin-bottom: 50px;
}
.departments > header .label {
  grid-column: 1;
}
.departments > header h2 {
  grid-column: 1;
  max-width: 10ch;
}
.departments > header > p:last-child {
  grid-column: 2;
  grid-row: 1/3;
  align-self: end;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 650px;
}
.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.department-grid article {
  background: white;
  padding: 30px;
  min-height: 305px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.department-grid article b {
  color: var(--blue);
  font-size: 12px;
}
.department-grid article p {
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.department-grid article a {
  margin-top: auto;
  font-weight: 700;
  color: var(--blue);
  text-underline-offset: 5px;
}
.response {
  background: var(--navy);
  color: white;
  padding: 100px max(22px, calc((100vw - 1200px) / 2));
}
.response-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  margin-bottom: 55px;
}
.response-head h2 {
  max-width: 14ch;
}
.response-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
}
.response-flow > div {
  border-top: 3px solid var(--red);
  padding-top: 24px;
  min-height: 210px;
}
.response-flow span {
  color: #9dc5f8;
  font-weight: 800;
}
.response-flow h3 {
  font-size: 24px;
  margin: 30px 0 10px;
}
.response-flow p {
  line-height: 1.6;
  color: #cbd9ea;
}
.response-flow i {
  height: 1px;
  background: #6b7f99;
}
.weather {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 110px max(22px, calc((100vw - 1200px) / 2));
  align-items: start;
}
.weather-copy > p:not(.label) {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.weather-board {
  background: var(--sky);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.weather-board > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid #b7cae4;
  position: relative;
}
.weather-board b {
  font-size: 16px;
}
.weather-board p {
  margin: 0;
  line-height: 1.6;
  color: #42536a;
}
.cloud {
  position: absolute;
  width: 220px;
  height: 80px;
  border-radius: 50px;
  background: #b7d4f6;
  right: -40px;
  top: -15px;
  opacity: 0.7;
}
.cloud:before,
.cloud:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #b7d4f6;
}
.cloud:before {
  width: 90px;
  height: 90px;
  top: -35px;
  left: 35px;
}
.cloud:after {
  width: 120px;
  height: 120px;
  top: -58px;
  right: 30px;
}
.home-guide {
  background: var(--blue);
  color: white;
  padding: 100px max(22px, calc((100vw - 1200px) / 2));
}
.home-guide header {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 45px;
}
.home-guide h2 {
  max-width: 12ch;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.guide-grid article {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  min-height: 260px;
}
.guide-grid span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bdd8fb;
}
.guide-grid h3 {
  margin: 42px 0 12px;
}
.guide-grid p {
  line-height: 1.6;
  color: #e0ecfb;
}
.decision {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 110px max(22px, calc((100vw - 1200px) / 2));
  background: var(--paper);
}
.decision-list p {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.decision-list b {
  color: var(--blue);
}
.decision-list span {
  line-height: 1.6;
  color: var(--muted);
}
.faq {
  padding: 110px max(22px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 19px;
  padding-right: 30px;
  position: relative;
}
summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  color: var(--red);
}
details[open] summary:after {
  content: "-";
}
.faq details p {
  line-height: 1.7;
  color: var(--muted);
}
.closing {
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 90px 22px;
}
.closing h2 {
  max-width: 850px;
  margin: 0 auto 12px;
}
.closing > p:not(.label) {
  color: #cbd9ea;
  font-size: 18px;
}
.closing .button {
  margin-top: 20px;
}
footer {
  padding: 50px max(22px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  align-items: center;
}
footer p,
footer small {
  color: var(--muted);
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  font-weight: 700;
}
.mobile-call {
  display: none;
}
@media (max-width: 850px) {
  .header {
    height: 66px;
    padding: 0 16px;
  }
  .header nav,
  .top-call {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 780px;
  }
  .hero > img {
    object-position: 62% center;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 22, 44, 0.93) 0%,
      rgba(7, 22, 44, 0.62) 58%,
      rgba(7, 22, 44, 0.88) 100%
    );
  }
  .hero-copy {
    margin-left: 20px;
    padding-top: 60px;
    width: calc(100% - 40px);
  }
  h1 {
    font-size: 54px;
  }
  .dispatch-line {
    display: none;
  }
  .proof-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .departments {
    padding: 80px 20px;
  }
  .departments > header,
  .response-head,
  .weather,
  .decision,
  .faq {
    grid-template-columns: 1fr;
  }
  .departments > header > *,
  .departments > header .label,
  .departments > header h2,
  .departments > header > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }
  .department-grid {
    grid-template-columns: 1fr;
  }
  .response {
    padding: 80px 20px;
  }
  .response-flow {
    grid-template-columns: 1fr;
  }
  .response-flow i {
    height: 30px;
    width: 1px;
    margin-left: 20px;
  }
  .weather {
    padding: 80px 20px;
    gap: 40px;
  }
  .weather-board {
    padding: 28px;
  }
  .weather-board > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-guide {
    padding: 80px 20px;
  }
  .home-guide header {
    align-items: flex-start;
    flex-direction: column;
  }
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
  .decision {
    padding: 80px 20px;
    gap: 30px;
  }
  .faq {
    padding: 80px 20px;
    gap: 25px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 45px 20px 100px;
  }
  footer nav {
    flex-wrap: wrap;
  }
  .mobile-call {
    position: fixed;
    display: flex;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    color: white;
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .mobile-call span {
    font-size: 13px;
  }
  .mobile-call a {
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }
}
@media (max-width: 540px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .decision-list p {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .hero-copy > p:not(.label) {
    font-size: 16px;
  }
}

.h1-location {
  display: block;
  margin-top: 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    padding-top: 34px;
  }
  .hero-copy h1 {
    font-size: 48px;
    line-height: 0.94;
    margin-bottom: 18px;
  }
  .hero-copy > p:not(.label) {
    line-height: 1.55;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-actions .button.red {
    display: none;
  }
  h2 {
    font-size: 48px;
    overflow-wrap: anywhere;
  }
  .departments > header {
    grid-template-columns: minmax(0, 1fr);
  }
  .departments > header > * {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 380px) {
  .hero {
    min-height: 640px;
  }
  .hero-copy {
    padding-top: 28px;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 44px;
  }
}

/* In-progress drain service imagery with a navy contrast layer. */
.response {
  background:
    linear-gradient(90deg, rgba(6, 24, 50, 0.97), rgba(11, 35, 68, 0.88)),
    url("/__site-assets/plumberedmondok.com/images/response-background.jpg?cfv=assetfix-20260513d-1789346645766") center 58% / cover no-repeat;
}

/* Final mobile fold and type guard. */
@media (max-width: 850px) {
  .hero {
    min-height: 0;
    padding-bottom: 26px;
  }
  .hero-copy {
    padding-top: 28px;
    padding-bottom: 18px;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 1;
  }
  h2 {
    font-size: 40px;
    line-height: 1.03;
  }
}
@media (max-width: 380px) {
  .hero-copy h1,
  h2 {
    font-size: 38px;
  }
}
