    /* ============================================================
       Swift Rest Porta Potty — dispatch/logistics design system
       Logo-derived navy + signal blue. Blue is the single action colour.
       Archivo display / IBM Plex Sans body / IBM Plex Mono data.
       ============================================================ */
    :root {
      /* sampled from the Swift Rest logo: navy #032c54, blue #0173cb */
      --navy: #032c54;
      --navy-dk: #02203d;
      --navy-2: #0a3a67;
      --navy-3: #17497a;
      --blue: #0173cb;
      --blue-dk: #015a9f;
      --accent: #0173cb;      /* brand blue: rules, markers, links */
      --accent-dk: #015694;
      --red: #e02b20;         /* the one action colour — CTAs only */
      --red-dk: #a81d15;
      --red-lt: #f04437;
      --accent-lt: #52a8ea;   /* accents sitting ON navy — needs the lift */
      --paper: #f7f9fb;
      --concrete: #e6ecf1;
      --line: #d3dde6;
      --muted: #5b7286;
      --white: #ffffff;

      --display: "Archivo", "Arial Narrow", sans-serif;
      --body: "IBM Plex Sans", Arial, sans-serif;
      --mono: "IBM Plex Mono", ui-monospace, monospace;

      --wrap: min(1180px, calc(100% - 40px));
      --r: 4px;
      --r-lg: 10px;
    }

    * { box-sizing: border-box; }

    /* the off-canvas nav parks itself outside the viewport; clip so it
       cannot widen the page (clip, not hidden — no scroll container) */
    html { scroll-behavior: smooth; overflow-x: clip; }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--navy);
      font-family: var(--body);
      font-size: 1.02rem;
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
    }

    body.nav-open { overflow: hidden; }

    img, iframe { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    .wrap { width: var(--wrap); margin-inline: auto; }

    .skip {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--accent);
      color: var(--white);
      padding: 12px 18px;
      font-family: var(--mono);
      font-weight: 600;
      z-index: 200;
    }
    .skip:focus { left: 8px; top: 8px; }

    /* ---------- type ---------- */
    h1, h2, h3 {
      font-family: var(--display);
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -0.025em;
      margin: 0;
      text-wrap: balance;
    }

    h1 { font-size: clamp(2.6rem, 1.7rem + 3.4vw, 4.6rem); }
    h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.5rem); }
    h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.012em; }

    p { margin: 0; }

    .lede {
      font-size: clamp(1.06rem, 1rem + 0.35vw, 1.24rem);
      line-height: 1.6;
      color: var(--muted);
    }

    /* mono utility label — the dispatch voice of the page */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--mono);
      font-size: 0.735rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .tag::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--accent);
    }

    .sec { padding: clamp(64px, 5vw, 108px) 0; }
    .sec-head { max-width: 780px; display: grid; gap: 16px; margin-bottom: 44px; }

    /* ---------- buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 26px;
      border: 2px solid transparent;
      border-radius: var(--r);
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.02rem;
      letter-spacing: -0.01em;
      cursor: pointer;
      transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }

    .btn-cta {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 6px 0 var(--red-dk);
    }
    .btn-cta:hover { background: var(--red-lt); }
    .btn-cta:active { box-shadow: 0 2px 0 var(--red-dk); }

    .btn-line {
      border-color: currentColor;
      color: var(--navy);
      background: transparent;
    }
    .btn-line:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.35);
      color: var(--white);
      background: transparent;
    }
    .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

    /* ---------- top strip + header ---------- */
    .strip {
      background: var(--navy);
      color: #a8bcc7;
      font-family: var(--mono);
      font-size: 0.76rem;
      letter-spacing: 0.05em;
    }
    .strip-in {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 26px;
      align-items: center;
      justify-content: center;
      padding: 9px 0;
      text-align: center;
    }
    .strip b { color: var(--white); font-weight: 600; }
    .strip a:hover { color: var(--accent-lt); }

    .hdr {
      position: sticky;
      top: 0;
      z-index: 90;
      background: rgba(247, 249, 251, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .hdr-in {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 12px 0;
    }
    .logo { display: flex; align-items: center; }
    .logo img { height: 58px; width: auto; }

    .nav { margin-left: auto; }
    .nav ul {
      display: flex;
      gap: 26px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.95rem;
      font-weight: 500;
    }
    .nav a { position: relative; padding: 4px 0; }
    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 180ms ease;
    }
    .nav a:hover::after { width: 100%; }

    .hdr-cta { display: flex; align-items: center; gap: 12px; }
    .hdr-phone {
      font-family: var(--display);
      font-weight: 800;
      font-size: 1.12rem;
      white-space: nowrap;
    }

    .burger {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: var(--r);
      background: var(--white);
      color: var(--navy);
      cursor: pointer;
      padding: 11px;
    }
    .burger svg { width: 100%; height: 100%; }

    /* ---------- hero ---------- */
    .hero {
      position: relative;
      background: var(--navy);
      color: var(--white);
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(900px 520px at 82% 8%, rgba(1, 115, 203, 0.46), transparent 62%),
        linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
      pointer-events: none;
    }
    .hero-in {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 44px;
      padding: clamp(52px, 5vw, 92px) 0 clamp(64px, 5vw, 104px);
      align-items: center;
    }
    .hero .tag { color: var(--accent-lt); }
    .hero h1 { color: var(--white); }
    .hero-copy { display: grid; gap: 22px; align-content: center; }
    .hero-copy h1 { max-width: 15ch; }
    .hero-sub {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.3rem, 1.05rem + 1vw, 1.9rem);
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: var(--accent-lt);
      max-width: 22ch;
      margin-top: -6px;
    }
    .hero-lede { color: #c4d4dd; font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.16rem); max-width: 40ch; }

    /* three promises that answer the objections before the call */
    .promises {
      list-style: none;
      margin: 8px 0 0;
      padding: 20px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      display: grid;
      gap: 11px;
      font-family: var(--mono);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      color: #b7c8d2;
    }
    .promises li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; }
    .promises svg { margin-top: 2px; color: var(--accent-lt); }

    .hero-media { position: relative; }
    .hero-media img {
      width: 100%;
      aspect-ratio: 4 / 3.25;
      object-fit: cover;
      border-radius: var(--r-lg);
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--r-lg);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
      pointer-events: none;
    }

    /* ---------- spec bar ---------- */
    .spec {
      background: var(--navy-2);
      color: var(--white);
      border-block: 3px solid var(--navy);
    }
    .spec-in {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 34px;
      padding: 14px 0;
      font-family: var(--mono);
      font-size: 0.79rem;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }
    .spec-in span { display: inline-flex; align-items: center; gap: 9px; }
    .spec-in span::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--accent-lt);
      transform: rotate(45deg);
    }

    /* ---------- fleet ---------- */
    .fleet { display: grid; gap: 18px; }
    .unit {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }
    .unit:hover {
      transform: translateY(-4px);
      border-color: var(--navy);
      box-shadow: 0 18px 40px rgba(10, 26, 36, 0.14);
    }
    .unit-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--concrete); }
    .unit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms ease; }
    .unit:hover .unit-img img { transform: scale(1.045); }

    .unit-flag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--accent);
      color: var(--white);
      font-family: var(--mono);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 3px;
    }
    .unit-body { padding: 20px; display: grid; gap: 10px; flex: 1; align-content: start; }
    .unit-body p { color: var(--muted); font-size: 0.97rem; }
    .unit-specs {
      list-style: none;
      margin: 6px 0 0;
      padding: 12px 0 0;
      border-top: 1px solid var(--line);
      display: grid;
      gap: 6px;
      font-family: var(--mono);
      font-size: 0.79rem;
      letter-spacing: 0.02em;
      color: var(--navy-3);
    }
    .unit-specs li { display: flex; gap: 9px; }
    .unit-specs li::before { content: "+"; color: var(--blue); font-weight: 600; }

    /* ---------- schedule ribbon (signature) ---------- */
    .run { background: var(--navy); color: var(--white); }
    .run .tag { color: var(--accent-lt); }
    .run h2 { color: var(--white); }
    .run .lede { color: #b7c8d2; }

    .rail { position: relative; display: grid; gap: 0; margin-top: 46px; }
    .rail::before {
      content: "";
      position: absolute;
      left: 19px;
      top: 12px;
      bottom: 12px;
      width: 2px;
      background: linear-gradient(180deg, var(--accent-lt), var(--blue));
    }
    .stop {
      position: relative;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 18px;
      padding: 0 0 30px 0;
    }
    .stop:last-child { padding-bottom: 0; }
    .stop-dot {
      position: relative;
      z-index: 2;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid var(--accent-lt);
      display: grid;
      place-items: center;
      font-family: var(--mono);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent-lt);
    }
    .stop-body { display: grid; gap: 5px; padding-top: 5px; }
    .stop-body h3 { color: var(--white); }
    .stop-body p { color: #a9bcc7; font-size: 0.97rem; }
    .stop-when {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-lt);
    }

    /* ---------- split panels ---------- */
    .split { display: grid; gap: 40px; align-items: center; }
    .split-media img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: var(--r-lg);
    }
    .split-copy { display: grid; gap: 18px; }

    .ticks { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 11px; }
    .ticks li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; font-size: 0.99rem; }
    .ticks svg { margin-top: 5px; color: var(--blue); }

    /* ---------- supplies ---------- */
    .supply { background: var(--concrete); }
    .sup-grid { display: grid; gap: 16px; }
    .sup {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 24px;
      display: grid;
      gap: 8px;
      border-left: 4px solid var(--blue);
    }
    .sup p { color: var(--muted); font-size: 0.96rem; }

    /* ---------- reviews ---------- */
    .revs { display: grid; gap: 18px; }
    .rev {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 26px;
      display: grid;
      gap: 16px;
    }
    .rev q {
      font-family: var(--display);
      font-weight: 600;
      font-size: 1.14rem;
      line-height: 1.42;
      letter-spacing: -0.015em;
      quotes: "\201C" "\201D";
    }
    .rev-by { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
    .rev-ini {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--navy);
      color: var(--accent-lt);
      font-family: var(--mono);
      font-size: 0.8rem;
      font-weight: 600;
      flex: none;
    }
    .rev-by strong { display: block; font-size: 0.97rem; }
    .rev-by em {
      display: block;
      font-style: normal;
      font-family: var(--mono);
      font-size: 0.73rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .stars { color: var(--accent); letter-spacing: 3px; font-size: 0.95rem; }
    .rev-note { font-family: var(--mono); font-size: 0.76rem; color: var(--muted); margin-top: 20px; }

    /* ---------- faq ---------- */
    .faq { display: grid; gap: 10px; max-width: 900px; }
    .faq details {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    .faq details[open] { border-color: var(--navy); }
    .faq summary {
      cursor: pointer;
      padding: 20px 56px 20px 22px;
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.012em;
      position: relative;
      list-style: none;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 13px;
      height: 13px;
      margin-top: -7px;
      border-right: 2px solid var(--blue);
      border-bottom: 2px solid var(--blue);
      transform: rotate(45deg);
      transition: transform 200ms ease;
    }
    .faq details[open] summary::after { transform: rotate(-135deg); }
    .faq-a { padding: 0 22px 22px; color: var(--muted); }

    /* ---------- yellow CTA band ---------- */
    .band { background: var(--navy-2); color: var(--white); }
    .band h2 { color: var(--white); }
    .band .btn-line { color: var(--white); }
    .band .btn-line:hover { background: var(--white); color: var(--accent); border-color: var(--white); }
    .band-in {
      display: grid;
      gap: 24px;
      padding: clamp(48px, 4vw, 76px) 0;
      align-items: center;
    }
    .band h2 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem); }
    .band-acts { display: flex; flex-wrap: wrap; gap: 12px; }
    .btn-navy { background: var(--red); color: var(--white); box-shadow: 0 6px 0 var(--red-dk); }
    .btn-navy:hover { background: var(--red-lt); }

    /* ---------- contact ---------- */
    .contact { background: var(--navy); color: var(--white); }
    .contact .tag { color: var(--accent-lt); }
    .contact h2 { color: var(--white); }
    .contact-grid { display: grid; gap: 26px; margin-top: 40px; }
    .map {
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      min-height: 340px;
    }
    .map iframe { width: 100%; height: 380px; border: 0; }
    .nap { display: grid; gap: 18px; align-content: start; }
    .nap-row { display: grid; grid-template-columns: 24px 1fr; gap: 14px; }
    .nap-row svg { margin-top: 4px; color: var(--accent-lt); }
    .nap-row b {
      display: block;
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #93a9b6;
      font-weight: 600;
      margin-bottom: 3px;
    }
    .nap-row a:hover { color: var(--accent-lt); }
    .nap-big {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem);
      letter-spacing: -0.02em;
    }

    /* ---------- footer ---------- */
    .foot { background: var(--navy-dk); color: #93aec6; padding: 54px 0 110px; font-size: 0.93rem; }
    .foot-grid { display: grid; gap: 32px; }
    .foot img { height: 56px; width: auto; margin-bottom: 16px; }
    .foot h3 {
      font-family: var(--mono);
      font-size: 0.73rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
    }
    .foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
    .foot a:hover { color: var(--accent-lt); }
    .foot-base {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      margin-top: 36px;
      padding-top: 22px;
      font-family: var(--mono);
      font-size: 0.75rem;
      letter-spacing: 0.04em;
    }

    /* ---------- global floating call button ---------- */
    .fab {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 95;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 22px;
      border-radius: 999px;
      background: var(--red);
      color: var(--white);
      font-family: var(--display);
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 12px 28px rgba(168, 29, 21, 0.42);
      transition: transform 150ms ease, background-color 150ms ease;
    }
    .fab:hover { background: var(--red-lt); transform: translateY(-2px); }
    .fab svg { flex: none; }

    /* ---------- reveal ---------- */
    .rise { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
    .rise.on { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .rise { opacity: 1; transform: none; transition: none; }
      * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    }

    /* ---------- responsive ---------- */
    @media (max-width: 860px) {
      .nav {
        position: fixed;
        inset: 0;
        background: var(--navy);
        display: grid;
        place-items: center;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 260ms ease, visibility 260ms ease;
        margin: 0;
      }
      .nav.open { transform: none; visibility: visible; }
      .nav ul { flex-direction: column; gap: 26px; text-align: center; font-size: 1.35rem; font-family: var(--display); font-weight: 700; }
      .nav a { color: var(--white); }
      .burger { display: block; margin-left: auto; }
      .hdr-cta .btn { display: none; }
      .hdr-phone { display: none; }
      .foot { padding-bottom: 110px; }
    }

    @media (max-width: 560px) {
      .fab { right: 14px; bottom: 14px; padding: 14px 18px; font-size: 0.95rem; }
      .fab span { display: none; }
      .fab::after { content: "Call now"; }
    }

    @media (min-width: 620px) {
      .fleet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .sup-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    @media (min-width: 861px) {
      .hero-in { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
      .hero-side { display: grid; gap: 22px; }
      .revs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .split { grid-template-columns: 1fr 1fr; gap: 56px; }
      .split.flip .split-media { order: 2; }
      .contact-grid { grid-template-columns: 1.15fr 0.85fr; }
      .band-in { grid-template-columns: 1.4fr auto; }
      .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
      .rail { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
      .rail::before { left: 20px; right: 20px; top: 19px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--accent-lt), var(--blue)); }
      .stop { grid-template-columns: 1fr; gap: 16px; padding: 0; }
      .stop-body { padding-top: 0; }
    }

    @media (min-width: 1000px) {
      .fleet { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    /* ---------- inner page chrome ---------- */
    .crumb {
      font-family: var(--mono);
      font-size: 0.74rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #8fb0c7;
      padding: 16px 0 0;
    }
    .crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
    .crumb li::after { content: "/"; margin-left: 8px; color: #52708a; }
    .crumb li:last-child::after { content: ""; }
    .crumb a:hover { color: var(--accent-lt); }
    .crumb [aria-current] { color: var(--white); }

    .phero { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
    .phero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(760px 420px at 88% 0%, rgba(1, 115, 203, 0.4), transparent 64%);
      pointer-events: none;
    }
    .phero-in {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 36px;
      padding: 30px 0 clamp(52px, 4vw, 78px);
      align-items: center;
    }
    .phero h1 { color: var(--white); font-size: clamp(2.3rem, 1.6rem + 2.6vw, 3.9rem); }
    .phero .tag { color: var(--accent-lt); }
    .phero-copy { display: grid; gap: 20px; }
    .phero-lede { color: #c4d4dd; font-size: clamp(1.04rem, 1rem + 0.35vw, 1.2rem); max-width: 46ch; }
    .phero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); }

    /* spec table — the "what you get" block */
    .facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
    .facts div {
      display: grid;
      gap: 4px 22px;
      padding: 15px 0;
      border-bottom: 1px solid var(--line);
    }
    .facts dt {
      font-family: var(--mono);
      font-size: 0.73rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .facts dd { margin: 0; }

    /* related rentals */
    .rel { display: grid; gap: 14px; }
    .rel a {
      display: grid;
      gap: 6px;
      padding: 20px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      transition: border-color 150ms ease, transform 150ms ease;
    }
    .rel a:hover { border-color: var(--navy); transform: translateY(-3px); }
    .rel strong { font-family: var(--display); font-size: 1.05rem; }
    .rel span { color: var(--muted); font-size: 0.94rem; }
    .rel em {
      font-style: normal;
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
    }

    @media (min-width: 700px) {
      .facts div { grid-template-columns: 190px 1fr; }
      .rel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (min-width: 861px) {
      .phero-in { grid-template-columns: 1.1fr 0.9fr; gap: 52px; }
      .phero-in.solo { grid-template-columns: 1fr; }
    }
    .phero-in.solo .phero-lede { max-width: 62ch; }

    .unit-more {
      margin-top: auto;
      padding-top: 14px;
      font-family: var(--mono);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .unit-more::after { content: " \2192"; }
    .unit-more:hover { color: var(--navy); }

    /* .sup cards also sit on the paper background on service pages,
       where a left rule alone is too faint to read as a card */
    .sup {
      border: 1px solid var(--line);
      border-left: 4px solid var(--blue);
    }
