/* DumpSpots */
:root { --ink: #1d1d1f; --grey: #6e6e73; --line: #e5e5e7; --fill: #f5f5f7; --accent: #0b6e4f; --ok: #1a7f37; --cond: #b35c00; --no: #c0392b; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 17px; line-height: 1.5; color: var(--ink); background: #fff; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
header, main, footer { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 20px; }
header { display: flex; justify-content: space-between; align-items: center; height: 56px; }
.logo { font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
header nav a, footer nav a { color: var(--grey); font-size: 15px; margin-left: 18px; }
header nav a:first-child, footer nav a:first-child { margin-left: 0; }
main { padding-top: 24px; padding-bottom: 72px; }
h1 { font-size: 34px; line-height: 1.12; letter-spacing: -.025em; font-weight: 700; margin: 0 0 12px; }
h2 { font-size: 21px; letter-spacing: -.015em; font-weight: 600; margin: 44px 0 12px; }
p { margin: 0 0 14px; }
.lede { font-size: 19px; color: var(--grey); }
.quiet { color: var(--grey); font-size: 15px; }
.crumb { font-size: 14px; margin: 0 0 8px; }
.crumb a { color: var(--grey); }
.crumb a::before { content: "‹ "; }
address { font-style: normal; margin: 0 0 6px; }
ul.plain { padding-left: 20px; }
ul.plain li { margin-bottom: 8px; }
/* hero */
.hero { padding: 24px 0 8px; }
.hero h1 { font-size: 40px; }
.hero p { font-size: 19px; color: var(--grey); margin-bottom: 24px; }
/* finder */
.finder { display: grid; gap: 10px; margin-bottom: 8px; }
.finder input, .sorter input { width: 100%; font: inherit; font-size: 17px; padding: 14px 16px; border: 0; border-radius: 12px; background: var(--fill); color: var(--ink); }
.finder input::placeholder, .sorter input::placeholder { color: #8e8e93; }
.finder .row { display: flex; gap: 10px; }
.finder .row input { flex: 1; min-width: 0; }
button, .btn { font: inherit; font-size: 17px; font-weight: 600; padding: 14px 22px; border: 0; border-radius: 12px; background: var(--ink); color: #fff; cursor: pointer; display: inline-block; }
button:hover, .btn:hover { background: #000; text-decoration: none; }
button.ghost, .btn.ghost { background: var(--fill); color: var(--ink); }
button.ghost:hover, .btn.ghost:hover { background: #ebebed; }
.msg { font-size: 15px; color: var(--grey); margin: 0; min-height: 0; }
.msg:empty { display: none; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 20px; }
/* tiles */
.tiles { list-style: none; padding: 0; margin: 0 0 12px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tiles a { display: block; padding: 16px; border-radius: 12px; background: var(--fill); color: var(--ink); font-weight: 600; }
.tiles a:hover { background: #ebebed; text-decoration: none; }
.tiles.small a { padding: 11px 14px; font-size: 15px; font-weight: 500; }
/* spots */
.spots { list-style: none; padding: 0; margin: 0; }
.spot { padding: 18px 0; border-top: 1px solid var(--line); }
.spot-name { display: block; font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.spot-meta { color: var(--grey); font-size: 15px; margin: 0 0 8px; }
.spot-status { margin: 0 0 6px; font-size: 15px; }
.bits { color: var(--grey); }
.spot-note { color: var(--grey); font-size: 15px; margin: 0 0 8px; }
.spot-act { margin: 0; font-size: 15px; font-weight: 600; }
.spot-act a { margin-right: 18px; }
.st { font-weight: 600; }
.st::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; vertical-align: 1px; background: currentColor; }
.st-ok { color: var(--ok); } .st-cond { color: var(--cond); } .st-no { color: var(--no); } .st-unk { color: var(--grey); }
.accepts { list-style: none; padding: 0; margin: 0; }
.accepts li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline; }
.accepts li a { color: var(--ink); font-weight: 600; }
.accepts li .spot-note { flex-basis: 100%; margin: 0; }
.sorter { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 4px 0 8px; }
.sorter label { flex: 1; display: flex; align-items: center; gap: 10px; color: var(--grey); font-size: 15px; white-space: nowrap; }
.sorter input { padding: 10px 14px; font-size: 15px; }
.sorter .ghost { padding: 10px 16px; font-size: 15px; }
.sorter .msg { flex-basis: 100%; }
.ad { margin: 28px 0 0; }
footer { border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 48px; color: var(--grey); font-size: 14px; }
footer nav { margin-bottom: 12px; }
@media (min-width: 560px) { .tiles { grid-template-columns: repeat(3, 1fr); } .tiles.small { grid-template-columns: repeat(4, 1fr); } .finder { grid-template-columns: 1fr 1fr; } .finder button[type=submit] { grid-column: 1 / -1; justify-self: start; } .finder .msg { grid-column: 1 / -1; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
