@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/b8c0e6116eab19c30e2529326bc6a459e7c851a9881acc7215dab22ec8014176.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/378aea0f5c1d179f4e0b5382c06bfc87571b98cfcc4fd1352bc979e2e2259c54.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/4ab00275cc496a478fce7baafe89ed44af875acf57655dfd1183ff22bd23829a.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/6a825b4824c01cbb401e829e5a066a1818411bcb3538b5a5792c5ca9b82343c3.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --municipal-blue: #0B4598;
  --valve-red: #D52B2F;
  --service-ink: #142534;
  --inspection-paper: #F4F8FA;
  --pipe-frost: #DCEAF2;
  --brass-route: #B6782D;
  --white: #ffffff;
  --muted-ink: #4f6878;
  --steel-line: #9eb5c2;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible Next", "Segoe UI", sans-serif;
  --utility: "IBM Plex Mono", "Cascadia Mono", monospace;
  color: var(--service-ink);
  background: var(--inspection-paper);
  font-family: var(--body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--inspection-paper);
  color: var(--service-ink);
  font-size: 1rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
li,
blockquote {
  overflow-wrap: anywhere;
}

p {
  max-width: 68ch;
  margin-block: 0 1rem;
}

a {
  color: var(--municipal-blue);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a,
summary {
  min-height: 44px;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--valve-red);
  outline-offset: 3px;
}

a:hover {
  color: var(--valve-red);
}

h1,
h2,
h3 {
  max-width: 22ch;
  margin-block: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.9rem);
}

h2 {
  color: var(--municipal-blue);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

ul,
ol {
  margin-block: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--service-ink);
  font-family: var(--utility);
  font-size: 0.78rem;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-band {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  min-height: 3.25rem;
  padding-inline: max(1.5rem, calc((100% - 76rem) / 2));
  border-bottom: 1px solid rgb(255 255 255 / 24%);
  background: var(--municipal-blue);
}

.utility-band::before {
  content: "";
  width: 0.6rem;
  margin-right: auto;
  background: var(--valve-red);
}

.utility-band a,
.utility-band span {
  display: inline-flex;
  align-items: center;
  padding-inline: 1rem;
  color: var(--white);
  font-family: var(--utility);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.utility-band a::before,
.utility-band span::before {
  content: "●";
  margin-right: 0.65rem;
  color: var(--pipe-frost);
  font-size: 0.62rem;
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(28rem, 2.2fr);
  grid-template-areas:
    "brand languages"
    "brand primary";
  align-items: stretch;
  width: min(100% - 3rem, 76rem);
  min-height: 6.5rem;
  margin-inline: auto;
  border-right: 1px solid var(--pipe-frost);
  border-left: 1px solid var(--pipe-frost);
  background: var(--white);
}

.site-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--pipe-frost);
  color: var(--service-ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 0.94;
  text-decoration: none;
}

.site-brand::before {
  content: "";
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  margin-right: 0.85rem;
  border: 0.28rem solid var(--municipal-blue);
  background: var(--white);
  box-shadow: 0.45rem 0.45rem 0 var(--brass-route);
}

.site-header nav {
  min-width: 0;
}

.site-header nav ul {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 0;
  list-style: none;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  height: 100%;
  padding: 0.6rem 0.9rem;
  border-right: 1px solid var(--pipe-frost);
  color: var(--service-ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.site-header nav a:hover {
  background: var(--pipe-frost);
  color: var(--municipal-blue);
}

.site-header nav[aria-label="Primary"] {
  grid-area: primary;
  min-height: 3.25rem;
  border-top: 1px solid var(--pipe-frost);
}

.site-header nav[aria-label="Languages"] {
  grid-area: languages;
  display: flex;
  justify-content: flex-end;
  min-height: 2.5rem;
  padding-left: 1rem;
}

.site-header nav[aria-label="Languages"] a {
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

main {
  border-top: 1px solid var(--steel-line);
}

.breadcrumb-nav {
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
  padding-block: 0.7rem;
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: "/";
  margin-inline: 0.5rem 0.25rem;
  color: var(--brass-route);
}

.breadcrumb-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.plumber-page {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(100% - 3rem, 76rem);
  margin-inline: auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.plumber-page > * {
  min-width: 0;
}

.page-hero {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  min-height: clamp(25rem, 42vw, 34rem);
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
  padding: 0;
  overflow: clip;
  border-top: 0.65rem solid var(--municipal-blue);
  border-bottom: 1px solid var(--steel-line);
  background: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(2rem, 8vw, 7rem);
  width: 2px;
  height: 72%;
  background: var(--brass-route);
}

.page-hero--with-media::before {
  display: none;
}

.page-hero::after {
  content: "01";
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 1.25rem;
  color: var(--brass-route);
  font-family: var(--utility);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.page-hero:not(.page-hero--with-media) .hero-copy {
  grid-column: 1 / -1;
}

.page-hero h1 {
  color: var(--municipal-blue);
}

.page-hero .answer-first {
  max-width: 42ch;
  margin: 1.75rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 4px solid var(--valve-red);
  color: var(--muted-ink);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-conversion {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 52px;
  margin-top: 1.75rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--valve-red);
  background: var(--valve-red);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.hero-conversion:hover {
  border-color: var(--municipal-blue);
  background: var(--municipal-blue);
}

.subject-card {
  grid-column: span 6;
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 0.42rem solid var(--municipal-blue);
  border-bottom: 1px solid var(--steel-line);
  background: var(--white);
}

.subject-card--area {
  border-top-color: var(--brass-route);
  background: var(--pipe-frost);
}

.subject-card h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.subject-card p[data-parity-key$="-name"],
.subject-card p[data-parity-key="area-served"] {
  color: var(--service-ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.proof-panel {
  grid-column: 1 / -1;
  margin-block: 0 2rem;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  background: var(--pipe-frost);
}

.proof-panel > h2 {
  margin-bottom: 1.5rem;
}

.rating-summary {
  margin: 0;
  color: var(--municipal-blue);
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

.proof-panel > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  padding: 1px;
  background: var(--steel-line);
  list-style: none;
}

.proof-panel > ul li {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--white);
}

.proof-panel strong,
.proof-panel small {
  font-family: var(--utility);
}

.proof-panel strong {
  color: var(--municipal-blue);
  font-size: 0.72rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.proof-panel--reviews {
  margin: 2rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.proof-panel--reviews blockquote {
  max-width: 72ch;
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-left: 0.35rem solid var(--brass-route);
  background: var(--white);
}

.proof-panel--reviews blockquote + blockquote {
  margin-top: 0.75rem;
}

.proof-panel--reviews footer {
  color: var(--muted-ink);
  font-family: var(--utility);
  font-size: 0.7rem;
}

.content-section {
  position: relative;
  grid-column: 2 / span 7;
  margin-block: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-left: 2px solid var(--brass-route);
  background: var(--white);
}

.content-section:nth-of-type(even) {
  grid-column: 5 / span 7;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: -0.52rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 0.2rem solid var(--brass-route);
  border-radius: 50%;
  background: var(--inspection-paper);
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section > p {
  color: var(--muted-ink);
}

.content-section[data-disposition="verified_fact"] {
  border-left-color: var(--municipal-blue);
}

.content-section[data-disposition="verified_fact"]::before {
  border-color: var(--municipal-blue);
}

.section-offerings {
  display: grid;
  gap: 1px;
  margin-top: 1.5rem;
  padding: 1px;
  background: var(--steel-line);
  list-style: none;
}

.section-offerings li {
  padding: 1.1rem;
  background: var(--inspection-paper);
}

.section-offerings strong {
  color: var(--municipal-blue);
}

.section-offerings .offering-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--municipal-blue);
  font-weight: 700;
}

.section-offerings p {
  margin: 0.35rem 0 0;
  font-size: 0.94rem;
}

.page-media {
  grid-column: 5 / -1;
  margin: clamp(2rem, 6vw, 5rem) 0;
  padding: 0 1rem 1rem 0;
  border-right: 1rem solid var(--pipe-frost);
  border-bottom: 1rem solid var(--pipe-frost);
}

.page-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--steel-line);
  object-fit: cover;
}

.page-media figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 1rem 0 0;
  color: var(--muted-ink);
  font-size: 0.84rem;
}

.page-hero--with-media .page-media--hero {
  grid-column: auto;
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  padding: 0.75rem;
  border: 0;
  background: var(--pipe-frost);
}

.page-hero--with-media .page-media--hero img {
  height: 100%;
  min-height: 22rem;
  aspect-ratio: auto;
}

.page-hero--with-media .page-media--hero figcaption {
  padding: 0.75rem 0.25rem 0.2rem;
}

.media-disclosure,
.media-credit {
  font-family: var(--utility);
  font-size: 0.68rem;
  letter-spacing: 0.025em;
}

.media-disclosure {
  color: var(--municipal-blue);
}

.article-review {
  grid-column: 2 / span 4;
  align-self: start;
  margin-block: 2rem;
  padding: 1.4rem;
  border-top: 0.35rem solid var(--brass-route);
  background: var(--pipe-frost);
  font-size: 0.86rem;
}

.article-review h2 {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.article-review time {
  font-family: var(--utility);
  font-size: 0.7rem;
}

.faq-panel {
  grid-column: 3 / span 8;
  margin-block: clamp(2.5rem, 7vw, 6rem);
}

.faq-panel > h2 {
  margin-bottom: 1.5rem;
}

.faq-panel details {
  border-top: 1px solid var(--steel-line);
  background: var(--white);
}

.faq-panel details:last-child {
  border-bottom: 1px solid var(--steel-line);
}

.faq-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  cursor: pointer;
  color: var(--service-ink);
  font-weight: 600;
}

.faq-panel summary::after {
  content: "+";
  margin-left: 1rem;
  color: var(--valve-red);
  font-family: var(--utility);
  font-size: 1.1rem;
}

.faq-panel details[open] summary::after {
  content: "−";
}

.faq-panel details p {
  margin: 0;
  padding: 0 1.1rem 1.25rem;
  color: var(--muted-ink);
}

.family-links {
  grid-column: 1 / -1;
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--steel-line);
  border-left: 1px solid var(--steel-line);
}

.family-links ul,
main > nav[aria-label="Related pages"] ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding: 0;
  list-style: none;
}

.family-links a,
main > nav[aria-label="Related pages"] a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  background: var(--white);
  color: var(--service-ink);
  font-weight: 600;
  text-decoration: none;
}

.family-links a::before,
main > nav[aria-label="Related pages"] a::before {
  content: "→";
  margin-right: 0.6rem;
  color: var(--brass-route);
  font-family: var(--utility);
}

.family-links a:hover,
main > nav[aria-label="Related pages"] a:hover {
  background: var(--municipal-blue);
  color: var(--white);
}

.conversion-panel {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--municipal-blue);
}

.conversion-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 15rem);
  min-height: 52px;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--white);
  background: var(--valve-red);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.conversion-link:hover {
  background: var(--white);
  color: var(--municipal-blue);
}

main > nav[aria-label="Related pages"] {
  width: min(100% - 3rem, 76rem);
  margin: -3rem auto clamp(3rem, 7vw, 6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  min-height: 13rem;
  padding: clamp(2.25rem, 5vw, 4rem) max(1.5rem, calc((100% - 76rem) / 2));
  border-top: 0.55rem solid var(--brass-route);
  background: var(--service-ink);
  color: var(--white);
}

.site-footer a {
  color: var(--white);
}

.site-footer address {
  max-width: 24ch;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

.site-footer section h2 {
  margin-bottom: 1rem;
  color: var(--pipe-frost);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer [data-parity-key="business-hours"] {
  font-size: 0.88rem;
}

.page-family--home .page-hero {
  min-height: clamp(29rem, 48vw, 38rem);
}

.page-family--home .page-hero h1 {
  max-width: 11ch;
  color: var(--service-ink);
}

.page-family--service-hub .page-hero,
.page-family--service-area-hub .page-hero,
.page-family--resource-hub .page-hero {
  border-top-color: var(--brass-route);
}

.page-family--service-hub .family-links,
.page-family--service-area-hub .family-links,
.page-family--resource-hub .family-links {
  grid-column: 2 / -1;
}

.page-family--service .page-hero {
  background: var(--pipe-frost);
}

.page-family--service .subject-card--service {
  grid-column: 2 / span 6;
}

.page-family--service-area .page-hero,
.page-family--city-service .page-hero {
  border-top-color: var(--brass-route);
}

.page-family--service-area .subject-card--area {
  grid-column: 5 / -1;
}

.page-family--city-service .subject-card--service {
  grid-column: 1 / span 6;
}

.page-family--city-service .subject-card--area {
  grid-column: 7 / -1;
}

.page-family--guide {
  padding-top: 2rem;
}

.page-family--guide .page-hero {
  grid-column: 3 / -1;
  min-height: 28rem;
  border-top-color: var(--brass-route);
}

.page-family--guide .content-section {
  grid-column: 4 / span 7;
}

.page-family--reviews .proof-panel {
  grid-column: 2 / -1;
}

.page-family--faq .faq-panel {
  grid-column: 2 / span 9;
}

.page-family--about .content-section {
  grid-column: 3 / span 7;
}

.page-family--contact .page-hero {
  grid-column: 1 / span 8;
  min-height: 25rem;
}

.page-family--contact .content-section {
  grid-column: 6 / -1;
  margin-top: -6rem;
}

.page-family--offers .page-hero,
.page-family--financing .page-hero {
  min-height: 25rem;
  border-top-color: var(--valve-red);
}

@media (max-width: 64rem) {
  .site-header {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(22rem, 1.45fr);
  }

  .site-header nav a {
    padding-inline: 0.6rem;
    font-size: 0.79rem;
  }

  .content-section,
  .content-section:nth-of-type(even) {
    grid-column: 2 / span 9;
  }

  .page-family--guide .page-hero,
  .page-family--guide .content-section {
    grid-column: 2 / -1;
  }
}

@media (max-width: 48rem) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "languages"
      "primary";
    width: min(100% - 2rem, 76rem);
  }

  .site-brand {
    min-height: 5rem;
    border-right: 0;
  }

  .site-header nav[aria-label="Languages"] {
    justify-content: flex-start;
    border-top: 1px solid var(--pipe-frost);
  }

  .site-header nav[aria-label="Primary"] {
    min-height: 0;
  }

  .site-header nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .site-header nav a {
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid var(--pipe-frost);
  }

  .breadcrumb-nav,
  .plumber-page,
  main > nav[aria-label="Related pages"] {
    width: min(100% - 2rem, 76rem);
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .page-family--home .page-hero {
    min-height: 0;
  }

  .page-hero::before {
    display: none;
  }

  .hero-copy {
    min-height: 0;
    padding: clamp(2.25rem, 8vw, 4rem) clamp(1.25rem, 6vw, 3rem);
  }

  .page-hero--with-media .page-media--hero {
    grid-column: 1;
  }

  .page-hero--with-media .page-media--hero img {
    min-height: 0;
    max-height: 22rem;
    aspect-ratio: 3 / 2;
  }

  .subject-card,
  .page-family--service .subject-card--service,
  .page-family--service-area .subject-card--area,
  .page-family--city-service .subject-card--service,
  .page-family--city-service .subject-card--area {
    grid-column: 1 / -1;
  }

  .proof-panel > ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-section,
  .content-section:nth-of-type(even),
  .page-family--guide .content-section,
  .page-family--about .content-section,
  .page-family--contact .content-section {
    grid-column: 1 / -1;
  }

  .page-media,
  .article-review,
  .faq-panel,
  .page-family--faq .faq-panel,
  .page-family--reviews .proof-panel {
    grid-column: 1 / -1;
  }

  .page-family--guide .page-hero,
  .page-family--contact .page-hero {
    grid-column: 1 / -1;
  }

  .page-family--contact .content-section {
    margin-top: 1rem;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 30rem) {
  body {
    font-size: 0.98rem;
  }

  .utility-band {
    min-height: 3.5rem;
    padding-inline: 1rem;
  }

  .utility-band::before {
    width: 0.35rem;
  }

  .utility-band a {
    padding-inline: 0.7rem;
    font-size: 0.68rem;
  }

  .site-header {
    width: 100%;
    border-inline: 0;
  }

  .site-brand {
    padding-inline: 1rem;
  }

  .site-header nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breadcrumb-nav,
  .plumber-page,
  main > nav[aria-label="Related pages"] {
    width: min(100% - 1.25rem, 76rem);
  }

  .breadcrumb-nav {
    overflow-x: auto;
    white-space: nowrap;
  }

  .page-hero {
    margin-bottom: 1.25rem;
  }

  .hero-copy {
    padding: 2.5rem 1.1rem 2rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero-conversion {
    width: 100%;
    justify-content: center;
  }

  .subject-card,
  .proof-panel,
  .content-section {
    padding: 1.35rem 1.1rem;
  }

  .content-section {
    margin-block: 0.65rem;
  }

  .content-section::before {
    top: 1.8rem;
  }

  .page-media {
    margin-block: 2rem;
    padding: 0 0.5rem 0.5rem 0;
    border-right-width: 0.5rem;
    border-bottom-width: 0.5rem;
  }

  .faq-panel {
    margin-block: 2.5rem;
  }

  .faq-panel summary {
    padding-inline: 0.85rem;
  }

  .family-links ul,
  main > nav[aria-label="Related pages"] ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .conversion-panel {
    justify-content: stretch;
    padding: 1rem;
  }

  .conversion-link {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding-inline: 1.25rem;
  }
}

@media (max-width: 23rem) {
  .site-header nav ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-brand {
    font-size: 1.7rem;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 16vw, 3.6rem);
  }

  .subject-card h2,
  .content-section h2,
  .faq-panel h2 {
    font-size: 2rem;
  }

  .content-section {
    border-left-width: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root,
  body {
    background: var(--white);
    color: #000000;
  }

  .skip-link,
  .utility-band,
  .site-header nav,
  .conversion-panel,
  .family-links,
  main > nav[aria-label="Related pages"] {
    display: none !important;
  }

  .site-header,
  .plumber-page,
  .breadcrumb-nav,
  .site-footer {
    width: 100%;
  }

  .site-header,
  .page-hero,
  .subject-card,
  .proof-panel,
  .content-section,
  .site-footer {
    break-inside: avoid;
    border-color: #000000;
    background: var(--white);
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}
