/* ===========================================================================
   Same Day Plumber & Drain — Auburn Hills, Michigan
   ---------------------------------------------------------------------------
   One stylesheet. No frameworks, no utility soup.

   The colour system is lifted straight off the company's own van wrap and
   logo file: navy #313E83, gold #E4A130, red #C92729 — measured out of the
   logo PNG, not guessed. The measured brief palette (#304860 / #486078 /
   #181818) carries the deep grounds, the rules and the body ink, so the
   cool slate of the enrichment sits under the warm brand marks.

   The signature move is the WRAP SWEEP: the navy-and-gold diagonal from the
   side of their Chevy Express, redrawn in CSS and used as the transition
   between bands. Nothing else on the internet has it, because it is theirs.
   ======================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  /* brand — measured from the logo artwork */
  --navy:        #313e83;
  --navy-deep:   #212a5c;
  --navy-ink:    #151b3d;
  --gold:        #e4a130;
  --gold-lt:     #f5bb57;
  --gold-deep:   #b87d16;
  --red:         #c92729;
  --red-deep:    #9d1b1d;

  /* measured brief palette — grounds, rules, ink */
  --slate:       #486078;
  --slate-deep:  #304860;
  --ink:         #181818;

  /* neutrals */
  --paper:       #f3f5f8;
  --paper-warm:  #faf8f4;
  --white:       #ffffff;
  --line:        rgba(24, 24, 24, .12);
  --line-soft:   rgba(24, 24, 24, .07);
  --line-dark:   rgba(255, 255, 255, .16);
  --muted:       #5a6472;
  --muted-dark:  rgba(255, 255, 255, .74);

  /* type */
  --display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* rhythm */
  --gut: 20px;
  --band: 64px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(21, 27, 61, .10);
  --shadow: 0 14px 40px -18px rgba(21, 27, 61, .45);
  --shadow-lg: 0 30px 70px -30px rgba(21, 27, 61, .6);

  --hdr-h: 68px;
}

@media (min-width: 700px) {
  :root { --gut: 32px; --band: 88px; --hdr-h: 78px; }
}
@media (min-width: 1100px) {
  :root { --gut: 40px; --band: 112px; --hdr-h: 86px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;          /* Archivo Black ships one weight */
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; }

button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--navy-ink); }

.sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px; top: -80px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy-ink);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius);
  transition: top .18s ease;
}
.skip:focus { top: 12px; }

/* ----------------------------------------------------------------- shell */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--tight { max-width: 900px; }
.wrap--mid { max-width: 1080px; }

section { position: relative; }

.band { padding-block: var(--band); }
.band--sm { padding-block: calc(var(--band) * .66); }
.band--paper { background: var(--paper); }
.band--warm { background: var(--paper-warm); }
.band--white { background: var(--white); }

.band--navy {
  background: var(--navy-ink);
  color: var(--white);
}
.band--navy h2, .band--navy h3 { color: var(--white); }

.band--slate {
  background: var(--slate-deep);
  color: var(--white);
}
.band--slate h2, .band--slate h3 { color: var(--white); }

.band--ink {
  background: var(--ink);
  color: var(--white);
}

/* the wrap sweep — their van's navy/gold diagonal, redrawn */
.sweep {
  position: relative;
  height: 46px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: -1px;
}
.sweep--from-paper { background: var(--paper); }
.sweep svg { width: 100%; height: 100%; display: block; }
.sweep--up { transform: rotate(180deg); }
@media (min-width: 700px) { .sweep { height: 64px; } }

/* --------------------------------------------------------------- headings */
.kick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.kick::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--gold);
  flex: none;
}
.band--navy .kick, .band--slate .kick, .band--ink .kick { color: var(--gold-lt); }

.h-xl { font-size: clamp(34px, 9.4vw, 76px); }
.h-lg { font-size: clamp(29px, 7.2vw, 54px); }
.h-md { font-size: clamp(23px, 5.4vw, 36px); }
.h-sm { font-size: clamp(19px, 4.2vw, 25px); }

.hl { color: var(--gold); }           /* the two-tone accent word */
.hl-red { color: var(--red); }
.band--paper .hl, .band--white .hl, .band--warm .hl { color: var(--gold-deep); }

.lede {
  font-size: clamp(16px, 4.1vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
}
.band--navy .lede, .band--slate .lede, .band--ink .lede { color: var(--muted-dark); }

.sec-head { margin-bottom: 34px; }
.sec-head .lede { margin-top: 14px; }
@media (min-width: 900px) {
  .sec-head { margin-bottom: 48px; }
  .sec-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 40px;
    align-items: end;
  }
  .sec-head--split .lede { margin-top: 0; padding-bottom: 6px; }
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform .16s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--gold {
  background: var(--gold);
  color: var(--navy-ink);
  box-shadow: 0 6px 0 var(--gold-deep);
}
.btn--gold:hover { background: var(--gold-lt); }
.btn--gold:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--gold-deep); }

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 0 var(--red-deep);
}
.btn--red:hover { background: #d93b3d; }
.btn--red:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--red-deep); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 0 var(--navy-ink);
}
.btn--navy:hover { background: #3a4999; }
.btn--navy:active { transform: translateY(3px); box-shadow: 0 3px 0 var(--navy-ink); }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .18); box-shadow: inset 0 0 0 2px #fff; }

.btn--line {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy);
}
.btn--line:hover { background: var(--navy); color: var(--white); }

.btn--wide { width: 100%; }
@media (min-width: 560px) { .btn--wide { width: auto; } }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 560px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
}
.btn-row--center { align-items: stretch; }
@media (min-width: 560px) { .btn-row--center { justify-content: center; align-items: center; } }

/* text link with a gold underline that grows */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 28px 3px;
  background-position: 0 100%;
  transition: background-size .28s cubic-bezier(.2, .7, .3, 1), color .2s ease;
}
.tlink:hover { background-size: 100% 3px; }
.tlink svg { width: 16px; height: 16px; transition: transform .2s ease; }
.tlink:hover svg { transform: translateX(4px); }
.band--navy .tlink, .band--slate .tlink, .band--ink .tlink { color: var(--white); }

/* ------------------------------------------------------------------ header */
/* Always solid white — the van is a white truck with navy and gold on it, and
   the CLEAN LOGO LAW forbids a white plate behind a mark. A white bar lets the
   real full-colour lockup sit straight on the page at full strength. */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.hdr.solid { box-shadow: 0 1px 0 var(--line), 0 12px 34px -24px rgba(21, 27, 61, .55); }
.hdr.up { transform: translateY(-100%); }

.hdr__in {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hdr__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
  flex: none;
}
.hdr__logo img {
  height: 44px;
  width: auto;
  transition: height .25s ease;
}
@media (min-width: 700px) { .hdr__logo img { height: 52px; } }
@media (min-width: 1100px) { .hdr__logo img { height: 58px; } }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 3px;
    color: var(--ink);
    transition: color .2s ease, background-color .2s ease;
  }
  .nav a:hover { background: var(--paper); color: var(--navy); }
  .nav a[aria-current="page"] {
    box-shadow: inset 0 -3px 0 var(--gold);
    border-radius: 0;
    color: var(--navy);
  }
}

.hdr__cta { display: none; }
@media (min-width: 620px) {
  .hdr__cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    font-size: 15px;
    box-shadow: 0 4px 0 var(--gold-deep);
  }
  .hdr__cta:active { box-shadow: 0 2px 0 var(--gold-deep); }
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 10px;
  background: var(--paper);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}
@media (min-width: 1000px) { .burger { display: none; } }

/* mobile sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--navy-ink);
  color: var(--white);
  padding: 20px var(--gut) 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .34s cubic-bezier(.4, 0, .2, 1), visibility .34s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sheet.open { transform: translateY(0); visibility: visible; }
.sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sheet__top img { height: 46px; width: auto; }
.sheet__x {
  width: 46px; height: 46px;
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 3px;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.sheet nav { display: flex; flex-direction: column; }
.sheet nav a {
  font-family: var(--display);
  font-size: clamp(24px, 7vw, 32px);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: color .2s ease, padding-left .2s ease;
}
.sheet nav a:hover { color: var(--gold); padding-left: 8px; }
.sheet__foot { margin-top: auto; padding-top: 30px; display: grid; gap: 12px; }
.sheet__hours {
  font-size: 14px;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #37d17a;
  flex: none;
  box-shadow: 0 0 0 4px rgba(55, 209, 122, .22);
}

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: 640px;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--hdr-h) + 24px);
  padding-bottom: clamp(40px, 9vh, 88px);
  overflow: hidden;
  background: var(--navy-ink);
  isolation: isolate;
}
@media (min-width: 900px) { .hero { align-items: center; } }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
  animation: kb 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kb {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; transform: scale(1.03); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 27, 61, .80) 0%, rgba(21, 27, 61, .42) 26%, rgba(21, 27, 61, .55) 58%, rgba(21, 27, 61, .93) 100%),
    radial-gradient(120% 78% at 50% 62%, rgba(21, 27, 61, .18) 0%, rgba(21, 27, 61, .78) 100%);
}

.hero__in {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: var(--gut);
  text-align: center;
  color: var(--white);
}

/* the mascot roundel, floating — no plate, no box */
.hero__mark {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .55));
  animation: mark-in .8s cubic-bezier(.2, .8, .3, 1) both;
}
@media (min-width: 700px) { .hero__mark { width: 124px; height: 124px; margin-bottom: 22px; } }
@keyframes mark-in {
  from { opacity: 0; transform: translateY(14px) scale(.92); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .hero__mark { animation: none; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .34);
  backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

/* 10.8vw is measured, not guessed: "Leaks stopped." in Archivo Black at
   390px lands at ~338px inside a 350px content box, so the three lines stay
   three lines on the smallest phone we design for. */
.hero h1 {
  font-size: clamp(33px, 10.8vw, 82px);
  line-height: .96;
  letter-spacing: -.025em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
  margin-bottom: 18px;
}
.hero h1 .l2 { display: block; }

.hero__sub {
  font-size: clamp(16px, 4.3vw, 21px);
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
  max-width: 34ch;
  margin: 0 auto 26px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.hero .btn-row { justify-content: center; }
@media (max-width: 559px) { .hero .btn-row .btn { width: 100%; } }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .88);
  text-transform: uppercase;
}
.hero__trust li { list-style: none; display: flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* scroll cue */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  display: none;
}
.hero__cue::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: cue 1.9s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: .1; }
}
@media (min-width: 900px) and (min-height: 700px) { .hero__cue { display: block; } }
@media (prefers-reduced-motion: reduce) { .hero__cue::after { animation: none; } }

/* ------------------------------------------------------------- page hero */
.phero {
  position: relative;
  padding-top: calc(var(--hdr-h) + 54px);
  padding-bottom: 54px;
  background: var(--navy-ink);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 900px) { .phero { padding-top: calc(var(--hdr-h) + 92px); padding-bottom: 88px; } }
.phero__media { position: absolute; inset: 0; z-index: -2; }
.phero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  animation: kb 40s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .phero__media img { animation: none; } }
.phero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 27, 61, .88) 0%, rgba(21, 27, 61, .62) 45%, rgba(21, 27, 61, .93) 100%);
}
.phero h1 { font-size: clamp(32px, 8.6vw, 64px); margin-bottom: 16px; }
.phero .lede { color: rgba(255, 255, 255, .9); }
.phero .btn-row { margin-top: 26px; }

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
  list-style: none;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--gold-lt); }
.crumb li + li::before { content: "/"; margin-right: 6px; opacity: .55; }

/* ------------------------------------------------------- emergency strip */
.alert {
  background: var(--red);
  color: var(--white);
  padding-block: 22px;
}
.alert__in {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.alert__txt {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}
.alert__txt svg { width: 28px; height: 28px; flex: none; }
.alert__txt strong { font-family: var(--display); font-weight: 400; display: block; font-size: 19px; }
.alert .btn {
  background: var(--white);
  color: var(--red-deep);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .22);
  min-height: 50px;
}
.alert .btn:hover { background: #fff3f3; }
@media (min-width: 820px) {
  .alert__in { flex-direction: row; align-items: center; justify-content: space-between; gap: 26px; }
  .alert__txt strong { display: inline; font-size: 21px; }
  .alert__txt { font-size: 17px; }
}

/* ------------------------------------------------------------- pulse ring */
.pulse { position: relative; }
.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .8);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .pulse::after { animation: none; opacity: 0; } }

/* --------------------------------------------------------------- services */
.svc {
  display: grid;
  gap: 2px;
  background: var(--line);
}
@media (min-width: 640px) { .svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc { grid-template-columns: repeat(6, 1fr); } }

.svc__c {
  position: relative;
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: background-color .25s ease;
}
.svc__c:hover { background: var(--paper-warm); }

.svc__ph {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-deep);
}
.svc__ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.svc__c:hover .svc__ph img { transform: scale(1.06); }
.svc__ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21, 27, 61, 0) 45%, rgba(21, 27, 61, .5) 100%);
}

.svc__b {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 9px;
}
.svc__n {
  font-family: var(--display);
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: .06em;
}
.svc__c h3 { font-size: 21px; line-height: 1.08; }
.svc__c p { font-size: 15px; color: var(--muted); line-height: 1.5; }
.svc__go {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc__go svg { width: 15px; height: 15px; transition: transform .22s ease; }
.svc__c:hover .svc__go svg { transform: translateX(5px); }

/* deliberately uneven: the emergency card runs two-thirds wide, the rest
   sit in thirds, and the row breaks where the trade breaks — not a tidy
   nine-box grid. */
@media (min-width: 1000px) {
  .svc__c--w4 { grid-column: span 4; }
  .svc__c--w4 .svc__ph { aspect-ratio: 16 / 7.4; }
  .svc__c--w4 h3 { font-size: 30px; }
  .svc__c--w4 p { font-size: 16.5px; max-width: 54ch; }
  .svc__c--w4 .svc__b { padding: 30px 34px 34px; }
  .svc__c--w2 { grid-column: span 2; }
  .svc__c--w6 { grid-column: span 6; }
}

/* a compact list of everything else they do */
.more {
  margin-top: 2px;
  background: var(--navy-ink);
  color: var(--white);
  padding: 28px 26px 32px;
}
@media (min-width: 700px) { .more { padding: 34px 36px 38px; } }
.more h3 { font-size: 19px; margin-bottom: 16px; }
.more ul {
  display: grid;
  gap: 10px 26px;
  list-style: none;
  font-size: 15.5px;
}
@media (min-width: 560px) { .more ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .more ul { grid-template-columns: repeat(4, 1fr); } }
.more li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, .88); }
.more li svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }

/* --------------------------------------------- the full service list (hub) */
.alist { list-style: none; display: grid; gap: 0; }
@media (min-width: 900px) { .alist { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
.alist li { border-top: 1px solid var(--line); }
.alist li:last-child, .alist li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
@media (max-width: 899px) { .alist li:nth-last-child(2) { border-bottom: 0; } }
.alist a {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 6px 14px;
  align-items: center;
  padding: 20px 6px 22px 0;
  text-decoration: none;
  transition: padding-left .25s cubic-bezier(.2, .7, .3, 1), background-color .25s ease;
}
.alist a:hover { padding-left: 12px; background: var(--paper-warm); }
.alist__h {
  font-family: var(--display);
  font-size: clamp(18px, 4.4vw, 22px);
  line-height: 1.1;
}
.alist__p { grid-column: 1; font-size: 15px; color: var(--muted); line-height: 1.5; }
.alist__go {
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.alist__go svg { width: 18px; height: 18px; transition: transform .22s ease; }
.alist a:hover .alist__go svg { transform: translateX(4px); }

/* ------------------------------------------------------------ split feature */
.split {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 76px); }
  .split--wide-l { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
  .split--wide-r { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .split--flip .split__ph { order: 2; }
}

.split__ph {
  position: relative;
  margin-inline: calc(var(--gut) * -1);
}
@media (min-width: 900px) { .split__ph { margin-inline: 0; } }
.split__ph img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__ph--tall img { aspect-ratio: 3 / 4; }
@media (max-width: 899px) { .split__ph--tall img { aspect-ratio: 4 / 3; } }

/* a gold rule that anchors the photo to the grid, not a frame around it */
.split__ph::after {
  content: "";
  position: absolute;
  left: var(--gut); bottom: -12px;
  width: 96px; height: 6px;
  background: var(--gold);
}
@media (min-width: 900px) { .split__ph::after { left: 0; } }

.split__cap {
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.band--navy .split__cap, .band--slate .split__cap { color: var(--muted-dark); }

/* numbered reasons */
.reasons { list-style: none; display: grid; gap: 0; margin-top: 8px; }
.reasons li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.reasons li:last-child { border-bottom: 1px solid var(--line); }
.band--navy .reasons li, .band--slate .reasons li { border-color: var(--line-dark); }
.reasons b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--gold);
  letter-spacing: -.02em;
}
.reasons h3 { font-size: 18px; margin-bottom: 6px; }
.reasons p { font-size: 15.5px; color: var(--muted); }
.band--navy .reasons p, .band--slate .reasons p { color: var(--muted-dark); }

/* -------------------------------------------------------- feature band */
.feature {
  position: relative;
  color: var(--white);
  padding-block: clamp(70px, 16vw, 150px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-ink);
}
.feature__media { position: absolute; inset: 0; z-index: -2; }
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kb 46s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) { .feature__media img { animation: none; } }
.feature__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(21, 27, 61, .95) 0%, rgba(21, 27, 61, .84) 42%, rgba(21, 27, 61, .42) 100%);
}
.feature__in { max-width: 620px; }
.feature h2 { margin-bottom: 16px; }
.feature .lede { color: rgba(255, 255, 255, .9); }
.feature .btn-row { margin-top: 26px; }

.ticks { list-style: none; display: grid; gap: 11px; margin: 22px 0 0; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; }
.ticks svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--gold); }

/* ----------------------------------------------------------------- gallery */
.gal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 760px) { .gal { grid-template-columns: repeat(4, 1fr); } }
.gal figure { margin: 0; position: relative; overflow: hidden; background: var(--slate-deep); }
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform .8s cubic-bezier(.2, .7, .3, 1);
}
.gal figure:hover img { transform: scale(1.07); }
.gal figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 14px 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, rgba(21, 27, 61, 0), rgba(21, 27, 61, .88));
}
.gal .tall { grid-row: span 2; }
.gal .tall img { aspect-ratio: 1 / 2; }
@media (max-width: 759px) { .gal .tall { grid-row: span 1; } .gal .tall img { aspect-ratio: 1 / 1; } }
.gal .wide { grid-column: span 2; }
.gal .wide img { aspect-ratio: 2 / 1; }

/* ----------------------------------------------------------------- process */
.steps {
  display: grid;
  gap: 2px;
  background: var(--line);
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.band--navy .steps, .band--slate .steps { background: var(--line-dark); }

.steps > div {
  background: var(--white);
  padding: 26px 24px 30px;
  position: relative;
  counter-increment: step;
}
.band--navy .steps > div { background: var(--navy-ink); }
.band--slate .steps > div { background: var(--slate-deep); }
.steps > div::before {
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  letter-spacing: .08em;
}
.steps h3 { font-size: 19px; margin-bottom: 8px; }
.steps p { font-size: 15px; color: var(--muted); }
.band--navy .steps p, .band--slate .steps p { color: var(--muted-dark); }

/* --------------------------------------------------------------- van band */
.vans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 900px) { .vans { grid-template-columns: repeat(4, 1fr); } }
.vans figure { margin: 0; overflow: hidden; background: var(--slate-deep); }
.vans img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.vans figure:hover img { transform: scale(1.05); }
@media (min-width: 900px) {
  .vans figure:first-child { grid-column: span 2; }
  .vans figure:first-child img { aspect-ratio: 3 / 2; }
}

/* ------------------------------------------------------------- area list */
.areas {
  display: grid;
  gap: 8px 22px;
  list-style: none;
  margin-top: 26px;
  font-size: 15.5px;
}
@media (min-width: 560px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .areas { grid-template-columns: repeat(4, 1fr); } }
.areas li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .9);
}
.areas li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  flex: none;
  transform: rotate(45deg);
}
.areas li.is-home { color: var(--white); font-weight: 800; }
.areas li.is-home::before { background: var(--red); }

/* -------------------------------------------------------------------- faq */
.faq { display: grid; gap: 0; margin-top: 8px; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-family: var(--display);
  font-size: clamp(17px, 4.4vw, 21px);
  line-height: 1.2;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 15px; height: 15px;
  margin-top: -8px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq p { padding: 0 8px 22px 0; color: var(--muted); font-size: 16px; max-width: 68ch; }

/* ------------------------------------------------------------------- form */
.quote {
  background: var(--white);
  padding: 28px 22px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold);
}
@media (min-width: 700px) { .quote { padding: 38px 36px 40px; } }
.quote h2 { font-size: clamp(24px, 5.4vw, 32px); margin-bottom: 8px; }
.quote > p { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; }

.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--slate); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(49, 62, 131, .16);
}
.field input[aria-invalid="true"] { border-color: var(--red); }
.field--2 { display: grid; gap: 16px; }
@media (min-width: 560px) { .field--2 { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { margin-top: 14px; font-size: 15px; font-weight: 600; }
.form-msg.ok { color: #1f7a45; }
.form-msg.err { color: var(--red-deep); }
.form-msg .copy {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 11px 16px;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
.form-msg a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--navy);
}
.fine { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* contact rail */
.rail { display: grid; gap: 2px; background: var(--line-dark); margin-top: 26px; }
.rail a, .rail div {
  background: var(--navy-ink);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: var(--white);
  transition: background-color .2s ease;
}
.rail a:hover { background: var(--navy-deep); }
.rail svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.rail .k { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 3px; }
.rail .v { font-weight: 700; font-size: 16.5px; }
.rail .v small { display: block; font-weight: 400; font-size: 14px; color: rgba(255, 255, 255, .72); margin-top: 3px; }

/* -------------------------------------------------------------- cta band */
.cta {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(54px, 11vw, 96px);
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 15% 0%, rgba(228, 161, 48, .30) 0%, transparent 60%),
    radial-gradient(60% 100% at 100% 100%, rgba(201, 39, 41, .32) 0%, transparent 62%);
}
.cta > * { position: relative; }
.cta h2 { margin-bottom: 14px; }
.cta .lede { margin-inline: auto; color: rgba(255, 255, 255, .92); }
.cta .btn-row { margin-top: 28px; justify-content: center; }
.cta__note { margin-top: 20px; font-size: 14px; color: rgba(255, 255, 255, .78); }

/* ----------------------------------------------------------------- footer */
.ftr {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding-block: 54px 110px;
  font-size: 15px;
}
@media (min-width: 900px) { .ftr { padding-bottom: 54px; } }
.ftr__top {
  display: grid;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
@media (min-width: 760px) { .ftr__top { grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; } }
.ftr__logo { margin-bottom: 16px; }
.ftr__logo img { height: 56px; width: auto; }
.ftr h4 {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 800;
}
.ftr ul { list-style: none; display: grid; gap: 9px; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--gold-lt); }
.ftr__bot {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
}

/* -------------------------------------------------------------- call bar */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, .3);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.callbar.show { transform: none; }
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  background: var(--navy-ink);
  color: var(--white);
}
.callbar a svg { width: 19px; height: 19px; }
.callbar .is-call { background: var(--red); }
.callbar .is-quote { background: var(--gold); color: var(--navy-ink); }
@media (min-width: 900px) { .callbar { display: none; } }

/* ------------------------------------------------------------- utilities */
.center { text-align: center; }
.mt-l { margin-top: 32px; }
.mt-m { margin-top: 22px; }
.bleed { margin-inline: calc(var(--gut) * -1); }
@media (min-width: 1320px) { .bleed { margin-inline: 0; } }

.note {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  background: var(--paper-warm);
  border-left: 5px solid var(--gold);
  font-size: 15.5px;
  margin-top: 26px;
}
.note svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 2px; }

.cols2 { display: grid; gap: 26px; }
@media (min-width: 800px) { .cols2 { grid-template-columns: 1fr 1fr; gap: 44px; } }

.rich h3 { font-size: clamp(20px, 4.6vw, 26px); margin: 32px 0 12px; }
.rich h3:first-child { margin-top: 0; }
.rich p { color: var(--muted); font-size: 16.5px; line-height: 1.62; }
.rich ul { list-style: none; display: grid; gap: 10px; margin: 16px 0 0; }
.rich ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; }
.rich ul li svg { width: 18px; height: 18px; color: var(--gold-deep); flex: none; margin-top: 3px; }

/* the same prose block sitting on a dark band */
.band--navy .rich p, .band--slate .rich p, .band--ink .rich p { color: rgba(255, 255, 255, .8); }
.band--navy .rich ul li svg, .band--slate .rich ul li svg, .band--ink .rich ul li svg { color: var(--gold-lt); }
.band--navy .note, .band--slate .note {
  background: rgba(255, 255, 255, .07);
  border-left-color: var(--gold);
  color: rgba(255, 255, 255, .88);
}

.sticky-aside { position: static; }
@media (min-width: 1000px) {
  .sticky-aside { position: sticky; top: calc(var(--hdr-h) + 24px); }
}

/* ---------------------------------------------------------------- reveal */
.rv { opacity: 1; }
html.io .rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
html.io .rv.in { opacity: 1; transform: none; }
html.io .rv-d1 { transition-delay: .09s; }
html.io .rv-d2 { transition-delay: .18s; }
html.io .rv-d3 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  html.io .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ------------------------------------------------------------- 404 page */
.oops {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--hdr-h) + 60px) var(--gut) 80px;
  background: var(--navy-ink);
  color: var(--white);
}
.oops h1 { font-size: clamp(40px, 12vw, 90px); margin-bottom: 14px; }

/* ------------------------------------------------ short-viewport phones
   Landscape and the small older handsets: a 100svh hero with this much in
   it would push the CTAs off screen, so the hero stops trying to fill the
   screen and just sizes to its content. */
@media (max-height: 620px) and (min-width: 700px) {
  .hero { min-height: 560px; }
  .hero__mark { width: 84px; height: 84px; margin-bottom: 12px; }
  .hero__trust { margin-top: 18px; padding-top: 16px; }
}
@media (max-height: 560px) {
  .hero { min-height: 0; padding-bottom: 46px; }
  .hero__cue { display: none; }
}

/* ------------------------------------------------- keyboard + high contrast */
.svc__c:focus-visible, .alist a:focus-visible, .gal figure:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.rich a { color: var(--navy); font-weight: 700; }
.band--navy .rich a, .band--slate .rich a { color: var(--gold-lt); }

@media (prefers-contrast: more) {
  :root { --muted: #3c4552; --line: rgba(24, 24, 24, .3); }
  .hero__scrim { background: linear-gradient(180deg, rgba(10, 14, 34, .88), rgba(10, 14, 34, .92)); }
  .btn--ghost { background: rgba(0, 0, 0, .55); box-shadow: inset 0 0 0 2px #fff; }
}

/* ------------------------------------------------------------------ print */
@media print {
  .hdr, .sheet, .callbar, .hero__cue, .skip, .cta .btn-row, form { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero, .phero, .feature { min-height: 0; padding: 18pt 0; background: #fff; color: #000; }
  .hero__media, .phero__media, .feature__media, .hero__scrim, .phero__scrim, .feature__scrim { display: none; }
  .hero h1, .phero h1, .feature h2 { color: #000; text-shadow: none; }
  .band { padding-block: 16pt; }
  .band--navy, .band--slate, .band--ink, .cta { background: #fff !important; color: #000 !important; }
  .band--navy *, .band--slate *, .cta * { color: #000 !important; }
  .gal, .vans, .svc__ph { display: none; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
  .rv { opacity: 1 !important; transform: none !important; }
}
