/* Tal's estimator — premium, quiet, mobile-first.
   Design rules from the blueprint: one question per screen, ≥56px targets,
   fixed frame so steps never shift layout, at most one advisor moment per screen.

   Palette and type are lifted from american-steamers.com so the estimator reads
   as the same company, not a third-party tool: deep navy #152635, brand navy
   #0b2a6b, orange CTA #e85a0d, review-star yellow #ffcb05, Anton + Montserrat.
   Orange is reserved for the ONE action on a screen — never for alarm, never
   for decoration. */

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #152635;
  --ink-soft: #5b6b7c;
  --line: #dbe3ec;
  --accent: #0b2a6b;      /* brand navy — structure, selection, focus */
  --accent-ink: #0b2a6b;
  --cta: #e85a0d;         /* the single action on a screen */
  --cta-ink: #ffffff;
  --good: #2f6d4f;
  --star: #ffcb05;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(11, 42, 107, .06), 0 8px 24px rgba(11, 42, 107, .07);
  --display: Anton, "Arial Narrow", Impact, sans-serif;
  --sans: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1620;
    --surface: #152635;   /* the site's own navy carries the dark theme */
    --ink: #eef3f9;
    --ink-soft: #9fb1c4;
    --line: #26394d;
    --accent: #83a1c1;
    --accent-ink: #abc8e3;
    --cta: #f4762b;
    --cta-ink: #16202b;
    --good: #4fae7e;
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.3);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* ── frame ───────────────────────────────────────────── */

.bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.bar-in {
  max-width: 560px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* The company mark sits in the frame; Tal sits in the advice. That is the voice
   law made visual — the header is American Steamers, the bubbles are Tal.
   The lockup is wide and detailed, so it gets real width rather than being
   shrunk into an illegible chip. */
.brand { display: flex; align-items: center; flex: none; }
.brand .logo {
  height: 46px; width: auto; display: block;
}
@media (max-width: 430px) {
  .brand .logo { height: 38px; }
}
/* The owner console is internal and wears the wordmark, not the logo. */
.brand-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: .02em;
}
/* The phone number must never wrap — a call button broken across three lines is
   the last thing a hesitating customer should see. On a narrow phone the
   "American Steamers" lockup yields first; the logo and the number do not. */
.call {
  margin-left: auto;
  color: var(--ink);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  font-size: .92rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  white-space: nowrap;
  flex: none;
}
@media (max-width: 430px) {
  .brand .by { display: none; }
}
.call:hover { border-color: var(--accent); }

.dots { display: flex; gap: 6px; }
/* `display: flex` outranks the UA rule behind the hidden attribute, so without
   this the dots never hide — the entry screens only looked right because there
   were no dots to draw yet. */
.dots[hidden] { display: none; }
.dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line); display: block;
}
.dots i.on { background: var(--accent); }

.stage {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 16px 40px;
  min-height: 70vh;
}

.trust {
  max-width: 560px;
  margin: 0 auto;
  padding: 22px 16px calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .82rem;
  border-top: 1px solid var(--line);
}
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; }
.footer-logo { display: block; line-height: 0; }
.footer-logo img { height: 72px; width: auto; display: block; }
.site-link {
  color: var(--accent-ink); text-decoration: none; font-weight: 600; font-size: .82rem;
}
.site-link:hover { text-decoration: underline; }

/* ── type ────────────────────────────────────────────── */

/* Montserrat carries the questions — Anton is a heavy display face and a wizard
   that shouts every question is exhausting. Anton is kept for the wordmark and
   the one welcome headline, which is how the site uses it. */
h1, h2 { font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: 1.62rem; line-height: 1.25; margin: 0 0 10px; }
h2 { font-size: 1.3rem; line-height: 1.3; margin: 0 0 8px; }
h1.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: .01em;
}
/* Each screen moves focus to its heading so a screen reader announces the new
   step. The user did not tab there, so the ring is noise — the announcement is
   the point, not the outline. Keyboard focus rings everywhere else are intact. */
h1[tabindex="-1"]:focus, h2[tabindex="-1"]:focus { outline: none; }
.helper { color: var(--ink-soft); margin: 0 0 20px; font-size: .95rem; }
/* Carried from the zip screen: the answer to "are you even in my area?" should
   not vanish after a second. Quiet enough to ignore, present enough to reassure. */
.areachip {
  margin: 0 0 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--good);
  letter-spacing: .01em;
}
.eyebrow {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-ink); font-weight: 600; margin: 0 0 8px;
}

/* ── choices ─────────────────────────────────────────── */

.grid { display: grid; gap: 10px; }
.grid.two { grid-template-columns: 1fr 1fr; }
.grid.three { grid-template-columns: repeat(3, 1fr); }

.choice {
  appearance: none;
  width: 100%;
  min-height: 60px;
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color .12s ease, transform .12s ease;
}
.choice:hover { border-color: var(--accent); }
.choice:active { transform: scale(.995); }
.choice[aria-pressed="true"] { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
/* Every option's text now sits in .txt so a card reads the same with or without
   a photo: column of label + sublabel, either stacked under nothing or beside a
   thumbnail. */
.choice .txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.choice.withphoto { flex-direction: row; align-items: center; gap: 14px; padding: 12px 14px; }
.choice .thumb {
  width: 80px; height: 80px; flex: none;
  border-radius: 10px; object-fit: cover;
  background: color-mix(in srgb, var(--line) 60%, var(--surface));
}
.choice .lab { font-weight: 550; }
.choice .sub { color: var(--ink-soft); font-size: .85rem; }
.choice .badge {
  align-self: flex-start;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); font-weight: 700; margin-top: 4px;
}
.choice.prominent { border-style: dashed; }
.grid.three .choice { align-items: center; text-align: center; min-height: 66px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  appearance: none;
  min-height: 48px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}
.chip[aria-pressed="true"] {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

/* ── buttons + fields ────────────────────────────────── */

.btn {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font: inherit;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn:disabled { opacity: .45; cursor: default; }
/* The one action on the screen wears the site's orange. Everything else is
   navy or plain, so "orange" always means "this is the thing to tap". */
.btn.go { background: var(--cta); color: var(--cta-ink); font-weight: 700; }
.btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
  font-weight: 500;
}
.back {
  appearance: none; background: none; border: 0; color: var(--ink-soft);
  font: inherit; padding: 14px 2px; cursor: pointer; margin-top: 8px;
}

label { display: block; font-size: .88rem; color: var(--ink-soft); margin: 14px 0 6px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
input:focus, textarea:focus, .choice:focus-visible, .chip:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
textarea { min-height: 90px; resize: vertical; }
/* Address type-ahead. The list overlays the fields below it rather than pushing
   them down, so the form does not jump while someone is typing. */
.lookup { position: relative; }
.suggest {
  position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 4px);
  margin: 0; padding: 4px; list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 264px; overflow-y: auto;
}
.suggest li {
  padding: 12px 12px; min-height: 48px; display: flex; align-items: center;
  border-radius: 8px; cursor: pointer; font-size: .94rem;
}
.suggest li:hover, .suggest li:focus {
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  outline: none;
}

.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: .9rem; color: var(--ink-soft); }
.consent input { width: 22px; height: 22px; margin-top: 2px; flex: none; }
.err { color: #a4362f; font-size: .9rem; margin: 8px 0 0; }
.err a { color: inherit; font-weight: 700; white-space: nowrap; }
.fineprint { color: var(--ink-soft); font-size: .82rem; margin-top: 14px; }

/* The quiet alternative to a primary button — "not ready to book", "skip".
   Deliberately not a .btn: it must read as an easy way out, never as a
   competing call to action next to the one we actually want tapped. */
.linklike {
  display: block; width: 100%; margin-top: 12px; padding: 10px;
  background: none; border: 0; color: var(--ink-soft);
  font: inherit; font-size: .92rem; text-decoration: underline;
  cursor: pointer; text-align: center;
}
.linklike:hover { color: var(--ink); }

/* Guided photo shots. A row per shot: what to photograph, why it helps, and
   one tap to add it. Never a dropzone — this is a phone in someone's hand. */
.shot {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.shot:last-of-type { border-bottom: 1px solid var(--line); }
.shot-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.shot-text strong { font-weight: 600; }
.shot-text span { color: var(--ink-soft); font-size: .86rem; }
.shot-add {
  flex: none; min-height: 44px; min-width: 84px; display: inline-flex;
  align-items: center; justify-content: center; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; font-size: .92rem;
}
.shot-add:hover { border-color: var(--accent); }
.shot.added .shot-add { border-color: var(--accent); color: var(--accent); }
.shot.busy { opacity: .55; pointer-events: none; }

/* ── Tal moments ─────────────────────────────────────── */

.advisor {
  background: color-mix(in srgb, var(--accent) 7%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 18px 0;
}
.advisor .who {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .11em;
  font-weight: 700; color: var(--accent-ink); margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.advisor .who img {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none;
}
.advisor p { margin: 0; }
/* Only bites where Tal says more than one thing — otherwise the paragraphs run
   together into a wall of text. */
.advisor p + p { margin-top: 10px; }

/* The honesty line. Deliberately plain and never dismissible — a customer who
   later learns this was software should find that we said so up front. */
.disclosure {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ink-soft); font-size: .86rem;
  margin: 14px 0 0; padding-top: 12px;
  border-top: 1px solid var(--line);
}

.signoff {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
}
.signoff img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.signoff .name { font-weight: 700; font-size: .95rem; }
.signoff .role { color: var(--ink-soft); font-size: .82rem; }

/* The cheaper route. Only rendered when the saving is real (Pricing Engine
   computes it by re-pricing, never by subtracting a guess). */
.cheaper {
  border: 1px dashed color-mix(in srgb, var(--good) 45%, var(--line));
  background: color-mix(in srgb, var(--good) 6%, var(--surface));
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 16px 0 0;
}
.cheaper .save {
  font-weight: 700; color: var(--good);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 4px;
}
.cheaper p { margin: 0; font-size: .94rem; }
.cheaper b { font-variant-numeric: tabular-nums; }

details.why {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
details.why summary {
  cursor: pointer;
  color: var(--accent-ink);
  font-size: .9rem;
  list-style: none;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}
details.why summary::-webkit-details-marker { display: none; }
details.why summary::before { content: "ⓘ"; }
details.why p { color: var(--ink-soft); font-size: .92rem; margin: 8px 0 0; }

/* ── proposal ────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 6px 0 4px;
  font-variant-numeric: tabular-nums;
}
.price-note { color: var(--ink-soft); font-size: .9rem; margin: 0 0 4px; }
.conf { font-size: .84rem; color: var(--ink-soft); }
.conf b { color: var(--ink); font-weight: 600; }

ul.ticks, ul.plain { list-style: none; padding: 0; margin: 14px 0 0; }
ul.ticks li { padding-left: 26px; position: relative; margin-bottom: 8px; }
ul.ticks li::before { content: "✓"; position: absolute; left: 4px; color: var(--good); font-weight: 700; }
ul.plain li { padding-left: 26px; position: relative; margin-bottom: 8px; color: var(--ink-soft); }
ul.plain li::before { content: "•"; position: absolute; left: 8px; }
/* Limits are not warnings — they are the honest shape of the service. Marked
   distinctly from the price-variance list so the two are never confused. */
ul.limits li::before { content: "—"; left: 4px; }

.promise {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 14px;
  margin: 18px 0 0;
}
/* ── proof ───────────────────────────────────────────── */

.gbadge {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0 0; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); text-decoration: none; color: var(--ink);
}
.gmark { width: 20px; height: 20px; flex: none; }
.gstars { color: var(--star); letter-spacing: 1px; font-size: .95rem; }
.gtext { font-size: .86rem; color: var(--ink-soft); }
.gtext b { color: var(--ink); }
.gopen { margin-left: auto; color: var(--ink-soft); font-size: 1.2rem; line-height: 1; }
.gbadge:hover { border-color: var(--accent); }

.review { margin: 12px 0 0; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.rhead { display: flex; align-items: center; gap: 10px; }
.ravatar {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: var(--surface);
  font-weight: 700; font-size: .95rem;
}
@media (prefers-color-scheme: dark) { .ravatar { color: #0e1620; } }
.rwho { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.rwho b { font-size: .92rem; }
.rmeta { font-size: .72rem; color: var(--ink-soft); }
.rstars { margin-left: auto; color: var(--star); font-size: .9rem; letter-spacing: 1px; }
.review blockquote { margin: 10px 0 0; font-size: .93rem; line-height: 1.5; }
/* ── a visit of several services ─────────────────────── */

/* One collapsed row per service: name and range always visible, the detail one
   tap away. Two services stacked raw would be two sets of included lines and
   two sets of limits — a wall of text, and honesty nobody reads is wallpaper. */
.svc { border-top: 1px solid var(--line); }
.svc:first-of-type { border-top: 0; }
.svc summary {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0; cursor: pointer; list-style: none; min-height: 48px;
}
.svc summary::-webkit-details-marker { display: none; }
.svc summary::before {
  content: "＋"; color: var(--ink-soft); font-size: .9rem; width: 14px; flex: none;
}
.svc[open] summary::before { content: "−"; }
.svc-name { font-weight: 600; }
.svc-price { margin-left: auto; font-variant-numeric: tabular-nums; white-space: nowrap; }
.svc-body { padding: 0 0 16px 26px; }
.svc-summary { color: var(--ink-soft); font-size: .9rem; margin: 0 0 10px; }
.svc-body .back { padding: 10px 0 0; font-size: .85rem; }

.basket-total {
  display: flex; align-items: baseline; gap: 12px;
  border-top: 2px solid var(--ink); margin-top: 6px; padding-top: 14px;
}
.basket-total > span:first-child {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-ink); font-weight: 600;
}
.basket-total .price { margin: 0 0 0 auto; font-size: 1.9rem; }

.addmore summary { font-weight: 600; }

.allreviews { margin-top: 12px; }
.allreviews summary { font-weight: 600; }
#ti-widget { margin-top: 12px; }

.quote-proof {
  font-style: italic;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  font-size: .93rem;
}

/* The guarantee, under Tal's signature. Given real weight rather than
   fineprint — it is the strongest promise on the page and the last thing read
   before picking a time. */
.guarantee {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--good) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--good) 38%, var(--line));
}
.guarantee .gtitle {
  font-weight: 700; font-size: .95rem; margin-bottom: 6px;
}
.guarantee p {
  margin: 0; font-size: .92rem; line-height: 1.55; color: var(--ink-soft);
}

/* The Trustindex feed ends flush against the Google badge, so the two read as
   one control strip. Give the badge room to be its own thing. */
#ti-widget + .gbadge { margin-top: 20px; }

/* Where to bring the rug. Shown on every drop-off screen — the address is the
   single most useful thing on the page for someone about to drive. */
.shop {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2, var(--surface));
}
.shop-label {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); font-weight: 700; margin-bottom: 6px;
}
.shop a { color: var(--accent-ink); font-weight: 600; text-decoration: none; }
.shop a:hover { text-decoration: underline; }
.shop-hours { color: var(--ink-soft); font-size: .86rem; margin-top: 4px; }

/* The pickup offer is help, not a saving, and sometimes costs more — so it must
   not wear the green "you save" colour the cheaper block uses. */
.pickup-offer {
  border-style: solid;
  border-color: color-mix(in srgb, var(--accent) 32%, var(--line));
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.pickup-offer .save { color: var(--accent-ink); }
.section-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); font-weight: 600; margin: 22px 0 8px;
}

/* The proof heading is a headline, not a label. Uppercasing a title-case line
   with an exclamation mark shouts it and pushes it onto two cramped rows. */
.proof-head {
  text-transform: none; letter-spacing: -.01em;
  font-size: 1.06rem; font-weight: 700; color: var(--ink);
  margin: 26px 0 10px;
}

/* ── booking ─────────────────────────────────────────── */

.days { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 10px; scroll-snap-type: x mandatory; }
.day {
  appearance: none; flex: none; min-width: 74px; min-height: 62px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: 12px; font: inherit; cursor: pointer; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.day[aria-pressed="true"] { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.day small { color: var(--ink-soft); font-size: .74rem; }
.day.closed { opacity: .4; }

.slot {
  display: flex; align-items: center; gap: 10px;
  width: 100%; min-height: 58px; padding: 14px 16px; margin-bottom: 8px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); color: var(--ink); font: inherit; cursor: pointer;
}
.slot[aria-pressed="true"] { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.slot[disabled] { opacity: .4; cursor: default; }
.slot .meta { margin-left: auto; font-size: .82rem; color: var(--ink-soft); }
.slot .why-good { color: var(--accent-ink); }

/* ── confirmation ────────────────────────────────────── */

.timeline { list-style: none; padding: 0; margin: 18px 0 0; }
.timeline li {
  position: relative; padding: 0 0 20px 26px; border-left: 2px solid var(--line);
  color: var(--ink-soft);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -6px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--line);
}
.timeline li.now { color: var(--ink); font-weight: 550; }
.timeline li.now::before { background: var(--good); }

.summary-row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span:first-child { color: var(--ink-soft); }
.summary-row span:last-child { text-align: right; font-weight: 550; }

.spinner { color: var(--ink-soft); padding: 30px 0; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@media (min-width: 620px) {
  h1 { font-size: 2rem; }
  .stage { padding-top: 32px; }
}
