/* ==========================================================================
   Duluth Handyman — site styles
   Design: deep harbor navy + brick red accents, Barlow type system.
   ========================================================================== */

:root {
  --navy: #14304f;
  --navy-deep: #0b1e33;
  --navy-mid: #1d4269;
  --red: #bf3b2b;
  --red-dark: #a02f22;
  --gold: #f2a81d;
  --ink: #1e2d3d;
  --slate: #48596c;
  --line: #dbe3ec;
  --bg: #f5f7fa;
  --bg-soft: #eef2f7;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(11, 30, 51, 0.08), 0 1px 2px rgba(11, 30, 51, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 30, 51, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 30, 51, 0.16);
  --radius: 10px;
  --radius-lg: 14px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", Arial, sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

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

a { color: var(--navy-mid); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red); }

::selection { background: var(--navy); color: #fff; }

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

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }
.container-narrow { width: min(880px, 100% - 40px); margin-inline: auto; }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: 0.2px;
  text-wrap: balance;
}

h1 { font-size: clamp(38px, 6vw, 60px); }
h2 { font-size: clamp(30px, 4.4vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 27px); }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--navy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); border-radius: 2px; }

.lede { font-size: 19px; color: var(--slate); max-width: 62ch; }

.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-inline: auto; }
.section-head h2 { margin-bottom: 12px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(191, 59, 43, 0.32); }
.btn-red:hover { background: var(--red-dark); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-soft); color: var(--navy-deep); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); color: #fff; }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-lg { font-size: 17.5px; padding: 17px 32px; }
.btn-sm { font-size: 14.5px; padding: 11px 18px; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy-deep);
  color: #c8d6e5;
  font-size: 13.5px;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding-block: 5px;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; flex: none; opacity: 0.85; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: none;
}
.logo-mark { width: 42px; height: 42px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.logo-text .logo-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.4px;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-text .logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 7px;
}
.nav > a:hover { color: var(--red); background: var(--bg-soft); }
.nav > a[aria-current="page"] { color: var(--red); }

/* Services dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 10px 13px;
  border-radius: 7px;
  cursor: pointer;
}
.nav-drop > button:hover { color: var(--red); background: var(--bg-soft); }
.nav-drop > button svg { width: 12px; height: 12px; transition: transform 0.15s ease; }
.nav-drop.open > button svg { transform: rotate(180deg); }
.drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 18px;
  /* Hidden by visibility rather than display so it can fade, and so it
     stays out of the tab order while closed. */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
/* Invisible bridge across the 10px gap, so the pointer can travel from the
   button down into the panel without the menu closing underneath it. */
.drop-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Open on hover (pointer devices only — :hover sticks after a tap on touch),
   on keyboard focus, and on click for touch users. */
@media (hover: hover) and (pointer: fine) {
  .nav-drop:hover > .drop-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-drop:hover > button { color: var(--red); background: var(--bg-soft); }
  .nav-drop:hover > button svg { transform: rotate(180deg); }
}
.nav-drop:focus-within > .drop-panel,
.nav-drop.open > .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop:focus-within > button svg { transform: rotate(180deg); }

/* The Service Areas panel is a short two-column list, not full-width links */
.nav-drop:last-of-type .drop-panel { min-width: 420px; }
.drop-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.drop-panel a:hover { background: var(--bg-soft); color: var(--red); }
.drop-panel .drop-all {
  grid-column: 1 / -1;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--red);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-left: 8px;
}
.header-phone svg { width: 34px; height: 34px; flex: none; color: var(--navy); background: var(--bg-soft); border-radius: 50%; padding: 8px; }
.header-phone .hp-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); line-height: 1.1; }
.header-phone .hp-num { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.header-phone:hover .hp-num { color: var(--red); }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle svg { width: 28px; height: 28px; color: var(--navy); }
.nav-toggle:hover { background: var(--bg-soft); }

/* ---------- Mobile drawer ----------
   A real slide-in panel: its own scroll, a backdrop, a close button, and
   the two things people actually came for (call / quote) pinned at the top.
   The long link lists collapse into groups so the panel opens as a short
   menu instead of a 27-item wall. */

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 22, 38, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.menu-backdrop.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  width: min(87vw, 390px);
  background: #fff;
  box-shadow: -12px 0 40px rgba(8, 22, 38, 0.28);
  transform: translateX(101%);
  /* visibility (not just transform) keeps the closed panel out of the tab
     order even in browsers without `inert` */
  visibility: hidden;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.28s;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }

.mm-head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.mm-head .logo-mark { width: 38px; height: 38px; }
.mm-head .logo-text .logo-top { font-size: 20px; }

.mm-close {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.mm-close svg { width: 22px; height: 22px; }
.mm-close:hover { color: var(--red); border-color: var(--red); background: #fdf2f0; }

.mm-actions {
  flex: none;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mm-actions .btn { width: 100%; min-height: 50px; }

/* The scrolling middle — the only part that moves */
.mm-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 6px 16px 18px;
  display: flex;
  flex-direction: column;
}
.mm-nav > a,
.mm-group > summary {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 6px 2px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-soft);
}
.mm-nav > a:hover, .mm-group > summary:hover { color: var(--red); }

.mm-group > summary {
  list-style: none;
  cursor: pointer;
  justify-content: space-between;
}
.mm-group > summary::-webkit-details-marker { display: none; }
.mm-group > summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.18s ease;
  flex: none;
}
.mm-group[open] > summary::after { transform: rotate(-135deg) translate(-3px, -3px); }

.mm-sub-list { display: flex; flex-direction: column; padding: 2px 0 10px; }
.mm-sub-list a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 4px 2px 4px 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  border-left: 2px solid var(--bg-soft);
}
.mm-sub-list a:hover { color: var(--red); border-left-color: var(--red); }

.mm-foot {
  flex: none;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  gap: 2px;
}
.mm-foot a {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.mm-foot a:hover { color: var(--red); }
.mm-foot span { font-size: 12.5px; color: var(--slate); }

/* Locked while the drawer is open — set by JS, which also preserves
   the scroll position that position:fixed would otherwise throw away. */
body.menu-open { position: fixed; width: 100%; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; }
  .menu-backdrop { transition: none; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(63, 118, 175, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1a3a5f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Duluth scene along the bottom edge of the hero — the hillside, the Aerial
   Lift Bridge and Lake Superior. Sits behind the content and fades out
   upward so headline text never loses contrast.

   TO USE A REAL PHOTO INSTEAD: set --hero-photo to url("/assets/your-photo.jpg")
   on .hero (or sitewide on :root). The illustration hides itself automatically
   and the same scrim keeps the text readable. See README "Imagery". */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--hero-photo, url("/assets/duluth-skyline.svg"));
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  opacity: 1;
}
/* When a photo is supplied it should cover the whole hero, not sit on the floor */
.hero[style*="--hero-photo"] .hero-scene,
:root[style*="--hero-photo"] .hero-scene {
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}
/* Scrim: keeps every headline legible over illustration or photo alike */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, rgba(11, 30, 51, 0.86) 30%, rgba(11, 30, 51, 0.45) 58%, rgba(11, 30, 51, 0.05) 82%, transparent 100%);
  pointer-events: none;
}
/* No decorative grid overlay here: the Duluth harbour illustration is the
   hero's texture, and a tiled hairline grid on top of it was just noise. */
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  /* Deep bottom padding leaves the Duluth scene a clear band of its own
     below the content, rather than hiding the bridge behind the quote card. */
  padding-block: 68px 190px;
}
.hero h1 { color: #fff; margin: 0 0 18px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-sub { font-size: 19px; color: #cddaea; max-width: 56ch; margin-bottom: 26px; }

.hero-points { list-style: none; display: grid; gap: 11px; margin: 0 0 30px; }
.hero-points li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; font-size: 16.5px; }
.hero-points svg { width: 21px; height: 21px; flex: none; color: var(--gold); margin-top: 2px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }

/* Deliberately NOT flex: this is a run of inline text, and flex would make
   the <strong> and the surrounding text separate items that wrap as columns. */
.hero-proof { font-size: 14.5px; color: #b9c9db; line-height: 1.55; }
.hero-proof .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.hero-proof strong { color: #fff; }

/* Quote card */
.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 30px 26px;
}
.quote-card h2, .quote-card h3 {
  font-size: 27px;
  margin-bottom: 4px;
}
.quote-card .qc-sub { font-size: 14.5px; color: var(--slate); margin-bottom: 18px; }
.quote-card .qc-fine { font-size: 12.5px; color: var(--slate); margin-top: 12px; line-height: 1.45; }

/* ---------- Forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid .field-full { grid-column: 1 / -1; }

.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 66, 105, 0.14);
}
.form-note { font-size: 13px; color: var(--slate); }

/* File input + chosen-photo list */
.field input[type="file"] {
  padding: 11px 13px;
  font-size: 16px; /* under 16px makes iOS zoom the page on focus */
  cursor: pointer;
  background: #fff;
  border-style: dashed;
  border-width: 2px;
}
.field input[type="file"]:hover { border-color: var(--navy-mid); background: var(--bg); }
.field input[type="file"]::file-selector-button {
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  padding: 9px 15px;
  margin-right: 12px;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button:hover { background: var(--navy-deep); }
.file-help { font-size: 12.5px; color: var(--slate); margin-top: 6px; }
.field-help { font-size: 13px; color: var(--slate); margin: -2px 0 9px; }

/* ---------- Task list (one line per job) ---------- */

.task-list { display: grid; gap: 9px; }

.task-row { display: flex; align-items: center; gap: 9px; }

.task-num {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-soft);
  font-variant-numeric: tabular-nums;
}
.task-row input { flex: 1; min-width: 0; }

.task-remove {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--slate);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.task-remove:hover { color: var(--red); border-color: var(--red); background: #fdf2f0; }
/* A single remaining row has nothing to remove. */
.task-list[data-count="1"] .task-remove { visibility: hidden; }

.task-add {
  margin-top: 11px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px dashed #c3d0de;
  border-radius: 8px;
  padding: 11px 16px;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.task-add:hover { border-color: var(--navy-mid); color: var(--red); background: #fff; }

@media (max-width: 860px) {
  .task-remove { width: 44px; height: 44px; font-size: 22px; }
  .task-add { min-height: 48px; font-size: 15.5px; }
  .task-num { width: 24px; height: 24px; font-size: 14px; }
  .task-row { gap: 7px; }
}
.file-list { list-style: none; margin-top: 8px; display: grid; gap: 5px; }
.file-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-all;
}
.file-list li::before { content: "🖼"; flex: none; }

/* Honeypot — hidden from people, irresistible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 8px; font-size: 15px; font-weight: 600; }
.form-status.ok { display: block; background: #e8f5ec; color: #1d6b37; border: 1px solid #bfe3ca; }
.form-status.err { display: block; background: #fdecea; color: #9c2b1f; border: 1px solid #f3c4bd; }

/* ---------- Sections ---------- */

.section { padding-block: 84px; }
.section-alt { background: var(--bg); }
.section-navy { background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lede { color: #c4d3e3; }

/* Trust bar */
.trustbar { background: var(--navy-deep); color: #fff; }
.trustbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 28px;
  padding-block: 20px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; justify-content: center; }
.trust-item svg { width: 26px; height: 26px; flex: none; color: var(--gold); }

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #b9c8d8;
  color: var(--ink);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.18s ease;
}
/* The icon tile answers the hover in brand red — a functional response
   rather than a decorative rail. */
.svc-card:hover .svc-icon { background: linear-gradient(150deg, var(--red-dark), var(--red)); }
.svc-icon svg { width: 28px; height: 28px; color: #ffd98a; transition: color 0.18s ease; }
.svc-card:hover .svc-icon svg { color: #fff; }
.svc-card h3 { font-size: 22px; }
.svc-card p { font-size: 15px; color: var(--slate); flex: 1; }
.svc-more { font-size: 14.5px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.svc-more svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.svc-card:hover .svc-more svg { transform: translateX(3px); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}
/* These really are a sequence, so the connector encodes something true:
   step 1 leads to 2 leads to 3. */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -24px;
  width: 24px;
  border-top: 2px dashed #c3d0de;
}
@media (max-width: 980px) {
  .step:not(:last-child)::after { display: none; }
}
.step-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--slate); }

/* Price strip */
.price-strip { background: linear-gradient(140deg, var(--navy-deep), var(--navy-mid)); color: #fff; }
.price-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: 40px; flex-wrap: wrap; }
.price-strip h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 6px; }
.price-strip p { color: #c8d6e5; font-size: 16.5px; max-width: 60ch; }
.price-strip strong { color: var(--gold); }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
/* Bordered like every other card on the site rather than wearing an accent
   rail — the red lives in the icon tile, which is where it means something. */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}
.why-card svg {
  width: 30px;
  height: 30px;
  color: var(--red);
  margin-bottom: 16px;
  padding: 11px;
  box-sizing: content-box;
  background: #fdf0ed;
  border-radius: 12px;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 15.5px; color: var(--slate); }

.guarantee {
  margin-top: 34px;
  background: #fff8ea;
  border: 1px solid #eddaae;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee svg { width: 30px; height: 30px; flex: none; color: var(--gold); margin-top: 2px; }
.guarantee strong { color: var(--navy); }
.guarantee p { font-size: 15.5px; color: #5b5340; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
/* Oversized quote glyph, set low-contrast so it reads as paper texture */
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -26px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 130px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.055;
  pointer-events: none;
}
.review-card .stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; }
.review-card blockquote { font-size: 15.5px; color: var(--ink); flex: 1; }
.review-card figcaption { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-card figcaption span { display: block; font-weight: 500; color: var(--slate); font-size: 13px; }

/* Split cards (who we serve) */
.split-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.split-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; }
.split-card h3 { margin-bottom: 8px; }
.split-card p { font-size: 15px; color: var(--slate); margin-bottom: 14px; }
.split-card ul { list-style: none; display: grid; gap: 8px; }
.split-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; font-weight: 600; }
.split-card li svg { width: 17px; height: 17px; flex: none; color: var(--red); margin-top: 2px; }

/* Seasonal */
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.season-card { border-radius: var(--radius-lg); padding: 32px 30px; color: #fff; position: relative; overflow: hidden; }
.season-card.winter { background: linear-gradient(150deg, #12293f, #295a80); }
.season-card.summer { background: linear-gradient(150deg, #3c5a20, #6c8f3a); }
.season-card h3 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.season-card p { font-size: 15.5px; color: rgba(255, 255, 255, 0.88); margin-bottom: 16px; max-width: 52ch; }
.season-tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255, 255, 255, 0.16); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px; }

/* Service area */
.area-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.radius-card {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
}
.radius-ring {
  width: 168px;
  height: 168px;
  margin: 6px auto 18px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  position: relative;
}
.radius-ring::before { content: ""; position: absolute; inset: 22px; border-radius: 50%; border: 1.5px dashed rgba(255, 255, 255, 0.22); }
.radius-ring .rr-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.radius-ring .rr-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #c8d6e5; }
.radius-card h3 { color: #fff; margin-bottom: 6px; }
.radius-card p { font-size: 14.5px; color: #c8d6e5; }

.town-cols h3 { font-size: 19px; margin: 0 0 10px; }
.town-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.town-chips a, .town-chips span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
}
.town-chips a:hover { border-color: var(--navy-mid); color: var(--red); background: #fff; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  flex: none;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red); }
.faq-body { padding: 0 22px 20px; color: var(--slate); font-size: 15.5px; }
.faq-body p + p { margin-top: 10px; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 320px at 12% 120%, rgba(242, 168, 29, 0.22), transparent 60%),
    linear-gradient(140deg, var(--red-dark), var(--red));
  color: #fff;
  text-align: center;
}
.cta-band .container { padding-block: 72px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.92); font-size: 18px; max-width: 58ch; margin: 0 auto 28px; }
.cta-band .btn-white { color: var(--red-dark); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(155deg, var(--navy-deep), var(--navy) 70%, #1a3a5f);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Interior pages get the same Duluth scene, pulled back so it reads as
   texture rather than a second hero image. */
.page-hero .hero-scene { opacity: 0.55; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(11, 30, 51, 0.66) 46%, rgba(11, 30, 51, 0.42) 100%);
  pointer-events: none;
}
/* Same here — the scene carries the texture, no grid overlay needed. */
.page-hero .container { position: relative; padding-block: 58px 62px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(34px, 5vw, 52px); }
.page-hero .lede { color: #cddaea; }
.page-hero .hero-actions { margin: 26px 0 0; }

.crumbs { font-size: 13.5px; color: #9db2c7; margin-bottom: 20px; }
.crumbs a { color: #c8d6e5; text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-current] { color: #fff; font-weight: 600; }

/* Checklists */
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 36px; list-style: none; }
.check-cols li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; font-weight: 600; padding: 4px 0; }
.check-cols li svg { width: 20px; height: 20px; flex: none; color: var(--red); margin-top: 3px; }
.check-cols li small { display: block; font-weight: 500; color: var(--slate); font-size: 14px; }

/* Local note */
/* A tinted panel is enough to set this aside from body copy; the heading
   does the rest. No accent rail. */
.local-note {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-block: 42px;
}
.local-note h3 { font-size: 21px; margin-bottom: 8px; }
.local-note p { font-size: 15.5px; color: var(--slate); }

/* Job table */
.job-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 15.5px; }
.job-table th { background: var(--navy); color: #fff; text-align: left; font-family: var(--font-body); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; padding: 13px 18px; }
.job-table td { padding: 13px 18px; border-top: 1px solid var(--line); vertical-align: top; }
.job-table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* Related links */
.related { display: flex; flex-wrap: wrap; gap: 10px; }
.related a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  text-decoration: none;
}
.related a:hover { color: var(--red); border-color: var(--navy-mid); background: #fff; }

/* Prose (about / faq bodies) */
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose p.muted { color: var(--slate); }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 30px 0 10px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 7px; }

/* Pricing page */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--red); box-shadow: var(--shadow-md); position: relative; }
.price-card .pc-flag {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 13px;
}
.price-card h3 { font-size: 23px; margin-bottom: 4px; }
.price-card .pc-price { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--navy); line-height: 1.05; }
.price-card .pc-price small { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--slate); }
.price-card .pc-sub { font-size: 14.5px; color: var(--slate); margin: 8px 0 16px; }
.price-card ul { list-style: none; display: grid; gap: 9px; margin-bottom: 20px; flex: 1; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; }
.price-card li svg { width: 17px; height: 17px; flex: none; color: var(--red); margin-top: 2px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-deep); color: #b9c9db; font-size: 15px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-block: 60px 44px;
}
.footer-brand .logo-text .logo-top { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.footer-contact { margin-top: 18px; display: grid; gap: 9px; font-size: 15px; }
.footer-contact a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .fc-row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; color: var(--gold); margin-top: 3px; }

.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: grid; gap: 9px; }
.footer-links a { color: #b9c9db; text-decoration: none; font-size: 14.5px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 20px; display: flex; justify-content: space-between; align-items: center; gap: 10px 22px; flex-wrap: wrap; font-size: 13px; color: #8ba1b8; }
.footer-bottom a { color: #b9c9db; }
.built-by a {
  color: #cddaea;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 168, 29, 0.55);
  padding-bottom: 1px;
}
.built-by a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(11, 30, 51, 0.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; font-size: 15.5px; padding: 14px 10px; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav > a, .nav-drop > button { padding: 10px 9px; font-size: 15px; }
  .header-phone .hp-label { display: none; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-block: 56px 64px; }
  .svc-grid, .why-grid, .review-grid, .split-grid, .steps, .price-cards { grid-template-columns: 1fr 1fr; }
  .trustbar .container { grid-template-columns: 1fr 1fr; }
  .trust-item { justify-content: flex-start; }
  .area-grid { grid-template-columns: 1fr; }
  .radius-card { max-width: 440px; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 34px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav, .header-cta, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .topbar .topbar-hours { display: none; }
  .section { padding-block: 62px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .why-grid, .review-grid, .split-grid, .steps, .season-grid, .price-cards { grid-template-columns: 1fr; }
  .trustbar .container { grid-template-columns: 1fr; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .check-cols { grid-template-columns: 1fr; }
  .quote-card { padding: 24px 20px 22px; }
  .hero .container { padding-block: 46px 54px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .topbar .container { justify-content: center; }
  .topbar-area { display: none; }
  .cta-actions .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* Above the breakpoint the drawer is not just off-screen but unreachable,
   so it can't be tabbed into from the desktop nav. */
@media (min-width: 861px) {
  .mobile-menu, .menu-backdrop { display: none !important; }
}

/* ==========================================================================
   MOBILE OPTIMIZATION
   Most visitors arrive on a phone, often one-handed and often standing in
   the room they need fixed. Everything below targets that: 44px minimum
   tap targets, less scrolling, and no accidental mis-taps.
   ========================================================================== */

@media (max-width: 860px) {

  /* --- Tap targets: 44px minimum on every interactive element --- */

  .topbar .container { min-height: 48px; }
  .topbar a { display: inline-flex; align-items: center; min-height: 44px; padding: 4px 2px; }

  .logo { padding: 4px 2px; }
  .logo-mark { width: 44px; height: 44px; }

  .btn { min-height: 48px; }
  .btn-sm { min-height: 44px; padding: 12px 20px; font-size: 15.5px; }

  .town-chips { gap: 10px; }
  .town-chips a,
  .town-chips span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    padding: 10px 16px;
  }

  .related a { min-height: 44px; display: inline-flex; align-items: center; padding: 11px 18px; }

  .footer-links a { display: block; padding: 11px 0; font-size: 15.5px; }
  .footer-links { gap: 0; }
  .footer-contact a { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-contact { gap: 4px; }
  .footer-bottom { gap: 10px; }

  .crumbs { line-height: 2.4; }
  .crumbs a { display: inline-block; padding: 10px 0; }

  .faq-item summary { padding: 18px 18px; min-height: 56px; }

  .svc-more { min-height: 40px; align-items: center; }

  /* --- Less scrolling: tighten the vertical rhythm --- */

  .section { padding-block: 52px; }
  .section-head { margin-bottom: 30px; }
  /* Bottom padding still leaves the Duluth scene a visible band on phones,
     just a shallower one than desktop. */
  .hero .container { padding-block: 34px 128px; }
  .page-hero .container { padding-block: 30px 40px; }
  /* Guard against a flex row splitting a text node and its <strong> into
     two columns — every icon row keeps exactly two flex children. */
  .hero-points li > span,
  .check-cols li > span,
  .split-card li > span { flex: 1; min-width: 0; }
  .cta-band .container { padding-block: 52px; }
  .footer-main { padding-block: 44px 32px; }

  /* --- Forms: comfortable thumb targets --- */

  .field input,
  .field select,
  .field textarea { padding: 14px 14px; min-height: 50px; }
  .field label { font-size: 14.5px; margin-bottom: 6px; }
  .quote-card { padding: 26px 22px 24px; }

  /* --- Collapsible keyword chip lists on city pages --- */
  .chip-collapse > summary { min-height: 52px; }
}

@media (max-width: 640px) {
  .section { padding-block: 46px; }
  .hero .container { padding-block: 32px 40px; }
  .hero-sub { font-size: 17.5px; }
  .lede { font-size: 17.5px; }
  .hero-points li { font-size: 16px; }

  /* Stacked full-width CTAs are far easier to hit one-handed */
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .page-hero .hero-actions .btn { width: 100%; }

  .price-strip .container { padding-block: 34px; gap: 22px; }
  .price-strip .btn { width: 100%; }

  .season-card { padding: 26px 22px; }
  .guarantee { padding: 20px 20px; flex-direction: column; gap: 12px; }
  .local-note { padding: 20px 20px; }

  .job-table th, .job-table td { padding: 12px 14px; font-size: 15px; }

  .radius-ring { width: 148px; height: 148px; }
  .radius-ring .rr-num { font-size: 48px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Very small phones (iPhone SE and similar, 320–375px) */
@media (max-width: 380px) {
  .container, .container-narrow { width: calc(100% - 28px); }
  h1 { font-size: 33px; }
  h2 { font-size: 27px; }
  .logo-text .logo-top { font-size: 21px; }
  .logo-text .logo-sub { font-size: 9.5px; letter-spacing: 0.2em; }
  .mobile-cta .btn { font-size: 14.5px; padding: 13px 6px; gap: 6px; }
  .town-chips a, .town-chips span { font-size: 14.5px; padding: 10px 13px; }
}

/* Landscape phones: the sticky bar eats too much of a 375px-tall viewport */
@media (max-width: 900px) and (max-height: 460px) and (orientation: landscape) {
  .mobile-cta { position: static; box-shadow: none; }
  body { padding-bottom: 0; }
  .hero .container { padding-block: 28px 34px; }
}

/* Touch devices: kill hover-only affordances that stick after a tap */
@media (hover: none) {
  .svc-card:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* Collapsible chip lists (city pages) */
.chip-collapse { margin-bottom: 8px; }
.chip-collapse > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 14px;
}
.chip-collapse > summary::-webkit-details-marker { display: none; }
.chip-collapse > summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  color: var(--red);
}
.chip-collapse[open] > summary::after { content: "–"; }
.chip-collapse > summary:hover { border-color: var(--navy-mid); color: var(--red); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
