/* ============================================================
   CARAVAN DESIGN SYSTEM · components
   Every UI primitive the app uses. Screens compose these classes;
   they do not invent their own visual styles.
   ============================================================ */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.5;
  /* starfield scrolls with content — no background-attachment: fixed,
     which iOS Safari ignores and repaints the whole page on scroll */
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.30) 0, transparent 100%),
    radial-gradient(1px 1px at 78% 9%,  rgba(255,255,255,.24) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 68%, color-mix(in srgb, var(--violet) 30%, transparent) 0, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, color-mix(in srgb, var(--teal) 25%, transparent) 0, transparent 100%);
}

/* ---------- layout ---------- */
.app { max-width: 560px; margin: 0 auto; min-height: 100dvh; display: flex; flex-direction: column; }
.screen-body { flex: 1; padding: 4px 14px var(--tabbar-clear); display: flex; flex-direction: column; gap: var(--gap); }
.appbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px 10px; gap: 10px; }
.appbar .ev { font-family: var(--mono); font-size: var(--fs-2xs); letter-spacing: .14em; color: var(--faint); text-transform: uppercase; }
.appbar .t { font-weight: 750; font-size: var(--fs-lg); letter-spacing: -.01em; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: var(--pad); }
.card.live { border-color: var(--border-live); box-shadow: var(--glow-live); }
.card.warn-edge { border-color: color-mix(in srgb, var(--warn) 35%, transparent); }
.card.bad-edge  { border-color: color-mix(in srgb, var(--bad) 35%, transparent); }

/* ---------- text roles ---------- */
.k { font-family: var(--mono); font-size: var(--fs-2xs); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.title-sm { font-size: var(--fs-title); font-weight: 650; }
.title-xs { font-size: var(--fs-md); font-weight: 650; }
.meta { font-size: var(--fs-xs); color: var(--faint); }
.body-dim { font-size: var(--fs-sm); color: var(--dim); }

/* ---------- rows ---------- */
.row { display: flex; align-items: center; gap: 10px; }
.row.sb { justify-content: space-between; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-sm); }

/* ---------- lists (hairline-separated rows) ---------- */
.list { display: flex; flex-direction: column; }
.list-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; }
.list-row + .list-row { border-top: 1px solid var(--line); }
.list-row.col { flex-direction: column; align-items: stretch; gap: var(--gap-xs); }

/* ---------- scroll well (bounded lists inside cards) ---------- */
.scroll-well { max-height: 320px; overflow-y: auto; }

/* ---------- pills (status chips — mono voice, never wrap) ---------- */
.pill { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: var(--fs-xs);
  letter-spacing: .04em; padding: 3px 9px; border-radius: var(--r-pill); border: 1px solid var(--line-2);
  color: var(--dim); white-space: nowrap; }
.pill.ok   { color: var(--ok);     border-color: color-mix(in srgb, var(--ok) 40%, transparent);     background: color-mix(in srgb, var(--ok) 8%, transparent); }
.pill.warn { color: var(--warn);   border-color: color-mix(in srgb, var(--warn) 40%, transparent);   background: color-mix(in srgb, var(--warn) 8%, transparent); }
.pill.bad  { color: var(--bad);    border-color: color-mix(in srgb, var(--bad) 40%, transparent);    background: color-mix(in srgb, var(--bad) 8%, transparent); }
.pill.vio  { color: var(--violet); border-color: color-mix(in srgb, var(--violet) 40%, transparent); background: color-mix(in srgb, var(--violet) 8%, transparent); }
.pill.teal { color: var(--teal);   border-color: color-mix(in srgb, var(--teal) 40%, transparent);   background: color-mix(in srgb, var(--teal) 8%, transparent); }

/* ---------- status tiles (one-tap presence — thumb-first, no typing) ---------- */
/* Column count is a knob, not a constant — a rigid grid gets re-implemented
   instead of reused. Default 3; use .cols-2 for fewer/larger day-of targets. */
.tile-grid { display: grid; grid-template-columns: repeat(var(--tile-cols, 3), 1fr); gap: var(--gap-sm); }
.tile-grid.cols-2 { --tile-cols: 2; }
.tile-grid.cols-4 { --tile-cols: 4; }
.tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  min-height: 76px; padding: 12px 6px; border-radius: var(--r-btn); text-align: center;
  background: var(--raise); border: 1px solid var(--line-2); color: var(--dim); cursor: pointer;
  font-family: var(--mono); font-size: var(--fs-2xs); letter-spacing: .08em; text-transform: uppercase;
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease); }
.tile .ico { font-size: 22px; line-height: 1; }
.tile:not(:disabled):hover { filter: brightness(1.12); }
.tile:not(:disabled):active { transform: translateY(1px); }
.tile:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
/* .on = this is your current state. Teal marks it live; the aurora gradient stays reserved for CTAs. */
.tile.on { color: var(--teal); border-color: color-mix(in srgb, var(--teal) 55%, transparent);
  background: color-mix(in srgb, var(--teal) 10%, var(--raise)); }
/* the escalation tile keeps its semantic red whether or not it is current */
.tile.bad { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, transparent); }
.tile.bad.on { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 60%, transparent);
  background: color-mix(in srgb, var(--bad) 12%, var(--raise)); }

/* ---------- freshness (honest staleness — show the age, never guess) ---------- */
.fresh { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono);
  font-size: var(--fs-xs); font-variant-numeric: tabular-nums; color: var(--faint); white-space: nowrap; }
.fresh::before { content: ""; width: 5px; height: 5px; border-radius: 50%; flex: none; background: var(--ok); }
.fresh.stale { color: var(--warn); }
.fresh.stale::before { background: var(--warn); }
.fresh.cold { color: var(--faint); }          /* never reported — absence, not staleness */
.fresh.cold::before { background: var(--faint); }

/* A pill that is a control must be sized like one. Unlike .btn/.tab below,
   this uses real min-height rather than a pseudo-element: pills wrap onto
   multiple rows, and overlapping invisible hit areas would steal each
   other's taps. Layout-aware beats invisible here. */
button.pill, a.pill {
  min-height: 44px; padding-inline: 14px; cursor: pointer;
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease); }
button.pill:not(:disabled):hover, a.pill:hover { filter: brightness(1.12); }
button.pill:not(:disabled):active, a.pill:active { transform: translateY(1px); }
button.pill:focus-visible, a.pill:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- touch targets (Fitts's Law) ----------
   Caravan is used outdoors, one-handed, at night, with dusty hands. Every
   control's VISUAL size stays compact, but its tap region expands to the
   44px minimum via a transparent pseudo-element — vertical only, so
   side-by-side controls never steal each other's taps. */
.btn, .tab, button.row, a.row { position: relative; }
.btn::after, .tab::after, button.row::after, a.row::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%); height: 44px; min-height: 100%;
}

/* ---------- tappable surfaces (feedback) ----------
   A card or row that IS a button gets button feedback — no extra class to
   remember, and nothing to leave dead if a screen stops using it. */
button.card, a.card, button.list-row, a.list-row, button.row, a.row {
  cursor: pointer; text-align: left; font: inherit; color: inherit; width: 100%;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
button.card:active, a.card:active, button.list-row:active, a.list-row:active,
button.row:active, a.row:active {
  background: var(--raise); transform: translateY(1px); }
button.card:focus-visible, a.card:focus-visible, button.list-row:focus-visible,
a.list-row:focus-visible, button.row:focus-visible, a.row:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-weight: 650;
  font-size: var(--fs-md); border-radius: var(--r-btn); padding: 10px 14px; border: 1px solid var(--line-2);
  color: var(--ink); background: var(--raise); cursor: pointer; font-family: var(--sans); text-decoration: none;
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease); }
/* ONE per viewport. The gradient marks a recommendation, not a category — the
   moment it appears on every row of a list it is decoration and the signal is
   gone. In lists: recommend one row, use plain .btn for the rest. */
.btn.primary { background: var(--aurora); color: #07131A; border: none; font-weight: 750; }
/* Escape hatch for repeated-row actions that still need to read as the
   affirmative choice — teal edge, no gradient. Cheap enough to repeat. */
.btn.affirm { color: var(--teal); border-color: color-mix(in srgb, var(--teal) 45%, transparent);
  background: color-mix(in srgb, var(--teal) 10%, var(--raise)); font-weight: 700; }
.btn.small { font-size: var(--fs-sm); padding: 6px 10px; border-radius: 9px; }
.btn.ghost { background: transparent; color: var(--dim); }
.btn:not(:disabled):hover { filter: brightness(1.12); }
.btn:not(:disabled):active { transform: translateY(1px); filter: brightness(.94); }
.btn:disabled { opacity: .5; cursor: default; }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ---------- inputs ---------- */
.input { width: 100%; background: var(--raise); border: 1px solid var(--line-2); border-radius: var(--r-btn);
  color: var(--ink); font-family: var(--sans); font-size: var(--fs-body); padding: 12px 14px; }
.input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: transparent; }
.input::placeholder { color: var(--faint); }
/* chevron stroke is --dim baked into the data URI (URLs can't read tokens) */
select.input { appearance: none; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239BA3BC' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; }
textarea.input { min-height: 140px; resize: vertical; line-height: 1.5; }

/* ---------- icons (SVG masks over currentColor) ----------
   Each icon is a mask, not an image — so it paints in whatever color its
   context sets. .tab.on .icon glows teal for free, and icons re-skin with
   [data-event-theme] like everything else. A color emoji can never do that.

   Adding one is a single line: .icon-name { --icon: url("data:image/svg+xml,…") }
   Authored on a 24px grid, 2px stroke, round caps — keep new ones matching.
   NOTE: additive. Legacy `.ico` text glyphs still work; migrate per screen. */
.icon { display: inline-block; flex: none; vertical-align: -.15em;
  width: var(--icon-size, 20px); height: var(--icon-size, 20px);
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat; }
.icon.sm { --icon-size: 16px; }
.icon.lg { --icon-size: 26px; }

/* crossed poles + door notch + ground — a plain triangle reads as a hazard sign */
.icon-tent    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 21L14 3'/%3E%3Cpath d='M20.5 21L10 3'/%3E%3Cpath d='M15.5 21L12 15l-3.5 6'/%3E%3Cpath d='M2 21h20'/%3E%3C/svg%3E"); }
.icon-van     { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='7' width='14' height='9' rx='1'/%3E%3Cpath d='M15 10h3.5l2.5 3v3H15z'/%3E%3Ccircle cx='6' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E"); }
.icon-ticket  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M14 6v12' stroke-dasharray='2 3'/%3E%3C/svg%3E"); }
.icon-compass { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M15.5 8.5l-2.1 5-5 2.1 2.1-5z'/%3E%3C/svg%3E"); }
.icon-menu    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3C/svg%3E"); }
.icon-target  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3C/svg%3E"); }
.icon-users   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3.5'/%3E%3Cpath d='M3 20a6 6 0 0112 0'/%3E%3Cpath d='M16 5.5a3.5 3.5 0 010 7'/%3E%3Cpath d='M17.5 14.5A6 6 0 0121 20'/%3E%3C/svg%3E"); }
.icon-wallet  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='13' rx='2'/%3E%3Cpath d='M3 10.5h18'/%3E%3C/svg%3E"); }
.icon-book    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5a2 2 0 012-2h13v18H6a2 2 0 01-2-2z'/%3E%3Cpath d='M4 17h15'/%3E%3C/svg%3E"); }
.icon-music   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 17V5l11-2v12'/%3E%3Ccircle cx='6.5' cy='17.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='15.5' r='2.5'/%3E%3C/svg%3E"); }
.icon-pin     { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.5 7-11a7 7 0 10-14 0c0 5.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); }
.icon-alert   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.5v5.5'/%3E%3Cpath d='M12 16.5v.01'/%3E%3C/svg%3E"); }
.icon-food    { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3v7a2.5 2.5 0 005 0V3'/%3E%3Cpath d='M8.5 12v9'/%3E%3Cpath d='M17 3c-1.4 2-2 4-2 6s.6 3 2 3 2-1 2-3-.6-4-2-6z'/%3E%3Cpath d='M17 12v9'/%3E%3C/svg%3E"); }
.icon-route   { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='2.5'/%3E%3Ccircle cx='18' cy='18' r='2.5'/%3E%3Cpath d='M8.5 6H14a4 4 0 010 8h-4a4 4 0 000 8h5.5' stroke-dasharray='3 2.5'/%3E%3C/svg%3E"); }

/* ---------- avatars ---------- */
.avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--raise); border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: var(--fs-2xs);
  color: var(--dim); flex: none; }
.avatar.open { border-style: dashed; border-color: color-mix(in srgb, var(--teal) 70%, transparent); color: var(--teal);
  background: color-mix(in srgb, var(--teal) 6%, transparent); }
.avatar.ghost { border-style: dashed; color: var(--warn); }

/* ---------- meters ---------- */
.meter { height: 6px; border-radius: var(--r-pill); background: var(--inset); overflow: hidden; margin-top: 8px; }
.meter i { display: block; height: 100%; background: var(--aurora); }

/* ---------- provenance ---------- */
.quote { font-family: var(--mono); font-size: var(--fs-sm); line-height: 1.5; color: var(--dim);
  border-left: 2px solid var(--violet); padding: 6px 10px; background: var(--inset); border-radius: 0 8px 8px 0; }
.src { font-family: var(--mono); font-size: var(--fs-xs); color: var(--faint); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.src .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); flex: none; }

/* ---------- section dividers ---------- */
.divider-label { font-family: var(--mono); font-size: var(--fs-2xs); letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 10px; margin: 4px 2px 0; }
.divider-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- bottom tab bar ---------- */
.tabbar { position: fixed; bottom: 0; left: 0; right: 0; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  border-top: 1px solid var(--line); background: color-mix(in srgb, var(--void) 94%, transparent); backdrop-filter: blur(12px);
  padding: 10px 8px calc(12px + env(safe-area-inset-bottom)); max-width: 560px; margin: 0 auto; }
.tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-family: var(--mono);
  font-size: var(--fs-2xs); letter-spacing: .08em; color: var(--faint); text-transform: uppercase;
  background: none; border: none; border-radius: 8px; cursor: pointer; }
.tab:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.tab .ico { font-size: 17px; line-height: 1; }
.tab.on { color: var(--teal); }
.tab.on .ico { filter: drop-shadow(0 0 6px color-mix(in srgb, var(--teal) 70%, transparent)); }

/* ---------- bottom sheet (pickers + confirmations, above the tabbar) ---------- */
.sheet-scrim { position: fixed; inset: 0; z-index: 40; background: var(--scrim); backdrop-filter: blur(2px);
  border: none; padding: 0; cursor: pointer; }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 41; max-width: 560px; margin: 0 auto;
  background: var(--surface); border-top: 1px solid var(--line-2);
  border-radius: var(--r-card) var(--r-card) 0 0;
  padding: 10px 14px calc(var(--pad) + env(safe-area-inset-bottom));
  max-height: 85dvh; overflow-y: auto; display: flex; flex-direction: column; gap: var(--gap); }
.sheet::before { content: ""; flex: none; width: 36px; height: 4px; border-radius: var(--r-pill);
  background: var(--line-2); margin: 0 auto; }   /* grabber */
@media (prefers-reduced-motion: no-preference) {
  .sheet { animation: sheet-up var(--dur) var(--ease); }
  @keyframes sheet-up { from { transform: translateY(14%); opacity: .5; } to { transform: none; opacity: 1; } }
}

/* ---------- countdown orb ---------- */
.orb { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .orb { animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
}
.count { font-family: var(--mono); font-size: var(--fs-xs); color: var(--gold); text-align: right; line-height: 1.3; }
.count b { font-size: var(--fs-body); }

/* ---------- misc ---------- */
.spin { color: var(--faint); font-family: var(--mono); font-size: var(--fs-sm); padding: 30px; text-align: center; }
.err { color: var(--bad); font-size: var(--fs-md); }
a { color: var(--teal); }

/* ---------- utilities ---------- */
.wordmark { font-weight: 800; letter-spacing: -.03em; line-height: 1;
  background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stack { display: flex; flex-direction: column; gap: var(--gap); }
.stack.tight { gap: var(--gap-xs); }
.dim { color: var(--dim); }
.faint { color: var(--faint); }

/* ---------- campsite orientation bars ---------- */
.orientbar { font-family: var(--mono); font-size: var(--fs-3xs); letter-spacing: .2em; text-transform: uppercase;
  text-align: center; padding: 6px; border-radius: 8px; }
.orientbar.stage { color: var(--teal); background: color-mix(in srgb, var(--teal) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--teal) 25%, transparent); }
.orientbar.road { color: var(--warn); background: color-mix(in srgb, var(--warn) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--warn) 25%, transparent); }
