/* ============================================================================
   Trash Finder — editorial surface (marketing / SEO pages)
   BRAND.md decision 4 & 5: paper ground, pine brand surfaces, serif display,
   numbers as the artwork. No illustrations — we do not own any.
   ========================================================================== */

:root {
  --ink:        #14181D;
  --ink-2:      #39424D;
  --ink-3:      #6B7684;
  --ink-4:      #98A2AE;
  --paper:      #F4F5F7;
  --surface:    #FFFFFF;
  --surface-2:  #F8F9FB;
  --line:       #E6E8EC;
  --line-2:     #D6DAE1;
  --pine:       #0E3A2E;
  --pine-2:     #16513E;
  --pine-line:  #23573F;
  --trust:      #2FA75B;
  --trust-on-pine: #6FD69B;
  --trust-100:  #E3F5EA;
  --clay:       #B4643C;
  --indigo:     #3A6B9E;
  --plum:       #6A5B9E;
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-pill: 999px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv05" 1;
}
a { color: inherit; }
.num { font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.serif {
  font-family: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  font-weight: 400; letter-spacing: -.01em;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.i { width: 18px; height: 18px; stroke-width: 1.8; flex: none; vertical-align: -3px; }

/* ------------------------------------------------------------------ header */
.site-head {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex; align-items: center; gap: 28px; height: 62px;
}
.wordmark {
  display: flex; align-items: center; gap: 9px; text-decoration: none;
  font-size: 16px; font-weight: 640; letter-spacing: -.02em; flex: none;
}
.wordmark .mark {
  width: 26px; height: 26px; border-radius: 7px; background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.wordmark .mark svg { width: 15px; height: 15px; stroke-width: 2; }
.site-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.site-nav a {
  text-decoration: none; font-size: 14px; font-weight: 520; color: var(--ink-3);
  transition: color .16s;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 9px 16px;
  border-radius: var(--r-pill); font-weight: 580 !important; font-size: 14px;
}
@media (max-width: 720px) { .site-nav a:not(.nav-cta) { display: none; } }

/* -------------------------------------------------------------------- hero */
.hero { padding: 76px 0 56px; }
.eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-4); margin-bottom: 20px;
}
h1.display {
  font-size: clamp(44px, 8vw, 82px); line-height: 1.02; margin: 0 0 22px;
  max-width: 15ch;
}
.lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-2); max-width: 62ch; margin: 0; }
.lede strong { font-weight: 600; color: var(--ink); }

/* ------------------------------------------------------------- number band */
.figures {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; margin: 46px 0;
}
.figure { background: var(--surface); padding: 28px 26px 26px; }
.figure b {
  display: block; font-size: clamp(40px, 6vw, 62px); font-weight: 620; line-height: 1;
  letter-spacing: -.045em; font-variant-numeric: tabular-nums;
}
.figure b small { font-size: .42em; font-weight: 560; color: var(--ink-4); letter-spacing: -.02em; }
.figure span {
  display: block; margin-top: 12px; font-size: 12px; font-weight: 640;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-4);
}
.figure p { margin: 8px 0 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.figure[data-tone="trust"] b { color: var(--trust); }

/* ---------------------------------------------------------------- sections */
section { padding: 14px 0 40px; }
h2.section {
  font-size: clamp(28px, 4vw, 40px); line-height: 1.12; margin: 48px 0 18px; max-width: 22ch;
}
h3 { font-size: 18px; font-weight: 620; letter-spacing: -.015em; margin: 34px 0 10px; }
p { max-width: 68ch; }
.prose p { margin: 0 0 18px; color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }
.small { font-size: 14px; color: var(--ink-3); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

/* confidence key */
.levels { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
          border-radius: var(--r-lg); overflow: hidden; }
.level { background: var(--surface); padding: 20px 24px; display: grid;
         grid-template-columns: 150px 1fr; gap: 20px; align-items: start; }
@media (max-width: 640px) { .level { grid-template-columns: 1fr; gap: 8px; } }
.level-name { display: flex; align-items: center; gap: 10px; font-weight: 640; font-size: 15px; }
.meter { display: flex; gap: 3px; width: 54px; flex: none; }
.meter i { height: 4px; flex: 1; border-radius: 2px; background: var(--line-2); }
.meter i.on { background: var(--trust); }
.meter[data-level="2"] i.on { background: var(--indigo); }
.meter[data-level="1"] i.on { background: var(--ink-4); }
.level p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.level .count { font-size: 13px; color: var(--ink-4); margin-top: 6px; font-variant-numeric: tabular-nums; }

/* spot list */
.spotlist { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
            background: var(--surface); }
.spot {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  text-decoration: none; border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.spot:last-child { border-bottom: 0; }
.spot:hover { background: var(--surface-2); }
.spot-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--trust); flex: none; }
.spot-dot[data-c="likely"] { background: var(--ink-4); }
.spot-body { min-width: 0; flex: 1; }
.spot-name { display: block; font-size: 15px; font-weight: 560; letter-spacing: -.01em; }
.spot-meta { display: block; font-size: 12.5px; color: var(--ink-4); margin-top: 3px; }
.badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 6px; background: var(--trust-100); color: #1F7B45; flex: none;
}
.badge[data-c="likely"] { background: #EFEEE8; color: var(--ink-3); }
.badge[data-a="customers_only"] { background: #EBE8F4; color: var(--plum); }
.badge[data-a="beverage_only"] { background: #E5EDF4; color: var(--indigo); }
.badge[data-a="ticketed_area"] { background: #F6EBE3; color: var(--clay); }
.badge[data-a="unknown"] { background: #EFEEE8; color: var(--ink-3); }

/* table */
.table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.table th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-4); padding: 0 14px 10px 0;
  border-bottom: 1px solid var(--line-2);
}
.table td { padding: 12px 14px 12px 0; border-bottom: 1px solid var(--line); }
.table td:last-child, .table th:last-child { text-align: right; padding-right: 0; }
.table a { text-decoration: none; font-weight: 560; }
.table a:hover { text-decoration: underline; }
.table .v { font-variant-numeric: tabular-nums; font-weight: 620; }
.table .v em { font-style: normal; color: var(--trust); }
.table .v.zero em { color: var(--ink-4); }

/* pine surface */
.pine {
  background: var(--pine); color: #E8EFEA; margin-top: 70px;
  border-top: 1px solid var(--pine-line);
}
.pine h2 { color: #fff; }
.pine .figure { background: var(--pine-2); }
.pine .figures { background: var(--pine-line); border-color: var(--pine-line); }
.pine .figure b { color: #fff; }
.pine .figure[data-tone="trust"] b { color: var(--trust-on-pine); }
.pine .figure span, .pine .figure p { color: #9DB5A7; }
.cta-band { padding: 66px 0; }
.cta-band p { color: #A8C0B2; max-width: 56ch; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  background: #fff; color: var(--pine); text-decoration: none;
  padding: 15px 26px; border-radius: var(--r-pill); font-weight: 620; font-size: 16px;
  transition: transform .18s cubic-bezier(.32,.72,0,1);
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--pine-line); }

/* footer */
.site-foot { background: var(--pine); color: #8FAA9B; padding: 46px 0 54px; font-size: 13.5px; }
.site-foot .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 32px; }
.site-foot h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #5E7C6C; margin: 0 0 12px;
}
.site-foot a { color: #C6D8CC; text-decoration: none; display: block; margin-bottom: 8px; }
.site-foot a:hover { color: #fff; }
.site-foot .legal { grid-column: 1 / -1; border-top: 1px solid var(--pine-line);
                    padding-top: 22px; margin-top: 10px; font-size: 12.5px; line-height: 1.6; }

/* misc */
.crumbs { font-size: 13px; color: var(--ink-4); padding-top: 26px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.note-inline {
  border-left: 2px solid var(--line-2); padding: 2px 0 2px 18px; margin: 26px 0;
  color: var(--ink-3); font-size: 15px;
}
.faq dt { font-weight: 620; margin-top: 24px; font-size: 16px; }
.faq dd { margin: 8px 0 0; color: var(--ink-2); max-width: 68ch; }
