:root {
  --cobalt: #1258a5;
  --cobalt-dark: #073f7d;
  --cobalt-soft: #dceaf8;
  --terra: #c65d3b;
  --terra-dark: #9a3d24;
  --cream: #fff3dd;
  --cream-deep: #f7dfb8;
  --ink: #26313a;
  --muted: #59646d;
  --white: #ffffff;
  --line: #a9c8e8;
  --shadow: 7px 7px 0 rgba(198, 93, 59, 0.16);
  --shadow-blue: 7px 7px 0 rgba(18, 88, 165, 0.13);
  --radius: 14px;
  --radius-lg: 28px;
  --content: 1180px;
  --display: "Nunito Sans", "Trebuchet MS", ui-rounded, sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 88, 165, 0.055) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 52%, #fffaf0 100%);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--cobalt-dark);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--terra-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid #f3b824;
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.relationship-bar {
  padding: 0.48rem 1rem;
  color: var(--white);
  background: var(--cobalt-dark);
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.relationship-bar strong {
  color: #ffdd9e;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(18, 88, 165, 0.2);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--content));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 4px solid var(--cobalt);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--terra);
}

.brand-mark::before {
  width: 17px;
  height: 6px;
  left: -8px;
  top: 12px;
  border-radius: 6px;
}

.brand-mark::after {
  width: 6px;
  height: 17px;
  right: 12px;
  bottom: -8px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.42rem;
}

.nav-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.45rem 0.72rem;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-chip:hover,
.nav-chip[aria-current="page"] {
  color: var(--cobalt-dark);
  background: var(--cobalt-soft);
  border-color: var(--line);
}

.header-call {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 0.92rem;
  color: var(--white);
  background: var(--terra-dark);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-call:hover {
  color: var(--white);
  background: var(--cobalt-dark);
}

.page-shell,
.section-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.hero {
  padding: clamp(3.5rem, 8vw, 7.3rem) 0 clamp(3rem, 7vw, 6.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--cobalt-dark);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 7px;
  background: var(--terra);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.018em;
}

p {
  margin: 0 0 1rem;
}

.hero-lede {
  max-width: 60ch;
  margin: 1.4rem 0 1.5rem;
  color: #3d4952;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.05rem;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 900;
  text-decoration: none;
}

.button--call {
  color: var(--white);
  background: var(--terra-dark);
  box-shadow: 5px 5px 0 var(--ink);
}

.button--call:hover {
  color: var(--white);
  background: var(--cobalt-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--quiet {
  color: var(--cobalt-dark);
  background: var(--white);
  border-color: var(--cobalt);
}

.availability-note {
  max-width: 54ch;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.triage-board {
  position: relative;
  min-height: 560px;
  padding: 1.15rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--cobalt-dark);
  border-radius: var(--radius-lg);
  box-shadow: 13px 13px 0 var(--cream-deep);
}

.board-label {
  position: absolute;
  z-index: 5;
  top: 1.05rem;
  left: 1.05rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  color: var(--white);
  background: var(--cobalt-dark);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #fffdf8, var(--cream));
}

.diagnostic-fallback,
.diagnostic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.diagnostic-fallback {
  transition: opacity 240ms ease;
}

.diagnostic-photo {
  z-index: 1;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.diagnostic-media.has-image .diagnostic-fallback {
  opacity: 0;
}

.diagnostic-media.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 63, 125, 0.04), rgba(38, 49, 58, 0.3));
  z-index: 2;
  pointer-events: none;
}

.visual-caption {
  position: absolute;
  z-index: 4;
  top: 1.05rem;
  right: 1.05rem;
  max-width: 230px;
  margin: 0;
  padding: 0.38rem 0.58rem;
  color: var(--white);
  background: rgba(38, 49, 58, 0.9);
  border-radius: 8px;
  font-size: 0.68rem;
  line-height: 1.35;
  text-align: right;
}

.pipe-path {
  stroke-dasharray: 940;
  stroke-dashoffset: 940;
}

.waterline-map {
  position: absolute;
  z-index: 6;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.mini-signal {
  min-height: 94px;
  padding: 0.75rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--cobalt);
  border-radius: 13px;
  box-shadow: 4px 4px 0 rgba(18, 88, 165, 0.16);
  text-decoration: none;
}

.mini-signal strong,
.mini-signal span {
  display: block;
}

.mini-signal strong {
  font-family: var(--display);
  font-size: 0.98rem;
  line-height: 1.2;
}

.mini-signal span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.mini-signal--call {
  color: var(--white);
  background: var(--terra-dark);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.mini-signal--call span {
  color: #fff0e9;
}

.safety-ribbon {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 2rem), var(--content));
  margin: -1.3rem auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff7d7;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safety-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: #f3b824;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 950;
}

.safety-ribbon p {
  margin: 0;
  font-size: 0.93rem;
}

.safety-ribbon a {
  font-weight: 850;
  white-space: nowrap;
}

.section {
  padding: clamp(4.2rem, 8vw, 7.5rem) 0;
}

.section--white {
  background: rgba(255, 255, 255, 0.75);
  border-block: 1px solid rgba(18, 88, 165, 0.14);
}

.section--blue {
  color: var(--white);
  background: var(--cobalt-dark);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.3rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--blue .section-head p,
.section--blue .eyebrow {
  color: #d9e9f9;
}

.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.problem-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 58px;
  left: 8%;
  width: 84%;
  height: 8px;
  background: var(--cobalt);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.problem-card {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 1.1rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--cobalt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
  text-decoration: none;
}

.problem-card:hover {
  color: var(--ink);
  border-color: var(--terra-dark);
  transform: translateY(-5px);
}

.problem-card .icon-wrap {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 1.8rem;
  place-items: center;
  color: var(--cobalt-dark);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.problem-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-weight: 900;
}

.room-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-areas:
    "kitchen bath utility"
    "kitchen multi multi";
  gap: 1rem;
}

.room-card {
  min-height: 220px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.room-card:nth-child(1) { grid-area: kitchen; }
.room-card:nth-child(2) { grid-area: bath; }
.room-card:nth-child(3) { grid-area: utility; }
.room-card:nth-child(4) { grid-area: multi; }

.room-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin-bottom: 1.1rem;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--cobalt-dark);
  border-radius: 50% 50% 50% 16%;
  font-family: var(--display);
  font-weight: 950;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  min-height: 270px;
  padding: 1.6rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 26px 26px 26px 8px;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -18px;
  width: 34px;
  height: 10px;
  background: var(--terra);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.step-card:last-child::after {
  display: none;
}

.step-index {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--terra-dark);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 950;
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 1.4rem;
}

.checklist-card,
.verify-card,
.content-card,
.signal-card {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: var(--white);
  border: 2px solid var(--cobalt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
}

.check-list,
.plain-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 0.72rem 0;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 19px;
  height: 19px;
  background: var(--cream);
  border: 2px solid var(--cobalt);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--terra);
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0.35rem;
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
}

.verify-card {
  align-self: start;
  background: var(--cream);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.verify-card .resource-link {
  display: block;
  margin-top: 0.85rem;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 850;
}

.call-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--terra-dark);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--ink);
}

.call-panel::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: 18%;
  bottom: -105px;
  border: 28px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.call-panel h2 {
  max-width: 17ch;
}

.call-panel p {
  max-width: 62ch;
  margin-top: 1rem;
  color: #fff0e9;
}

.call-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(38, 49, 58, 0.45);
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.call-number:hover {
  color: var(--white);
  background: var(--cobalt-dark);
}

.referral-note {
  margin: 1.35rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  border-left: 4px solid var(--terra);
  font-size: 0.9rem;
}

.faq-list {
  max-width: 900px;
  margin: 2.2rem auto 0;
}

.faq-list details {
  margin: 0.8rem 0;
  background: var(--white);
  border: 2px solid var(--cobalt);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(18, 88, 165, 0.1);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 3.5rem 1.15rem 1.2rem;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cobalt-dark);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--terra-dark);
}

.faq-answer {
  padding: 0 1.2rem 1.25rem;
  color: var(--muted);
}

.subhero {
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.breadcrumb {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  font-weight: 800;
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.52fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.subhero h1 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 5.2vw, 4.7rem);
}

.issue-ticket {
  padding: 1.5rem;
  background: var(--white);
  border: 3px solid var(--cobalt-dark);
  border-radius: 22px 22px 22px 6px;
  box-shadow: var(--shadow);
}

.ticket-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.62rem;
  color: var(--white);
  background: var(--cobalt-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clue-grid,
.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.clue-card,
.signal-card {
  min-height: 245px;
}

.clue-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.clue-card:nth-child(2n) {
  background: var(--cobalt-soft);
  border-color: var(--cobalt-dark);
}

.clue-mark {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--terra-dark);
  border-radius: 50% 50% 12px 50%;
  font-family: var(--display);
  font-weight: 950;
}

.quote-lines {
  display: grid;
  gap: 0.8rem;
}

.quote-line {
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-left: 6px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 4px 4px 0 rgba(198, 93, 59, 0.12);
  font-family: var(--display);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 1rem;
}

.source-note {
  padding: 1rem 1.15rem;
  background: #fff8dc;
  border: 1px solid #c89413;
  border-radius: 10px;
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.error-layout {
  min-height: 65vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  align-items: center;
  gap: 3rem;
  padding-block: 5rem;
}

.error-code {
  color: var(--cobalt);
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 15rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.route-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.route-list a {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--cobalt);
  border-radius: 12px;
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  padding: 3.2rem 0 6rem;
  color: #dbe8f4;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 950;
}

.footer-disclosure {
  max-width: 760px;
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.footer-small {
  margin-top: 1.5rem;
  color: #aab9c5;
  font-size: 0.78rem;
}

.mobile-call-dock {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .pipe-path {
    animation: draw-waterline 1.4s 180ms ease-out forwards;
  }

  .problem-card,
  .button,
  .mini-signal {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  }

  @keyframes draw-waterline {
    to { stroke-dashoffset: 0; }
  }
}

@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;
  }

  .pipe-path {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    padding-block: 0.7rem;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-chip {
    min-height: 36px;
    padding: 0.35rem 0.55rem;
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .triage-board {
    width: min(100%, 760px);
    min-height: 580px;
  }

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

  .problem-grid::before {
    top: 58px;
    left: 22%;
    width: 56%;
    height: calc(100% - 116px);
    background: transparent;
    border: 7px solid var(--cobalt);
  }
}

@media (max-width: 820px) {
  .relationship-bar {
    font-size: 0.76rem;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
  }

  .header-call {
    min-height: 42px;
  }

  .section-head,
  .subhero-grid,
  .prep-layout,
  .call-panel,
  .footer-grid,
  .error-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    gap: 1rem;
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "kitchen bath"
      "utility multi";
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .step-card::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 36px;
    width: 10px;
    height: 36px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 0.97rem;
    padding-bottom: 76px;
  }

  .relationship-bar {
    padding-inline: 0.7rem;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
  }

  .header-call {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr;
  }

  .nav-links {
    grid-column: auto;
  }

  .hero {
    padding-top: 3.25rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
  }

  .action-row .button--call {
    display: none;
  }

  .action-row .button--quiet {
    width: 100%;
  }

  .triage-board {
    min-height: 620px;
    padding: 0.7rem;
    border-width: 2px;
    box-shadow: 8px 8px 0 var(--cream-deep);
  }

  .waterline-map {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .mini-signal {
    min-height: 70px;
  }

  .safety-ribbon {
    grid-template-columns: auto 1fr;
  }

  .safety-ribbon > a {
    grid-column: 1 / -1;
  }

  .problem-grid,
  .room-grid,
  .clue-grid,
  .signal-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .problem-grid::before {
    top: 50px;
    bottom: 50px;
    left: 29px;
    width: 8px;
    height: auto;
    border: 2px solid var(--ink);
    background: var(--cobalt);
  }

  .problem-card {
    min-height: 0;
    padding-left: 5.2rem;
  }

  .problem-card .icon-wrap {
    position: absolute;
    top: 1rem;
    left: 0.8rem;
    width: 52px;
    height: 52px;
  }

  .room-grid {
    grid-template-areas: none;
  }

  .room-card:nth-child(1),
  .room-card:nth-child(2),
  .room-card:nth-child(3),
  .room-card:nth-child(4) {
    grid-area: auto;
  }

  .room-card {
    min-height: 0;
  }

  .call-panel {
    border-radius: 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .call-number {
    width: 100%;
  }

  .mobile-call-dock {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--white);
    background: var(--terra-dark);
    border: 3px solid var(--ink);
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--ink);
    font-family: var(--display);
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-call-dock:hover {
    color: var(--white);
    background: var(--cobalt-dark);
  }
}
