/* Beacon Plumbing — coral + lime. Fun, not cheap. Mobile first. */
:root {
  --coral: #FF3D2E;
  --coral-press: #D4271C;
  --lime: #C8F542;
  --lime-deep: #A5D11A;
  --bg: #FFF7F0;
  --bg-warm: #FFE8D6;
  --ink: #161616;
  --ink-soft: #3D3D3D;
  --white: #ffffff;
  --line: #F0D4C0;
  --shadow: 0 8px 24px rgba(255, 61, 46, 0.18);
  --radius: 14px;
  --max: 1120px;
  --header: 72px;
  --sticky: 72px;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --display: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky) + env(safe-area-inset-bottom));
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
mark {
  background: var(--lime);
  color: var(--ink);
  padding: 0 .12em;
  border-radius: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header);
  padding: 10px 18px;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; }
.nav-main {
  display: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-main a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}
.nav-main a:hover, .nav-main a[aria-current="page"] { background: var(--bg-warm); }
.nav-main a[aria-current="page"] { outline: 2px solid var(--ink); }
.header-cta { margin-left: auto; }
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.nav-sheet {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  padding: 12px;
  flex-direction: column;
}
.nav-sheet.open { display: flex; }
.nav-sheet a {
  text-decoration: none;
  font-weight: 700;
  padding: 14px 12px;
  min-height: 44px;
  border-radius: 10px;
}
.nav-sheet a:hover, .nav-sheet a[aria-current="page"] { background: var(--lime); }

/* Buttons — one coral action */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-coral:hover { background: var(--coral-press); }
.btn-coral:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-lime:hover { background: var(--lime-deep); }
.btn-lime:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-block { width: 100%; }
.note {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: .6rem 0 0;
}

/* Hero */
.hero {
  padding: 28px 18px 36px;
  border-bottom: 2px solid var(--ink);
}
.wrap { width: min(var(--max), calc(100% - 0px)); margin: 0 auto; max-width: var(--max); }
.hero .wrap, .section .wrap, .band .wrap, .site-footer .wrap { padding-left: 0; padding-right: 0; }
.hero, .section, .band, .site-footer { padding-left: 18px; padding-right: 18px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transform: rotate(-1.5deg);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.04em; line-height: 1.08; margin: 0 0 .5em; }
h1 { font-size: clamp(2.15rem, 7vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
.lede { font-size: 1.15rem; max-width: 38rem; color: var(--ink-soft); margin: 0 0 1.2rem; }
.split {
  display: grid;
  gap: 12px;
  margin: 1.2rem 0 .4rem;
}
.choice {
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}
.choice h3 { margin-bottom: .35em; }
.choice p { margin: 0 0 1rem; color: var(--ink-soft); }
.choice.emergency { background: var(--coral); color: var(--white); }
.choice.emergency p { color: rgba(255,255,255,.92); }
.choice.emergency .btn-coral {
  background: var(--white);
  color: var(--ink);
}

/* Sections */
.section { padding: 40px 18px; border-bottom: 2px solid var(--ink); }
.section.alt { background: var(--bg-warm); }
.grid-2, .grid-jobs {
  display: grid;
  gap: 12px;
}
.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  display: block;
}
.card:hover { background: var(--lime); }
.card h3 { margin: 0 0 .3em; }
.card p { margin: 0; color: var(--ink-soft); }
.card:hover p { color: var(--ink); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.steps li::before {
  content: counter(step);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}
.steps.lime li::before { background: var(--lime); color: var(--ink); }

.band {
  background: var(--coral);
  color: var(--white);
  padding: 36px 18px;
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.band h2 { color: var(--white); }
.band p { max-width: 36rem; margin: 0 auto 1rem; }
.band .btn-coral {
  background: var(--white);
  color: var(--ink);
}
.band .note { color: rgba(255,255,255,.9); }

.lime-band {
  background: var(--lime);
  color: var(--ink);
  padding: 28px 18px;
  border-bottom: 2px solid var(--ink);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--ink);
  font-size: .95rem;
}
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--lime); font-weight: 800; }
caption {
  text-align: left;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--display);
}
.fine { font-size: .88rem; color: var(--ink-soft); }
.source { font-size: .8rem; word-break: break-word; }

.review-slot {
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}
.review-slot strong { display: block; font-size: 1.15rem; margin-bottom: .4rem; }

details {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 4px 14px;
  margin-bottom: 8px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0 0 12px; color: var(--ink-soft); }

.site-footer {
  padding: 28px 18px 40px;
  background: var(--ink);
  color: var(--bg);
  font-size: .95rem;
}
.site-footer a { color: var(--lime); text-decoration: none; font-weight: 700; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 12px 0 18px; }
.tiny { opacity: .8; font-size: .85rem; }

/* Sticky mobile bar */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 2px solid var(--ink);
}
.sticky-bar .btn { min-height: 52px; box-shadow: none; width: 100%; font-size: 1rem; }

/* Modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22,22,22,.55);
  display: grid;
  place-items: end center;
  padding: 12px;
}
.modal-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 18px 18px 8px 8px;
  padding: 18px;
  width: min(480px, 100%);
  margin-bottom: calc(var(--sticky) + 8px);
  box-shadow: 8px 8px 0 var(--ink);
}
.modal-card h2 { font-size: 1.5rem; }
label { display: block; font-weight: 700; margin: 10px 0 4px; }
input, textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 88px; resize: vertical; }
.modal-actions { display: grid; gap: 8px; margin-top: 14px; }
.close-x {
  float: right;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.done-box {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
}

@media (min-width: 860px) {
  .menu-btn, .nav-sheet { display: none !important; }
  .nav-main { display: flex; }
  .split { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-jobs { grid-template-columns: 1fr 1fr; }
  .grid-jobs { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 24px 56px; }
  .section { padding: 56px 24px; }
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
  .modal { place-items: center; }
  .modal-card { margin-bottom: 0; border-radius: 18px; }
}
@media (min-width: 1100px) {
  .grid-jobs { grid-template-columns: repeat(3, 1fr); }
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: var(--lime); padding: 8px 12px; z-index: 90; }

/* ——— Pass 2: conversion + mobile + contrast ——— */
.site-header { position: sticky; top: 0; }
@media (max-width: 859px) {
  .header-cta { display: none; }
  .brand { font-size: 1.02rem; }
  .hero { padding-top: 22px; }
  h1 { letter-spacing: -0.045em; }
}

.btn:focus-visible,
.nav-main a:focus-visible,
.menu-btn:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.btn-coral { border-color: #8B140C; }
.choice.emergency { border-color: #8B140C; }
.band { background: #FF3D2E; }
.band .btn-coral { border-color: var(--ink); }

.sticker {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 1rem 0 .4rem; }

.checklist {
  display: grid;
  gap: 10px;
}
.check {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 12px;
}
.check b {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral); color: #fff;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 1.2rem;
  border: 2px solid var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-coral:active, .btn-lime:active { transform: none; }
  .kicker, .sticker { transform: none; }
}

code { font-size: .85em; background: var(--bg-warm); padding: 0 .25em; border-radius: 4px; }

.site-header { z-index: 60; }
.nav-sheet { z-index: 61; }

/* Make lime text never sit on white without a fill */
.lime-text { background: var(--lime); color: var(--ink); padding: 0 .15em; }

table a { color: var(--ink); font-weight: 700; text-decoration: underline; }

/* ——— Pass 3: thumb-zone + cheap-not ——— */
.sticky-bar .btn { font-size: 1.02rem; letter-spacing: -0.03em; }
.hero .btn-coral { min-width: min(100%, 280px); }
.band .btn-coral { min-width: min(100%, 240px); }
.choice.emergency h3, .choice h3 { font-size: 1.35rem; }
@media (max-width: 420px) {
  .sticky-bar .btn { font-size: .95rem; padding-left: 8px; padding-right: 8px; }
}

/* ——— Pass 4: interceptor, contrast, cost cards, form, thumb ——— */
.btn-xl {
  min-height: 64px;
  font-size: 1.2rem;
  width: 100%;
}
.btn-coral { text-shadow: 0 1px 0 rgba(0,0,0,.22); }
.choice.emergency .btn-coral,
.band .btn-coral { text-shadow: none; }
.band h2 { text-shadow: 0 1px 0 rgba(0,0,0,.18); }
.band p { font-weight: 700; font-size: 1.05rem; max-width: 38rem; }
.band .note {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid var(--ink);
  margin-top: 12px;
}
.choice.emergency p { color: #fff; font-weight: 600; }

body.page-emergency .sticky-bar {
  grid-template-columns: 1fr;
}
body.page-emergency .sticky-bar .btn-coral {
  min-height: 64px;
  font-size: 1.18rem;
}

.sticky-bar {
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.sticky-bar .btn { min-height: 56px; }

.hero-intercept { padding-bottom: 28px; }
.hero-intercept .lede { max-width: 34rem; }
.review-slot-compact {
  padding: 12px 14px;
  margin: 14px 0 0;
  font-size: .95rem;
}
.review-slot-compact strong { font-size: 1rem; margin-bottom: .2rem; }
.review-slot-compact p { margin: 0; color: var(--ink-soft); }

.intercept-form {
  margin-top: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 6px 6px 0 var(--ink);
}
.intercept-form h2 { font-size: 1.28rem; margin-bottom: .25em; }
.quiet-link {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.quiet-link a { font-weight: 800; text-underline-offset: 3px; }

.cost-grid { display: grid; gap: 12px; }
.cost-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px;
}
.cost-card h3 { margin: 0 0 6px; font-size: 1.12rem; }
.cost-range {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.45rem, 4vw, 1.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.cost-card .cost-note { margin: 0 0 10px; color: var(--ink-soft); }
.cost-card .source { margin: 0; }
.cost-footnote {
  margin-top: 14px;
  padding: 14px;
  background: var(--white);
  border: 2px dashed var(--ink);
  border-radius: 12px;
}
@media (min-width: 720px) {
  .cost-grid { grid-template-columns: 1fr 1fr; }
}

input, textarea { min-height: 52px; }
.field-hint { font-size: .82rem; color: var(--ink-soft); margin: 4px 0 0; font-weight: 600; }
.field-error { color: var(--coral-press); font-size: .88rem; font-weight: 700; margin: 6px 0 0; }
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--coral-press);
  background: #FFF1EE;
}
.consent { font-size: .85rem; color: var(--ink-soft); margin: 10px 0 0; }
.modal-card { max-height: min(90vh, 720px); overflow: auto; }

.close-x {
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  line-height: 1;
}

.btn-coral:focus-visible { outline-color: var(--lime); }

@media (max-width: 859px) {
  .site-header { padding: 8px 12px; min-height: 64px; }
  .menu-btn { min-width: 52px; min-height: 52px; }
  .hero { padding-top: 16px; padding-bottom: 22px; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.7rem); }
  .hero .lede { font-size: 1.05rem; margin-bottom: .9rem; }
  .choice { padding: 14px; }
  .choice p { margin-bottom: .7rem; font-size: 1rem; }
  .hero-intercept { padding-top: 14px; }
  .hero-intercept h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-intercept .btn-xl { margin-top: 4px; }
}
@media (max-width: 420px) {
  .sticky-bar .btn { font-size: 1rem; padding-left: 10px; padding-right: 10px; }
  body.page-emergency .sticky-bar .btn-coral { font-size: 1.12rem; }
}

.hero-actions .btn { width: 100%; }
@media (min-width: 860px) {
  .hero-actions .btn { width: auto; min-width: 280px; }
}

/* ——— Flick the mascot ——— */
.brand-flick {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero-row {
  display: grid;
  gap: 8px 20px;
  align-items: end;
  margin-bottom: 8px;
}
.hero-flick {
  margin: 8px 0 0;
  justify-self: center;
}
.hero-flick img {
  width: min(220px, 56vw);
  height: auto;
  filter: drop-shadow(5px 7px 0 rgba(22, 22, 22, 0.14));
}
.choice.emergency {
  position: relative;
  overflow: hidden;
}
.choice-flick {
  position: absolute;
  right: 6px;
  top: 4px;
  width: 72px;
  height: auto;
  pointer-events: none;
  transform: rotate(7deg);
  filter: drop-shadow(2px 3px 0 rgba(22, 22, 22, 0.18));
}
.choice.emergency h3,
.choice.emergency p,
.choice.emergency .btn {
  position: relative;
  z-index: 1;
}
.hero-call-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin: 1rem 0 .5rem;
}
.hero-call-row .btn-xl {
  flex: 1 1 auto;
  min-width: 0;
}
.flick-beside-cta {
  margin: 0;
  flex: 0 0 auto;
  pointer-events: none;
}
.flick-beside-cta img {
  width: 110px;
  height: auto;
  display: block;
  transform: rotate(5deg);
  filter: drop-shadow(4px 5px 0 rgba(22, 22, 22, 0.14));
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
}
.flick-foot {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .hero-row {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
  }
  .hero-flick { margin: 0; justify-self: end; }
  .hero-flick img { width: 240px; }
  .choice-flick { width: 88px; right: 10px; top: 8px; }
  .flick-beside-cta img { width: 140px; }
}
@media (max-width: 419px) {
  .flick-beside-cta img { width: 84px; }
  .choice-flick { width: 58px; }
  .brand-flick { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .choice-flick, .flick-beside-cta img { transform: none; }
}


/* ——— Refine pass 1: intercept + drains triage + sticky clarity ——— */
body.page-emergency .sticky-bar,
.sticky-bar-call {
  grid-template-columns: 1fr;
  background: #1a1a1a;
}
body.page-emergency .sticky-bar .btn-coral,
.sticky-bar-call .btn-coral {
  min-height: 64px;
  font-size: clamp(1.02rem, 3.8vw, 1.16rem);
  letter-spacing: -0.03em;
  box-shadow: 0 0 0 3px rgba(255, 61, 46, 0.38);
}
.sticky-bar .btn {
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}
.sticky-bar .btn-coral { color: #fff; }
.sticky-bar .btn-lime { color: var(--ink); }

@keyframes sticky-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 61, 46, 0.34); }
  50% { box-shadow: 0 0 0 6px rgba(255, 61, 46, 0.12); }
}
body.page-emergency .sticky-bar .btn-coral {
  animation: sticky-glow 2.8s ease-in-out infinite;
}

.checklist-skim { gap: 8px; }
.checklist-skim .check {
  padding: 10px 12px;
  align-items: center;
}
.checklist-skim .check div { font-size: 1.02rem; }
.checklist-skim .check strong { display: inline; }

.triage-split {
  display: grid;
  gap: 10px;
  margin: 0 0 1.1rem;
}
.triage {
  display: block;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--white);
}
.triage strong { display: block; font-family: var(--display); font-size: 1.12rem; letter-spacing: -0.03em; margin-bottom: .25em; }
.triage span { display: block; color: var(--ink-soft); font-weight: 600; font-size: 0.98rem; }
.triage-go {
  background: var(--coral);
  color: #fff;
  border-color: #8B140C;
}
.triage-go span { color: rgba(255,255,255,.94); }
.triage-go:hover { background: var(--coral-press); }
.triage-stay {
  background: var(--lime);
  color: var(--ink);
}
.triage-stay span { color: var(--ink); }

@media (min-width: 720px) {
  .triage-split { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  body.page-emergency .sticky-bar .btn-coral { animation: none; }
}
@media (max-width: 420px) {
  body.page-emergency .sticky-bar .btn-coral {
    font-size: 1.02rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ——— Polish: Flick size lock + never cover CTAs ——— */
.brand img,
.brand .brand-flick {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.choice.emergency {
  overflow: visible;
  padding-right: 92px;
}
.choice-flick {
  top: 50%;
  right: 10px;
  bottom: auto;
  width: 68px;
  transform: translateY(-50%) rotate(6deg);
  z-index: 0;
}
.choice.emergency h3,
.choice.emergency p,
.choice.emergency .btn {
  position: relative;
  z-index: 1;
}

.hero-call-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.hero-call-row .btn-xl {
  flex: 1 1 260px;
  width: auto;
  max-width: calc(100% - 140px);
  min-width: min(100%, 220px);
}
.flick-beside-cta {
  align-self: center;
  margin-left: 4px;
}
.flick-beside-cta img {
  width: 96px;
  transform: none;
}

@media (min-width: 720px) {
  .choice.emergency { padding-right: 108px; }
  .choice-flick { width: 80px; right: 12px; }
  .flick-beside-cta img { width: 112px; }
}
@media (max-width: 419px) {
  .brand-flick,
  .brand img,
  .brand .brand-flick { width: 44px; height: 44px; }
  .flick-beside-cta img { width: 96px; }
  .choice-flick { width: 56px; }
  .choice.emergency { padding-right: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  .choice-flick { transform: translateY(-50%); }
}


/* ——— Refine pass 2: drains stay-path conversion ——— */
.hero-stay-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin: 1rem 0 0.2rem;
}
.hero-stay-row .btn-lime.btn-xl {
  width: 100%;
  min-width: 0;
  max-width: none;
}
.hero-stay-row .btn-coral {
  width: 100%;
  min-width: 0;
  min-height: 52px;
}
body.page-drains .intercept-form {
  margin-top: 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 6px 6px 0 var(--ink);
}
body.page-drains .intercept-form h2 { font-size: 1.28rem; }
body.page-drains .quiet-link { margin-top: 12px; }

@media (min-width: 560px) {
  .hero-stay-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .hero-stay-row .btn-lime.btn-xl {
    flex: 1 1 220px;
    width: auto;
  }
  .hero-stay-row .btn-coral {
    flex: 0 1 168px;
    width: auto;
  }
}
@media (max-width: 390px) {
  .hero-stay-row { gap: 8px; }
  .hero-stay-row .btn-lime.btn-xl { font-size: 1.12rem; min-height: 60px; }
  .hero-stay-row .btn-coral { font-size: 1rem; }
}

/* ——— Refine pass 3: home + hot-water intercept ——— */
body.page-home .split { margin-bottom: .15rem; }
body.page-home .intercept-form,
body.page-hotwater .intercept-form {
  margin-top: 16px;
}
body.page-home .intercept-form h2,
body.page-hotwater .intercept-form h2 { font-size: 1.28rem; }
body.page-hotwater .quiet-link { margin-top: 12px; }
body.page-home .hero .note { max-width: 38rem; }

/* crumbs — five service pages */
.crumbs { padding: 10px 0 0; font-size: .92rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.crumbs li { color: var(--ink-soft); }
.crumbs li:not(:last-child)::after { content: \"→\"; margin-left: .35rem; color: var(--ink-soft); }
.crumbs a { text-decoration: underline; text-underline-offset: 2px; }
