/* Atlas application styles — built on tokens.css */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.45;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Type scale ──────────────────────────────────────────── */
.h-display { font-size: 56px; font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; }
.h-hero    { font-size: 42px; font-weight: 600; letter-spacing: -0.03em;  line-height: 1.05; }
.h-1       { font-size: 32px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
.h-2       { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
.h-3       { font-size: 17px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.3; }
.h-4       { font-size: 14px; font-weight: 600; line-height: 1.35; }
.t-base    { font-size: 14px; font-weight: 400; line-height: 1.5;  color: var(--ink-1); }
.t-sm      { font-size: 13px; font-weight: 400; line-height: 1.45; color: var(--ink-2); }
.t-xs      { font-size: 12px; font-weight: 400; line-height: 1.4;  color: var(--ink-2); }
.t-meta    { font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
             text-transform: uppercase; color: var(--ink-3); }
.t-num     { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.muted     { color: var(--ink-2); }
.faint     { color: var(--ink-3); }

/* ── Layout shell ────────────────────────────────────────── */
.layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.layout--auth { display: block; }

.sb {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 24px 16px;
  display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 0;
  height: 100vh;
}
.sb-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 12px 24px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
}
.sb-brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.sb-section {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 16px 12px 8px;
}
.sb-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-1);
  cursor: pointer;
}
.sb-item:hover { background: var(--bg-sunken); }
.sb-item--active { background: var(--ink); color: var(--bg); }
.sb-item--active:hover { background: var(--ink); }
.sb-item .count {
  margin-left: auto; font-size: 12px; color: var(--ink-3); font-weight: 500;
}
.sb-item--active .count { color: rgba(255,255,255,.55); }
.sb-trip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.main { min-width: 0; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--density-pad);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 5;
}
.topbar-title { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }

.content { padding: 32px var(--density-pad) 96px; max-width: 1400px; margin: 0 auto; }

/* ── Atoms ───────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; letter-spacing: -0.005em;
  background: var(--bg-sunken); color: var(--ink-1);
  white-space: nowrap;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .9; }
.pill--stay { background: var(--c-stay-tint); color: var(--c-stay); }
.pill--eat  { background: var(--c-eat-tint);  color: var(--c-eat); }
.pill--do   { background: var(--c-do-tint);   color: var(--c-do); }
.pill--move { background: var(--c-move-tint); color: var(--c-move); }
.pill--note { background: var(--c-note-tint); color: var(--c-note); }
.pill--upcoming { background: var(--accent-tint); color: var(--accent-strong); }
.pill--current  { background: #ecfdf5; color: #047857; }
.pill--past     { background: var(--bg-sunken); color: var(--ink-2); }
.pill--soon     { background: #fef3c7; color: #92400e; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px; padding: 0 16px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  border: 1px solid transparent;
  background: var(--bg-sunken); color: var(--ink);
  cursor: pointer; user-select: none;
  transition: background .12s, color .12s, border-color .12s;
}
.btn:hover { background: var(--line); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--ink-1); }
.btn--accent  { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-strong); }
.btn--ghost   { background: transparent; }
.btn--ghost:hover { background: var(--bg-sunken); }
.btn--outline { background: transparent; border-color: var(--line-strong); }
.btn--outline:hover { background: var(--bg-sunken); }
.btn--sm      { height: 28px; padding: 0 10px; font-size: 12.5px; }
.btn--lg      { height: 44px; padding: 0 20px; font-size: 15px; }
.btn--danger  { background: transparent; color: var(--danger); }
.btn--danger:hover { background: #fef2f2; }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.card--flush { overflow: hidden; }
.card--hover:hover { box-shadow: var(--shadow-2); }
.card-pad { padding: var(--density-card-pad); }

.input, .textarea, select {
  width: 100%;
  background: var(--bg-sunken);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font: inherit; font-size: 14px;
  color: var(--ink);
}
.input:focus, .textarea:focus, select:focus {
  outline: none; border-color: var(--accent); background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.textarea { min-height: 96px; resize: vertical; }
label.field { display: block; margin-bottom: 16px; }
label.field > .lbl {
  display: block; font-size: 12px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 6px; letter-spacing: -0.005em;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-sunken); color: var(--ink-1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  border: 2px solid var(--bg); flex-shrink: 0;
}

.sticker {
  width: 32px; height: 32px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
  flex-shrink: 0;
}
.sticker--stay { background: var(--c-stay-tint); color: var(--c-stay); }
.sticker--eat  { background: var(--c-eat-tint);  color: var(--c-eat); }
.sticker--do   { background: var(--c-do-tint);   color: var(--c-do); }
.sticker--move { background: var(--c-move-tint); color: var(--c-move); }
.sticker--note { background: var(--c-note-tint); color: var(--c-note); }

.tabs {
  display: inline-flex; gap: 4px;
  background: var(--bg-sunken);
  padding: 3px; border-radius: var(--r-pill);
}
.tabs a, .tabs button {
  border: 0; background: transparent; color: var(--ink-2);
  padding: 6px 14px; border-radius: var(--r-pill);
  font: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer; display: inline-flex; align-items: center;
}
.tabs .is-on { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }

.divider { height: 1px; background: var(--line); }
.row { display: flex; align-items: center; gap: 8px; }
.row--between { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.col { display: flex; flex-direction: column; }
.gap-1{gap:4px}.gap-2{gap:8px}.gap-3{gap:12px}.gap-4{gap:16px}.gap-6{gap:24px}.gap-8{gap:32px}
.mt-1{margin-top:4px}.mt-2{margin-top:8px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}
.mt-6{margin-top:24px}.mt-8{margin-top:32px}.mt-12{margin-top:48px}
.flex-1 { flex: 1 1 auto; min-width: 0; }

/* ── Trip cover (real photo or gradient) ─────────────────── */
.cover {
  position: relative;
  background: var(--bg-sunken);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
}
.cover-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px; color: #fff; z-index: 2;
}
.cover-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.cover-sub { font-size: 12.5px; opacity: 0.85; margin-top: 3px; }
.cover-attr {
  font-size: 11px; opacity: 0.7; margin-top: 6px; letter-spacing: 0;
}
.cover-attr a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }

/* ── Trips overview grid ─────────────────────────────────── */
.trips-hero {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.trips-hero-stats { display: flex; gap: 32px; }
.stat-tile { display: flex; flex-direction: column; gap: 2px; }
.stat-tile .v { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.trip-card { display: block; overflow: hidden; transition: box-shadow .15s, transform .15s; }
.trip-card:hover { box-shadow: var(--shadow-2); }
.trip-card .cover { aspect-ratio: 16 / 10; }
.trip-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.trip-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 36px 0 16px;
}
.section-head h2 { margin: 0; }

/* ── Empty states ────────────────────────────────────────── */
.empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  padding: 48px 24px;
  text-align: center;
  color: var(--ink-2);
}
.empty h3 { margin: 0 0 6px; color: var(--ink); }
.empty .icon { display:inline-flex; align-items:center; justify-content:center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-sunken); color: var(--ink-2);
  margin-bottom: 12px; }

/* ── Trip detail: plan-grid (legacy two-column item blocks) ── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.plan-block { display: flex; flex-direction: column; }
.plan-block-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.plan-block-head .count { margin-left: auto; font-size: 13px; color: var(--ink-3); }
.plan-list { display: flex; flex-direction: column; }
.plan-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.plan-row:last-child { border-bottom: 0; }
.plan-row .body { flex: 1 1 auto; min-width: 0; }
.plan-row .body .ttl { font-size: 14px; font-weight: 500; color: var(--ink-1); }
.plan-row .body .sub { font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.plan-row .cost { font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 13px; color: var(--ink-2); }

.plan-add {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; margin-top: 0;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink-2); font-size: 13px;
  cursor: pointer;
}
.plan-add:hover { background: var(--bg-row); color: var(--ink); }

.plan-empty {
  padding: 36px 20px; text-align: center; color: var(--ink-3); font-size: 13px;
}

/* ── Forms / wide canvas ─────────────────────────────────── */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-wrap h1 { margin: 0 0 6px; }
.form-wrap .lede { color: var(--ink-2); margin-bottom: 32px; }

/* Cover candidate picker (create flow) */
.cover-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cover-candidate {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-md);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  background-size: cover; background-position: center;
}
.cover-candidate.is-selected { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.cover-candidate .credit {
  position: absolute; left: 8px; bottom: 8px; right: 8px;
  font-size: 11px; color: #fff; opacity: .85;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* ── Flash messages ──────────────────────────────────────── */
.flash {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--accent-strong);
  font-size: 13.5px;
}
.flash--error { background: #fef2f2; color: var(--danger); }
.flash--success { background: #ecfdf5; color: var(--success); }

/* ── Day timeline ────────────────────────────────────────── */
.day {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.day:first-child { border-top: 0; padding-top: 0; }
.day-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.day-head .idx {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}

/* ── Auth-ish minimal pages (not used in v1, kept for parity) ── */
.auth-shell {
  min-height: 100vh; display: grid; place-items: center;
  padding: 48px 24px; background: var(--bg-soft);
}
.auth-card { width: 100%; max-width: 420px; }

/* ── Misc ────────────────────────────────────────────────── */
.icon-svg { width: 18px; height: 18px; stroke-width: 1.6; }
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 22px; height: 22px; }

.skeleton {
  background: linear-gradient(90deg, var(--bg-sunken) 0%, var(--bg-row) 50%, var(--bg-sunken) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Sidebar disabled items ──────────────────────────────── */
.sb-item--disabled { color: var(--ink-3); cursor: default; }
.sb-item--disabled:hover { background: transparent; }

/* ── Workspace switcher ──────────────────────────────────── */
.sb-ws {
  background: var(--bg-sunken);
  border-radius: 10px;
  margin: 0 8px 12px;
}
.sb-ws-summary {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px; font-weight: 600;
  list-style: none;
}
.sb-ws-summary::-webkit-details-marker { display: none; }
.sb-ws-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb-ws-list {
  display: flex; flex-direction: column;
  padding: 4px;
  border-top: 1px solid var(--line);
}
.sb-ws-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: var(--ink-1);
  font: inherit; font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.sb-ws-item:hover { background: var(--bg); }
.sb-ws-item.is-on { background: var(--ink); color: var(--bg); }
.sb-ws-item.is-on:hover { background: var(--ink); }
.sb-ws-item.is-on span { flex: 1; }
.sb-ws-new { color: var(--accent); font-weight: 500; }

/* ── Topbar search pill ──────────────────────────────────── */
.search-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-sunken);
  border-radius: 999px;
  padding: 6px 14px;
  min-width: 280px;
  color: var(--ink-3);
  font-size: 13px;
}
.search-pill:focus-within {
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--accent-tint), inset 0 0 0 1px var(--accent);
}
.search-input {
  border: 0; background: transparent;
  font: inherit; font-size: 13px;
  color: var(--ink);
  flex: 1; min-width: 0;
  outline: none;
}
.search-input::placeholder { color: var(--ink-3); }

/* ── Segmented control (grid/list) ───────────────────────── */
.seg {
  display: inline-flex;
  background: var(--bg-sunken);
  padding: 3px; border-radius: 10px;
}
.seg a, .seg button {
  border: 0; background: transparent; color: var(--ink-2);
  padding: 6px 10px; border-radius: 7px;
  font: inherit; font-size: 12.5px; font-weight: 500;
  cursor: pointer; display: inline-flex; align-items: center;
}
.seg .is-on { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }
.seg label { cursor: pointer; }
.seg-opt {
  display: inline-block;
  padding: 6px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  transition: background .12s, color .12s, box-shadow .12s;
}
.seg-opt.is-on,
.seg label:has(input:checked) .seg-opt {
  background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1);
}

/* ── Item row edit/delete buttons (faint, full on hover) ── */
.item-actions {
  display: inline-flex; gap: 2px; opacity: 0;
  transition: opacity .12s;
}
.item-row:hover .item-actions { opacity: 1; }
.item-actions .btn { color: var(--ink-3); }
.item-actions .btn:hover { color: var(--ink); background: var(--bg-sunken); }
.item-actions form button:hover { color: var(--danger); background: #fef2f2; }
.item-del { margin: 0; opacity: 0; transition: opacity .12s; }
.note-card:hover .item-del,
.packing-row:hover .item-del { opacity: 1; }
.item-del button { color: var(--ink-3); }
.item-del button:hover { color: var(--danger); background: #fef2f2; }

/* Companion row controls — visible on hover */
.companion-actions {
  display: inline-flex; align-items: center; gap: 4px;
  opacity: 0; transition: opacity .12s;
}
.companion-row:hover .companion-actions { opacity: 1; }
.role-select {
  border: 0; background: var(--bg-sunken);
  border-radius: 6px; padding: 4px 6px;
  font: inherit; font-size: 11.5px; color: var(--ink-2);
  cursor: pointer;
}
.role-select:hover { background: var(--line); color: var(--ink); }

.day-select {
  border: 0; background: var(--bg-sunken);
  border-radius: 6px; padding: 4px 6px;
  font: inherit; font-size: 11.5px; color: var(--ink-2);
  cursor: pointer; max-width: 140px;
}
.day-select:hover { background: var(--line); color: var(--ink); }

/* Timeline view */
.timeline-grid {
  display: grid;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.timeline-month {
  border-left: 1px solid var(--line);
  padding-left: 6px;
  font-size: 11px; color: var(--ink-3);
  white-space: nowrap;
}
.timeline-month:first-child { border-left: 0; padding-left: 0; }
.timeline-bar {
  position: absolute;
  height: 28px;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none;
}
.timeline-bar:hover { filter: brightness(0.96); }

/* Admin sub-nav */
.admin-shell { display: flex; flex-direction: column; gap: 8px; }
.admin-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 6px;
  background: var(--bg-sunken);
  border-radius: 12px;
  align-self: flex-start;
}
.admin-tabs .tab { padding: 8px 14px; }
.admin-tabs .tab.is-on { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }

/* Search suggestions list (add-stay / add-eat) */
.suggest-list { display: flex; flex-direction: column; gap: 4px; }
.suggest-item {
  display: block; text-align: left;
  border: 0; background: var(--bg-soft);
  padding: 8px 12px; border-radius: 8px;
  font: inherit; font-size: 13px; color: var(--ink-1);
  cursor: pointer;
}
.suggest-item:hover { background: var(--bg-sunken); }

/* ── Toast flash messages ────────────────────────────────── */
.toast-stack {
  position: fixed;
  top: 80px; right: 24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 100;
  max-width: 360px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow-2);
  font-size: 13.5px;
  color: var(--ink);
  transition: opacity .4s, transform .4s;
}
.toast--error    { border-left-color: var(--danger); }
.toast--success  { border-left-color: var(--success); }
.toast--fade     { opacity: 0; transform: translateX(20px); }
.toast-body      { flex: 1; }
.toast-close {
  border: 0; background: transparent;
  font-size: 18px; color: var(--ink-3);
  cursor: pointer; padding: 0 4px;
  line-height: 1;
}
.toast-close:hover { color: var(--ink); }

/* ── Error pages ─────────────────────────────────────────── */
.error-code {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--bg-sunken);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ── Cover lightbox (native <dialog>) ─────────────────────── */
dialog.lightbox {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
}
dialog.lightbox[open] {
  display: flex; align-items: center; justify-content: center;
}
dialog.lightbox::backdrop { background: rgba(0, 0, 0, 0.92); }
dialog.lightbox img {
  max-width: calc(100vw - 96px); max-height: calc(100vh - 96px);
  border-radius: 12px;
  box-shadow: var(--shadow-3);
}
.lightbox-close-form { position: absolute; top: 20px; right: 24px; margin: 0; }
.lightbox-close {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 0; border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-credit {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}
.lightbox-credit a { color: #fff; text-decoration: underline; }

/* "View cover" button overlaid on the trip hero */
.hero-zoom-btn {
  position: absolute; top: 20px; right: 24px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
  font: inherit; font-size: 12px; font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.hero-zoom-btn:hover { background: rgba(0, 0, 0, 0.7); }

/* ── Command palette ─────────────────────────────────────── */
dialog.cmd-palette {
  border: 0;
  padding: 0;
  margin: 80px auto;
  width: 540px; max-width: calc(100vw - 32px);
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
dialog.cmd-palette::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}
.cmd-input-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.cmd-icon { color: var(--ink-3); display: inline-flex; }
.cmd-input {
  flex: 1;
  border: 0; background: transparent;
  font: inherit; font-size: 15px;
  color: var(--ink);
  outline: none;
}
.cmd-close {
  border: 0; background: var(--bg-sunken);
  color: var(--ink-3);
  font-size: 11px; font-weight: 500;
  padding: 4px 8px; border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-mono);
}
.cmd-results {
  list-style: none; margin: 0; padding: 6px;
  max-height: 60vh; overflow-y: auto;
}
.cmd-result {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
}
.cmd-result:hover, .cmd-result.is-active { background: var(--bg-sunken); }
.cmd-kind {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg-sunken);
  text-align: center;
}
.cmd-kind--trip   { color: var(--accent); background: var(--accent-tint); }
.cmd-kind--create { color: var(--c-stay); background: var(--c-stay-tint); }
.cmd-result-title { font-weight: 500; color: var(--ink); }
.cmd-result-sub   { font-size: 12px; color: var(--ink-3); }

/* ── Upload drop zone (cover picker) ─────────────────────── */
.upload-drop {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .12s, background .12s;
  max-width: 360px;
}
.upload-drop:hover { border-color: var(--accent); background: var(--accent-tint); }
.upload-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-sunken); color: var(--ink-2);
}
.upload-text { display: flex; flex-direction: column; gap: 2px; }
.upload-label { font-size: 13.5px; font-weight: 500; color: var(--ink); }

/* ── Trip row (list view) ────────────────────────────────── */
.trip-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: inherit;
}
.trip-row:last-child { border-bottom: 0; }
.trip-row:hover { background: var(--bg-row); }
.trip-row-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* ── Next-Up split hero ──────────────────────────────────── */
.next-up-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 340px;
  overflow: hidden;
}
.next-up-hero .cover { position: relative; }
.next-up-panel {
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.next-up-meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── KPI strip ───────────────────────────────────────────── */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
}
.kpi { padding: 18px 20px; border-right: 1px solid var(--line); }
.kpi:last-child { border-right: 0; }

/* ── Past trip grid (4-up compact) ───────────────────────── */
.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Trip detail: hero + tab strip + body grid ───────────── */
.trip-hero {
  position: relative;
  min-height: 320px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.trip-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.trip-hero-content {
  position: relative; z-index: 2;
  padding: 32px;
  color: #fff;
  width: 100%;
}
.trip-hero-content h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.trip-hero-content .meta {
  display: flex; align-items: center; gap: 16px;
  opacity: .9; margin-top: 10px;
  font-size: 14px;
}

.tab-strip {
  position: relative;
  margin: -24px 32px 24px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 6px 8px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 3;
  overflow-x: auto;
}
.tab-strip--standalone { margin: 24px 0; }
.tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.tab:hover { background: var(--bg-sunken); color: var(--ink); }
.tab.is-on { background: var(--bg-sunken); color: var(--ink); font-weight: 600; }
.tab-count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

.trip-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  margin-top: 8px;
}
.trip-body--full { grid-template-columns: 1fr; }
.trip-main { display: flex; flex-direction: column; gap: 32px; min-width: 0; }
.trip-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; align-self: start; }

/* ── Category block heading ──────────────────────────────── */
.block-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

/* ── Item list rows ──────────────────────────────────────── */
.item-list { padding: 0; overflow: hidden; }
.item-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.item-row:last-of-type { border-bottom: 0; }
.item-thumb {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--bg-sunken);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.item-body { flex: 1 1 auto; min-width: 0; }
.item-name { font-size: 15px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); }
.item-cost { text-align: right; min-width: 80px; }
.item-empty {
  padding: 28px 18px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
}
.item-add {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 18px;
  border-top: 1px dashed var(--line-strong);
  background: var(--bg-soft);
  color: var(--ink-2);
  font-size: 13px; font-weight: 500;
}
.item-add:hover { background: var(--bg-row); color: var(--ink); }

/* ── Day-by-day view ─────────────────────────────────────── */
.day-strip {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.day-chip {
  min-width: 88px;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-sunken);
  color: var(--ink-1);
  flex-shrink: 0;
}
.day-chip:hover { background: var(--line); }
.day-chip.is-on { background: var(--ink); color: var(--bg); }
.day-chip-n { font-size: 16px; font-weight: 600; margin-top: 4px; }
.day-chip-city { margin-top: 2px; color: var(--ink-2); }
.day-chip.is-on .day-chip-city { color: rgba(255,255,255,.7); }

.day-section { margin-bottom: 40px; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute;
  left: 7px; top: 12px; bottom: 12px;
  width: 1px; background: var(--line-strong);
}
.tl-item { position: relative; margin-bottom: 14px; }
.tl-dot {
  position: absolute;
  left: -28px; top: 18px;
  width: 14px; height: 14px;
  background: var(--bg);
  border: 2px solid var(--ink-3);
  border-radius: 50%;
}
.tl-dot--filled { background: var(--ink); border-color: var(--ink); }
.tl-card { padding: 14px 16px; border-radius: 12px; }
.tl-time { width: 56px; text-align: right; font-size: 13px; font-weight: 600; color: var(--ink-1); }

/* ── Packing rows ────────────────────────────────────────── */
.packing-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-left: 0; border-right: 0; border-top: 0;
  width: 100%; text-align: left;
  cursor: default;
}
.packing-row:last-child { border-bottom: 0; }
.packing-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: transparent;
  transition: background .12s, border-color .12s, color .12s;
}
.packing-check:hover { border-color: var(--ink-2); }
.packing-row.is-checked .packing-check {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.packing-label { font-size: 14px; }
.packing-row.is-checked .packing-label {
  color: var(--ink-3); text-decoration: line-through;
}
.packing-row:hover .item-del { opacity: 1; }
.note-card:hover .item-del { opacity: 1; }
.note-card--pinned { border-color: var(--accent-tint); }
.note-body p:first-child { margin-top: 0; }
.note-body p:last-child { margin-bottom: 0; }
.note-body ul, .note-body ol { margin: 8px 0; padding-left: 24px; }
.note-body code { background: var(--bg-sunken); padding: 1px 6px; border-radius: 4px;
  font-size: 13px; font-family: var(--font-mono); }
.note-body pre { background: var(--bg-sunken); padding: 12px; border-radius: 8px;
  overflow-x: auto; }
.note-body a { color: var(--accent); text-decoration: underline; }

/* ── Modal (HTML <dialog>) ───────────────────────────────── */
dialog.modal {
  border: 0;
  border-radius: var(--r-lg);
  padding: 24px;
  width: 420px; max-width: calc(100vw - 32px);
  box-shadow: var(--shadow-3);
  background: var(--bg);
  color: var(--ink);
}
dialog.modal::backdrop {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(2px);
}
dialog.modal form { margin: 0; }

/* ── Split-screen auth shell ────────────────────────────── */
.auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.auth-photo {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(15,20,35,.35), rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.auth-photo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 32px 40px 48px;
}
.auth-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.auth-brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: #fff; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.auth-quote { max-width: 560px; }
.auth-quote-text {
  font-size: 48px; font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.05;
}
.auth-quote-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  font-size: 13px; opacity: .85;
}
.auth-quote-line {
  width: 24px; height: 1px; background: #fff; display: inline-block;
}
.auth-form {
  display: flex; flex-direction: column;
  padding: 40px 56px;
  min-height: 100vh;
  background: var(--bg);
}
.auth-form-inner {
  flex: 1;
  display: flex; flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}
.auth-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.auth-form-body { width: 100%; }
.auth-footer {
  text-align: center;
  font-size: 12px; color: var(--ink-3);
  margin-top: 24px;
}
.auth-footer-link { color: inherit; text-decoration: underline; }
.auth-confirm-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  margin: 0 auto;
}

/* Password strength meter */
.pwd-strength {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.pwd-strength-bars { display: flex; gap: 4px; flex: 1; }
.pwd-strength-bars span {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--line);
  transition: background .12s;
}
.pwd-strength[data-score="1"] .pwd-strength-bars span:nth-child(-n+1),
.pwd-strength[data-score="2"] .pwd-strength-bars span:nth-child(-n+2),
.pwd-strength[data-score="3"] .pwd-strength-bars span:nth-child(-n+3),
.pwd-strength[data-score="4"] .pwd-strength-bars span:nth-child(-n+4) {
  background: var(--success);
}

/* ── Step rail (create-trip wizard) ─────────────────────── */
.step-rail {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.step-rail-item {
  display: flex; align-items: center; gap: 8px;
}
.step-rail-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-sunken); color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.step-rail-num.is-active { background: var(--ink); color: var(--bg); }
.step-rail-label { font-size: 13px; font-weight: 500; }
.step-rail-bar { width: 40px; height: 1px; background: var(--line); margin-left: 4px; }

/* ── Rich search pages (stays / eats / cars) ─────────────── */
.search-page { max-width: 1280px; }
.search-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.search-bar .search-input { font-size: 16px; }
.search-bar-divider { width: 1px; height: 24px; background: var(--line); }
.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}
.search-results { display: flex; flex-direction: column; gap: 14px; }
.search-card {
  display: flex; gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow .12s, border-color .12s;
}
.search-card:hover { box-shadow: var(--shadow-2); }
.search-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.search-card-photo {
  width: 200px; height: 140px;
  border-radius: 10px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.search-card-body { flex: 1; min-width: 0; }
.search-card-price {
  text-align: right;
  display: flex; flex-direction: column; justify-content: space-between;
  min-width: 100px;
}
.search-stars { display: inline-flex; gap: 1px; color: #b45309; font-size: 12px; }
.search-check { color: var(--success); display: inline-flex; align-items: center; }
.search-side { position: sticky; top: 24px; align-self: start; }
.search-side-photo { height: 180px; background-size: cover; background-position: center; }
.search-side-kv { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }

/* Eats layout */
.eats-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}
.eats-results { display: flex; flex-direction: column; gap: 12px; }
.eats-card {
  display: flex; gap: 16px; align-items: center;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.eats-card-photo {
  width: 88px; height: 88px;
  border-radius: 10px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.eats-map {
  position: sticky; top: 24px;
  align-self: start;
  height: 560px;
}
.eats-map-canvas {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #eef0ec;
  color: var(--ink-2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

/* Cars grid */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cars-card { padding: 0; overflow: hidden; }
.cars-card-photo {
  height: 150px;
  background-size: cover; background-position: center;
  background-color: var(--bg-sunken);
}

@media (max-width: 1100px) {
  .search-layout, .eats-layout { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .cars-grid { grid-template-columns: 1fr; }
  .search-card { flex-direction: column; }
  .search-card-photo { width: 100%; height: 180px; }
}

/* ── "Verify your email" banner ─────────────────────────── */
.verify-banner {
  background: #fef3c7;
  color: #92400e;
  padding: 10px 24px;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  border-bottom: 1px solid #fde68a;
}
.verify-banner form { margin: 0; }
.verify-banner-btn {
  background: transparent;
  border: 0;
  color: #92400e;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* ── Impersonation banner (red strip) ───────────────────── */
.impersonation-banner {
  background: var(--danger);
  color: #fff;
  padding: 8px 24px;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.impersonation-banner form { margin: 0; }
.impersonation-banner-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 0; color: #fff;
  padding: 4px 12px; border-radius: 6px;
  font: inherit; font-size: 12px; font-weight: 500;
  cursor: pointer;
}
.impersonation-banner-btn:hover { background: rgba(255, 255, 255, 0.25); }

/* responsive */
@media (max-width: 1100px) {
  .next-up-hero { grid-template-columns: 1fr; }
  .next-up-hero .cover { min-height: 240px; }
  .past-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-photo { display: none; }
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .sb { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .kpi { border-bottom: 1px solid var(--line); }
  .kpi:nth-child(2) { border-right: 0; }
  .past-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-body { grid-template-columns: 1fr; }
  .trip-side { position: static; }
  .tab-strip { margin: -16px 16px 16px; }
  .search-pill { display: none; }
}

/* ── Live city autocomplete (trip_new + stops) ───────────── */
.dest-suggest {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  margin: 4px 0 0; padding: 4px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  list-style: none;
  max-height: 280px; overflow-y: auto;
}
.dest-suggest:empty { display: none; }
.dest-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 8px;
  align-items: center;
  padding: 8px 10px; border-radius: 6px; cursor: pointer;
  font-size: 14px;
}
.dest-item.is-active, .dest-item:hover { background: var(--bg-sunken); }
.dest-name { font-weight: 500; }
.dest-sub { font-size: 12px; }
.dest-flag::before { content: attr(data-cc); }
.dest-flag {
  display: inline-block; font-size: 12px; letter-spacing: .5px;
  color: var(--ink-2); font-weight: 600;
}

/* ── Wikipedia about card on trip detail ─────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
}
.about-card {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  padding: 16px; border-radius: 14px; background: var(--bg-elev);
  border: 1px solid var(--line);
}
.about-card--loading .about-card-extract { opacity: .55; }
.about-card-thumb {
  width: 110px; height: 110px; border-radius: 10px;
  background-size: cover; background-position: center;
  background-color: var(--bg-sunken);
}
.about-card-title { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.about-card-extract {
  font-size: 13px; color: var(--ink-2); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.about-card-link { font-size: 12px; color: var(--accent); margin-top: 6px; display: inline-block; }
@media (max-width: 700px) {
  .about-card { grid-template-columns: 1fr; }
  .about-card-thumb { width: 100%; height: 180px; }
}

/* ── Country flag chip ───────────────────────────────────── */
.flag-chip {
  display: inline-block; font-size: inherit; line-height: 1;
  margin-right: 4px;
}

/* ── OSM eats results ────────────────────────────────────── */
.osm-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-elev);
  font-size: 12px; cursor: pointer;
}
.osm-toggle.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.osm-empty { text-align: center; padding: 24px; color: var(--ink-2); font-size: 13px; }
