  /* Palette taken from the existing DUDS'n SUDS mark: its blue and red, on a
     cool near-white that reads as fresh linen rather than plain paper. */
  :root {
    --blue: #1f5ca8;
    --blue-deep: #17416f;
    --red: #d8443a;
    --ink: #0f1d2b;
    --body: #3d4f61;
    --paper: #f6f9fd;
    --card: #ffffff;
    --mist: #d9e4f1;
    --rule: #c9d8ea;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --blue: #6ea6e8;
      --blue-deep: #b9d4f4;
      --red: #f0776c;
      --ink: #eaf1f9;
      --body: #a8bbcf;
      --paper: #0b141d;
      --card: #12202d;
      --mist: #1b2c3d;
      --rule: #24384c;
    }
  }
  :root[data-theme="dark"] {
    --blue: #6ea6e8; --blue-deep: #b9d4f4; --red: #f0776c;
    --ink: #eaf1f9; --body: #a8bbcf; --paper: #0b141d;
    --card: #12202d; --mist: #1b2c3d; --rule: #24384c;
  }
  :root[data-theme="light"] {
    --blue: #1f5ca8; --blue-deep: #17416f; --red: #d8443a;
    --ink: #0f1d2b; --body: #3d4f61; --paper: #f6f9fd;
    --card: #ffffff; --mist: #d9e4f1; --rule: #c9d8ea;
  }

  * { box-sizing: border-box; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--body);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { width: min(1080px, 92vw); margin-inline: auto; }
  h1, h2, h3 { color: var(--ink); text-wrap: balance; margin: 0; }
  h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
  h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); font-weight: 800; letter-spacing: -0.02em; }
  h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
  p { margin: 0; max-width: 62ch; }
  a { color: var(--blue); }

  /* Utility face — times, numbers and references, the docket vernacular. */
  .mono {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-variant-numeric: tabular-nums;
  }
  .eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--blue);
  }

  header { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
  .mark { width: min(320px, 62vw); height: auto; display: block; margin-bottom: 2rem; }
  .lede { font-size: clamp(1.05rem, 2.1vw, 1.25rem); margin-top: 1.1rem; }

  .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.5rem; border-radius: 4px; text-decoration: none;
    font-weight: 700; font-size: 0.98rem; border: 2px solid transparent;
    transition: transform 0.12s ease, background 0.12s ease;
  }
  .btn-primary { background: var(--blue); color: #fff; }
  .btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
  .btn-ghost { border-color: var(--rule); color: var(--ink); }
  .btn-ghost:hover { border-color: var(--blue); transform: translateY(-1px); }
  .btn:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

  section { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
  .band { border-top: 1px solid var(--rule); }

  /* The four steps are a real sequence, so they're numbered. */
  .steps { display: grid; gap: 1.5rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
  .step { border-top: 3px solid var(--blue); padding-top: 1rem; }
  .step .n { font-size: 0.78rem; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; }
  .step h3 { margin: 0.35rem 0 0.4rem; }
  .step p { font-size: 0.95rem; }

  .services { display: grid; gap: 1.25rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
  .service {
    background: var(--card); border: 1px solid var(--rule);
    padding: 1.4rem 1.5rem; border-radius: 3px;
  }
  .service h3 { margin-bottom: 0.4rem; }
  .service p { font-size: 0.94rem; }
  .service .items { margin-top: 0.7rem; font-size: 0.82rem; color: var(--blue); }

  /* Trade and healthcare inverted, so business readers know it's for them. */
  .trade { background: var(--ink); color: #b7c9dc; }
  .trade h2, .trade h3 { color: #fff; }
  .trade .eyebrow { color: #8fb8e8; }
  .trade .cols { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1.75rem; }
  .trade li { margin-bottom: 0.45rem; }
  .trade ul { padding-left: 1.1rem; margin: 0.6rem 0 0; }

  /* Contact styled as a collection docket — the thing the drivers actually
     carry, and the one visual flourish on the page. */
  .docket {
    background: var(--card); border: 1px solid var(--rule);
    max-width: 460px; margin-top: 2rem; position: relative;
  }
  .docket::before {
    content: ""; position: absolute; inset-inline: 0; top: -1px; height: 4px;
    background: repeating-linear-gradient(90deg, var(--red) 0 9px, transparent 9px 18px);
  }
  .docket-inner { padding: 1.75rem 1.6rem 1.6rem; }
  .docket dl { display: grid; grid-template-columns: auto 1fr; gap: 0.55rem 1.25rem; margin: 1.1rem 0 0; }
  .docket dt { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-weight: 700; padding-top: 0.15rem; }
  .docket dd { margin: 0; color: var(--ink); }
  .hours { border-top: 1px dashed var(--rule); margin-top: 1.3rem; padding-top: 1.1rem; }
  .hours-row { display: flex; justify-content: space-between; gap: 1.5rem; font-size: 0.95rem; }
  .hours-row + .hours-row { margin-top: 0.35rem; }
  .hours-row span:last-child { color: var(--ink); }

  footer { border-top: 1px solid var(--rule); padding-block: 2rem 3rem; font-size: 0.87rem; }
  .footer-line { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: baseline; }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }
