/* ═══════════════════════════════════════════════════════════════
   SEE THE SIX · v4
   Pure white canvas. Neutral greys only, no cream, no warm tints.
   Typography is Inter and Inter Tight: neutral, highly legible,
   no decorative or gendered lean.
   Colour does a job:
     Action  #1D4ED8  arousal and urgency. CTAs only, so it always
                      wins the contrast contest on any screen.
     Open    #157F47  go, safe. Opening-hours signals only.
     Muted   #8A8A8A  deliberately calm. "Unclaimed" must never
                      read as an error or a warning.
   Zero shadows. Cards separate by fill, not by outline.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --canvas:  #FFFFFF;
  --card:    #F7F7F7;
  --card-2:  #FFFFFF;
  --surface: #F7F7F7;
  --surface-2: #F0F0F0;
  --ink:     #141414;
  --ink-2:   #636363;
  --ink-3:   #8A8A8A;
  --hair:    #E6E6E6;
  --hair-inv: rgba(255,255,255,0.14);
  --dark:    #141414;
  --media:   #EDEDED;

  --action:     #1D4ED8;
  --action-hi:  #1A45BE;
  --action-ink: #1E40AF;
  --open:       #157F47;
  --muted:      #8A8A8A;

  --t-display: clamp(32px, 4.4vw, 60px);
  --t-title:   clamp(24px, 2.6vw, 38px);
  --t-sub:     clamp(18px, 1.6vw, 22px);
  --t-card:    17px;
  --t-lede:    clamp(15px, 1.25vw, 17px);
  --t-body:    15px;
  --t-meta:    13px;
  --t-micro:   11px;

  --lh-display: 1.04;
  --lh-title:   1.12;
  --lh-body:    1.62;
  --tr-display: -0.035em;
  --tr-title:   -0.025em;
  --tr-caps:     0.14em;

  --display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r: 14px; --r-sm: 10px; --r-pill: 999px;

  --content: 1200px;
  --gutter: clamp(18px, 3.4vw, 48px);
  --wrap: calc(var(--content) + var(--gutter) * 2);
  --gap: clamp(52px, 6vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas); color: var(--ink);
  font-family: var(--sans); font-size: var(--t-body); line-height: var(--lh-body);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 2.5px solid var(--action); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--gap) 0; }
.rule { height: 1px; background: var(--hair); border: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Type primitives ────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: var(--tr-caps); text-transform: uppercase;
  color: var(--action-ink); line-height: 1; margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; }
.title {
  font-family: var(--display); font-size: var(--t-title); font-weight: 700;
  letter-spacing: var(--tr-title); line-height: var(--lh-title); max-width: 22ch;
}
.support { font-size: var(--t-lede); color: var(--ink-2); max-width: 620px; margin-top: 12px; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.seeall { font-size: var(--t-meta); font-weight: 700; color: var(--action-ink); display: inline-flex; align-items: center; gap: 6px; }
.seeall:hover { gap: 10px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; height: 48px; padding: 0 24px;
  border-radius: var(--r-pill); font-size: 15px; font-weight: 600; line-height: 1;
  transition: opacity 0.2s, transform 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { flex: none; }
.btn-action { background: var(--action); color: #fff; }
.btn-action:hover { background: var(--action-hi); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { opacity: 0.88; }
.btn-grey { background: var(--surface); color: var(--ink); }
.btn-grey:hover { background: var(--surface-2); }
.on-dark .btn-grey { background: rgba(255,255,255,0.13); color: #fff; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn-round { width: 42px; height: 42px; padding: 0; flex: none; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Media ──────────────────────────────────────────────── */
/* display:block is load-bearing. .media is an <a>; as a direct flex child of
   .card it was blockified for free, but inside .media-wrap it reverts to
   inline and aspect-ratio silently stops applying. */
.media { position: relative; display: block; overflow: hidden; background: var(--media); }
/* Absolutely positioned so the CONTAINER's ratio always wins. Every .media
   has its own definite size (72px, 4/3, 16/10, inset:0), so the image must
   never be able to set the box height - with real photographs of mixed
   orientation it otherwise drags cards to 374px or 187px instead of 210. */
.media img { position: absolute; inset: 0; width: 100%; height: 100%;
             object-fit: cover; transition: transform 0.7s var(--ease); }
.media.round { border-radius: var(--r); }
.media.noimg::after {
  content: attr(data-shot); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center;
  font-size: var(--t-micro); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: #A0A0A0;
  background-image: radial-gradient(#D2D2D2 1px, transparent 1px); background-size: 13px 13px;
}
.ar-43 { aspect-ratio: 4 / 3; } .ar-11 { aspect-ratio: 1 / 1; }
.ar-34 { aspect-ratio: 3 / 4; } .ar-169 { aspect-ratio: 16 / 9; }

/* ── Nav: transparent over hero, solid on scroll ────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s;
}
.nav.solid { background: var(--canvas); border-bottom-color: var(--hair); }
.nav.static { position: sticky; background: var(--canvas); border-bottom-color: var(--hair); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-h); display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 9px; flex: none; }
.brand-mark {
  width: 32px; height: 32px; border-radius: var(--r-sm); flex: none;
  background: var(--action); color: #fff; display: flex; align-items: center; justify-content: center;
}
.brand-mark svg { display: block; }
.brand-word { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.03em; color: #fff; transition: color 0.35s; }
.brand-five { color: var(--action); }
.nav.solid .brand-word, .nav.static .brand-word { color: var(--ink); }
.nav-search { flex: 1; max-width: 400px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.18); border-radius: var(--r-pill); padding: 0 16px; height: 42px; transition: background 0.35s; }
.nav.solid .nav-search, .nav.static .nav-search { background: var(--surface); }
.nav-search svg { flex: none; color: rgba(255,255,255,0.8); transition: color 0.35s; }
.nav.solid .nav-search svg, .nav.static .nav-search svg { color: var(--ink-2); }
.nav-search input { flex: 1; min-width: 0; background: none; border: none; outline: none; font-family: inherit; font-size: 14px; color: #fff; }
.nav-search input::placeholder { color: rgba(255,255,255,0.72); }
.nav.solid .nav-search input, .nav.static .nav-search input { color: var(--ink); }
.nav.solid .nav-search input::placeholder, .nav.static .nav-search input::placeholder { color: var(--ink-3); }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); transition: color 0.35s; }
.nav.solid .nav-links a, .nav.static .nav-links a { color: var(--ink-2); }
.nav.solid .nav-links a:hover, .nav.static .nav-links a:hover { color: var(--ink); }
.nav-cta { flex: none; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s, background 0.35s; }
.nav.solid .nav-toggle span, .nav.static .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-panel { display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190; background: var(--canvas); flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
.nav-panel.open { display: flex; }
.nav-panel a { font-family: var(--display); font-size: var(--t-sub); font-weight: 700; letter-spacing: -0.02em; }
@media (max-width: 1040px) { .nav-links, .nav-cta { display: none; } .nav-toggle { display: flex; } }
@media (max-width: 700px) { .nav-search { display: none; } }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; min-height: clamp(460px, 60vh, 600px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(96deg, rgba(15,15,15,0.93) 0%, rgba(15,15,15,0.8) 42%, rgba(15,15,15,0.38) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: calc(var(--nav-h) + 44px) var(--gutter) 54px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: #fff; background: var(--action); padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 18px; }
.hero h1 { font-family: var(--display); font-size: var(--t-display); font-weight: 700; letter-spacing: var(--tr-display); line-height: var(--lh-display); color: #fff; max-width: 17ch; margin-bottom: 16px; }
.hero p { font-size: var(--t-lede); color: rgba(255,255,255,0.84); max-width: 56ch; margin-bottom: 30px; }
.hero-search { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: var(--r-pill); padding: 6px 6px 6px 22px; max-width: 560px; height: 60px; }
.hero-search > svg { flex: none; color: var(--ink-2); }
.hero-search input { flex: 1; min-width: 0; background: none; border: none; outline: none; font-family: inherit; font-size: var(--t-body); color: var(--ink); }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-meta); font-weight: 500; color: rgba(255,255,255,0.82); }
.hero-trust svg { flex: none; color: var(--action); }
@media (max-width: 620px) { .hero { min-height: 0; } .hero-search { height: 54px; } }

/* ── Page header (inner pages) ──────────────────────────── */
.pagehead { padding: 40px 0 34px; border-bottom: 1px solid var(--hair); }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: var(--t-meta); color: var(--ink-3); margin-bottom: 16px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink-3); }
.pagehead h1 { font-family: var(--display); font-size: clamp(28px, 3.4vw, 46px); font-weight: 700; letter-spacing: var(--tr-display); line-height: 1.08; max-width: 22ch; }
.pagehead p { font-size: var(--t-lede); color: var(--ink-2); max-width: 640px; margin-top: 12px; }

/* ── Category rail: centred when it fits ────────────────── */
.cats-wrap { padding: 30px 0 10px; }
.cats { display: flex; justify-content: center; gap: 26px; min-width: min-content; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.cats::-webkit-scrollbar { display: none; }
@media (max-width: 820px) { .cats { justify-content: flex-start; } }
.cat { flex: none; width: 92px; background: none; border: none; cursor: pointer; text-align: center; padding: 0; }
.cat .media { width: 72px; height: 72px; border-radius: var(--r-pill); margin: 0 auto 9px; transition: transform 0.25s var(--ease); }
.cat:hover .media { transform: translateY(-3px); }
.cat span { display: block; font-size: var(--t-meta); font-weight: 600; color: var(--ink-2); line-height: 1.3; }
.cat.on .media { outline: 2.5px solid var(--action); outline-offset: 3px; }
.cat.on span { color: var(--ink); }

/* ── Cards: image flush, text padded ────────────────────── */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1180px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px)  { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 0.22s;
}
.card:hover { background: var(--surface-2); }
.card .media { border-radius: 0; }          /* image is flush, no padding */
.card:hover .media img { transform: scale(1.05); }
.card .media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  background: linear-gradient(to top, rgba(15,15,15,0.72) 0%, rgba(15,15,15,0.3) 46%, rgba(15,15,15,0) 100%);
  pointer-events: none; z-index: 1;
}
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.tag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: rgba(255,255,255,0.95); color: var(--ink);
  font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.fav {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: var(--r-pill); border: none; cursor: pointer;
  background: rgba(255,255,255,0.95); color: var(--ink);
  display: flex; align-items: center; justify-content: center; transition: color 0.2s, transform 0.2s;
}
.fav:hover { transform: scale(1.08); }
.fav.on { color: var(--action); }
.fav.on svg { fill: currentColor; }
.hours-chip { position: absolute; left: 14px; bottom: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 7px; font-size: var(--t-meta); font-weight: 600; color: #fff; }
.dot { width: 7px; height: 7px; border-radius: var(--r-pill); flex: none; background: var(--open); }
.dot-muted { background: var(--muted); }

.card-name { font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 4px; }
.card-name a:hover { color: var(--action-ink); }
.card-kind { font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 11px; }
.card-facts { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.card-facts span { display: flex; align-items: flex-start; gap: 8px; font-size: var(--t-meta); color: var(--ink-2); line-height: 1.45; }
.card-facts svg { flex: none; margin-top: 2px; color: var(--ink-3); }
.card-facts .fact-open { color: var(--ink); font-weight: 500; }
.card-foot { margin-top: auto; display: flex; gap: 8px; }
.card-foot .btn-action { flex: 1; }
.card-foot .btn-grey { background: var(--card-2); }
.card:hover .card-foot .btn-grey { background: #fff; }
.claim { margin-top: 11px; font-size: var(--t-micro); color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.claim a { color: var(--action-ink); font-weight: 700; }
.card[hidden] { display: none; }

.count-line { font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 22px; }
.count-line b { color: var(--ink); }
.note { margin-top: 26px; font-size: var(--t-meta); color: var(--ink-2); max-width: 700px; }
.note a { color: var(--action-ink); font-weight: 600; }
.more-wrap { display: flex; justify-content: center; margin-top: 34px; }

/* ── Detail page ────────────────────────────────────────── */
.detail { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: start; padding: 40px 0 var(--gap); }
/* Both columns must be allowed to shrink below their content's intrinsic width,
   or a wide image (the shop slider, a product shot) blows the 7fr/5fr split. */
.detail > * { min-width: 0; }
@media (max-width: 940px) { .detail { grid-template-columns: 1fr; } }
.detail-hero { border-radius: var(--r); overflow: hidden; margin-bottom: 26px; }
.detail h2 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.detail-block { margin-bottom: 30px; }
.detail-block p { color: var(--ink-2); }
.spec-list { list-style: none; display: grid; gap: 0; }
.spec-list li { display: grid; grid-template-columns: 132px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--hair); font-size: var(--t-body); }
.spec-list li:last-child { border-bottom: none; }
.spec-list dt, .spec-k { font-size: var(--t-meta); font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.spec-v a { color: var(--action-ink); font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td, .hours-table th { padding: 9px 0; font-size: var(--t-body); border-bottom: 1px solid var(--hair); }
.hours-table th { text-align: left; font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--ink-2); }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: none; }

/* One row per day. Today is bolded by app.js, because this page is built once
   and read for weeks - the server has no business deciding what day it is. */
.hours-week .hrow-closed td { color: var(--ink-3); }
.hours-week tr.is-today th, .hours-week tr.is-today td { font-weight: 700; color: var(--ink); }
.hours-week tr.is-today th::after { content: " · today"; font-weight: 500; color: var(--ink-3);
  text-transform: uppercase; font-size: var(--t-micro); letter-spacing: var(--tr-caps); }
.hours-today { display: flex; align-items: center; gap: 8px; font-size: var(--t-meta);
  font-weight: 600; margin-bottom: 14px; }
.hours-today.shut { color: var(--ink-2); }

.sidecard { background: var(--card); border-radius: var(--r); padding: 24px; position: sticky; top: calc(var(--nav-h) + 20px); }
.sidecard .status { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-meta); font-weight: 600; margin-bottom: 14px; }
.sidecard h3 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.sidecard .side-kind { font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 20px; }
.sidecard .btn { width: 100%; margin-bottom: 9px; }
.sidecard .btn-grey { background: var(--card-2); }
.side-claim { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--hair); font-size: var(--t-meta); color: var(--ink-2); }
/* Scoped away from buttons on purpose. `.side-claim a` is (0,2,0) and beat
   `.btn-claim { color:#fff }` at (0,1,0), which painted dark orange text on the
   orange Claim button and made it unreadable. :not(.btn) keeps the rule for
   real links in this block and stops it reaching any button in it. */
.side-claim a:not(.btn) { color: var(--action-ink); font-weight: 700; }
.mapframe { border: none; width: 100%; height: 260px; border-radius: var(--r); background: var(--media); margin-top: 18px; }

/* ── Dark band ──────────────────────────────────────────── */
.on-dark { background: var(--dark); color: #fff; }
.on-dark .title { color: #fff; }
.on-dark .support { color: rgba(255,255,255,0.68); }
.on-dark .eyebrow { color: var(--action); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding-top: 20px; border-top: 2px solid var(--hair-inv); }
.step:first-child { border-top-color: var(--action); }
.step h3 { font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.step p { font-size: var(--t-body); color: rgba(255,255,255,0.64); }

/* ── Boroughs ───────────────────────────────────────────── */
.boro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .boro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .boro-grid { grid-template-columns: 1fr; } }
.boro .media { aspect-ratio: 16 / 10; border-radius: var(--r); }
.boro:hover .media img { transform: scale(1.05); }
.m-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px; color: #fff; background: linear-gradient(to top, rgba(15,15,15,0.94) 0%, rgba(15,15,15,0.84) 20%, rgba(15,15,15,0.42) 46%, rgba(15,15,15,0) 74%); }
.m-cap strong { display: block; font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px; }
.m-cap span { font-size: var(--t-meta); color: rgba(255,255,255,0.82); }

/* ── Chips ──────────────────────────────────────────────── */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.chip { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 16px; border-radius: var(--r-pill); background: var(--surface); color: var(--ink); font-size: 14px; font-weight: 600; }
.chip:hover { background: var(--surface-2); }
.chip b { color: var(--ink-3); font-weight: 600; }

/* ── Split ──────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.split-7 { grid-template-columns: 7fr 5fr; }
@media (max-width: 900px) { .split, .split-7 { grid-template-columns: 1fr; } .split.flip .col-copy { order: -1; } }
.ticks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--t-body); color: var(--ink-2); }
.ticks svg { flex: none; margin-top: 4px; color: var(--open); }
.on-dark .ticks li { color: rgba(255,255,255,0.72); }
.acts { margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Form ───────────────────────────────────────────────── */
.form { display: grid; gap: 12px; max-width: 540px; margin-top: 26px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field label { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: var(--ink-2); }
.f-field input, .f-field select {
  width: 100%; height: 50px; padding: 0 18px; border: none; border-radius: var(--r-pill);
  background: var(--surface); font-family: inherit; font-size: var(--t-body); color: var(--ink); outline: none;
  -webkit-appearance: none; appearance: none;
}
.f-field input::placeholder { color: var(--ink-3); }
.f-field input:focus, .f-field select:focus { background: var(--surface-2); }
.f-err { font-size: var(--t-meta); color: var(--action-ink); display: none; }
.f-err.show { display: block; }
.f-note { font-size: var(--t-meta); color: var(--ink-2); }
.f-note a { color: var(--action-ink); font-weight: 600; }
.f-note a:hover { text-decoration: underline; }
/* Show/hide password toggle (button injected by app.js) */
.pw-wrap { position: relative; width: 100%; }
.pw-wrap input { padding-right: 52px; }
.pw-toggle { position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; color: var(--ink-3); cursor: pointer;
  border-radius: 50%; padding: 0; }
.pw-toggle:hover { color: var(--ink); background: var(--surface-2); }
.pw-toggle svg { width: 20px; height: 20px; }
.f-done { background: var(--surface); border-radius: var(--r); padding: 20px 22px; font-size: var(--t-body); }
.f-spin { animation: spin 0.75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item:first-child { border-top: 1px solid var(--hair); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 0; background: none; border: none; cursor: pointer; font-size: var(--t-body); font-weight: 600; color: var(--ink); text-align: left; }
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--action-ink); }
.faq-icon { width: 15px; height: 15px; flex: none; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; }
.faq-icon::before { width: 11px; height: 2px; top: 6.5px; left: 2px; }
.faq-icon::after { width: 2px; height: 11px; top: 2px; left: 6.5px; transition: transform 0.3s, opacity 0.3s; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 460px; }
.faq-a p { padding: 0 0 19px; color: var(--ink-2); }
.faq-a a { color: var(--action-ink); font-weight: 600; }
.aside { background: var(--card); border-radius: var(--r); padding: 26px; }
.aside h3 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 9px; }
.aside p { font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 20px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--dark); color: #fff; padding: clamp(48px, 5.5vw, 76px) 0 30px; margin-top: var(--gap); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 42px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand-word { color: #fff; }
.footer-tag { font-size: var(--t-meta); color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 34ch; }
.f-head { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: var(--action); margin-bottom: 16px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: var(--t-meta); color: rgba(255,255,255,0.72); }
.f-links a:hover { color: var(--action); }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a { width: 38px; height: 38px; border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.74); transition: background 0.2s, color 0.2s; }
.f-social a:hover { background: var(--action); color: #fff; }
.footer-base { padding-top: 24px; border-top: 1px solid var(--hair-inv); display: flex; flex-direction: column; gap: 7px; font-size: var(--t-meta); color: rgba(255,255,255,0.46); }
.footer-base a { color: rgba(255,255,255,0.68); text-decoration: underline; text-underline-offset: 2px; }

/* ── Mobile sticky ──────────────────────────────────────── */
.sticky { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; background: var(--dark); }
.sticky a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 12px; color: #fff; font-size: 14px; font-weight: 600; }
.sticky a + a { background: var(--action); }
@media (max-width: 700px) { .sticky { display: flex; } body { padding-bottom: 54px; } }

.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .rv { opacity: 1 !important; transform: none !important; }
}

/* ── Featured, rails, panel, pricing, prose (v4 additions) ─ */
.tag-feat { background: var(--action); color: #fff; display: inline-flex; align-items: center; gap: 5px; }
.card-feat { outline: 2px solid var(--action); outline-offset: -2px; }
.claim-ok { color: var(--open); display: flex; align-items: center; gap: 6px; }
.claim-ok svg { flex: none; }
.dim { opacity: 0.5; }
.sec-tight { padding: calc(var(--gap) * 0.62) 0; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(268px, 1fr); gap: 20px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > .card { scroll-snap-align: start; }
@media (min-width: 1240px) { .rail { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(4, 1fr); grid-auto-flow: row; overflow: visible; } .rail > .card:nth-child(n+5) { display: none; } }
.panel { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 56px); align-items: center; background: var(--card); border-radius: var(--r); padding: clamp(28px, 4vw, 44px); }
@media (max-width: 900px) { .panel { grid-template-columns: 1fr; } }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--card); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; }
.price-card-on { background: var(--dark); color: #fff; }
.price-card-on .ticks li { color: rgba(255,255,255,0.74); }
.price-card-on .ticks svg { color: var(--action); }
.price-name { display: inline-flex; align-items: center; gap: 7px; font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: var(--ink-3); }
.price-card-on .price-name { color: var(--action); }
.price-amt { font-family: var(--display); font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: var(--tr-title); margin: 10px 0 4px; }
.price-amt span { display: block; font-family: var(--sans); font-size: var(--t-meta); font-weight: 400; color: var(--ink-3); letter-spacing: 0; margin-top: 4px; }
.price-card-on .price-amt span { color: rgba(255,255,255,0.6); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card .ticks { margin-bottom: 26px; }
.detail-hero { position: relative; min-height: clamp(400px, 52vh, 520px); display: flex; align-items: flex-end; overflow: hidden; }
.detail-hero-bg { position: absolute; inset: 0; border-radius: 0; }
.detail-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,15,0.94) 0%, rgba(15,15,15,0.74) 42%, rgba(15,15,15,0.42) 100%); }
.detail-hero-inner { position: relative; z-index: 2; width: 100%; padding: 34px var(--gutter) 34px; }
.detail-hero h1 { font-family: var(--display); font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: var(--tr-display); line-height: 1.06; color: #fff; max-width: 20ch; margin-bottom: 8px; }
.dh-sub { font-size: var(--t-lede); color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.dh-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 13px; border-radius: var(--r-pill); background: rgba(255,255,255,0.16); color: #fff; font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pill-solid { background: #fff; color: var(--ink); }
.pill-feat { background: var(--action); }
.dh-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-glass { background: rgba(255,255,255,0.16); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,0.26); }
.crumbs.light a, .crumbs.light span { color: rgba(255,255,255,0.72); }
.crumbs.light a:hover { color: #fff; }
.detail { padding-top: 40px; }
.spec-list li { grid-template-columns: 132px 1fr; }
.spec-v { font-size: var(--t-body); }
.mt { margin-top: 14px; }
.fineprint { margin-top: 12px; font-size: var(--t-meta); color: var(--ink-3); }
.prose { max-width: 760px; padding: 34px 0 var(--gap); }
.prose .lead { font-size: var(--t-lede); color: var(--ink-2); margin-bottom: 26px; }
.prose h2 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700; letter-spacing: var(--tr-title); margin: 30px 0 10px; }
.prose h3 { font-size: var(--t-card); font-weight: 700; margin: 20px 0 8px; }
.prose p { color: var(--ink-2); margin-bottom: 12px; }
.prose a { color: var(--action-ink); font-weight: 600; }


/* ── v5: square-topped card media, square hero ────────────── */
.card { border-radius: 0 0 var(--r) var(--r); }
.card .media, .card .media img { border-radius: 0; }
.hero, .hero-bg, .hero-bg img,
.detail-hero, .detail-hero-bg, .detail-hero-bg img { border-radius: 0; }

/* ── v6: accounts, claim, report, admin queue ─────────────── */
.wrap.narrow { max-width: 720px; }
.nav-acct { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); flex: none; }
.nav.solid .nav-acct, .nav.static .nav-acct { color: var(--ink); }
.nav-acct:hover { color: var(--action); }
.row-tools { display: flex; gap: 14px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--hair); }
.tool { background: none; border: none; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.tool:hover { color: var(--action-ink); }
.tool-edit { color: var(--action-ink); }
.f-check { display: flex; gap: 10px; align-items: flex-start; font-size: var(--t-meta); color: var(--ink-2); line-height: 1.5; }
.f-check input { width: 18px; height: 18px; margin-top: 1px; flex: none; accent-color: var(--action); }
.f-check a { color: var(--action-ink); font-weight: 600; }
.f-bad { background: #E7EDFC; color: #15307D; }
.f-field textarea { width: 100%; padding: 14px 18px; border: none; border-radius: var(--r); background: var(--surface); font-family: inherit; font-size: var(--t-body); color: var(--ink); outline: none; resize: vertical; }
.f-field textarea:focus { background: var(--surface-2); }
.form-wide { max-width: 720px; }
.claim-target { background: var(--card); border-radius: var(--r); padding: 22px 24px; margin-bottom: 30px; }
.claim-target .title { font-size: var(--t-sub); margin-bottom: 2px; }
.claim-target .support { margin-top: 2px; font-size: var(--t-meta); }
.steps-rail { display: grid; gap: 0; margin-bottom: 34px; }
.srail { display: grid; grid-template-columns: 30px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--hair); }
.srail:last-child { border-bottom: none; }
.srail-dot { width: 12px; height: 12px; margin-top: 5px; border-radius: var(--r-pill); outline: 2px solid var(--action); outline-offset: -2px; }
.srail:last-child .srail-dot { background: var(--action); }
.srail h3 { font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.srail p { font-size: var(--t-meta); color: var(--ink-2); }
.dash-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.queue { display: grid; gap: 10px; }
.qrow { background: var(--card); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.qrow strong { display: block; font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3px; }
.qrow span { font-size: var(--t-meta); color: var(--ink-2); }
.qrow b { color: var(--action-ink); }
.qacts { display: flex; gap: 8px; flex: none; }
.modal { position: fixed; inset: 0; z-index: 400; background: rgba(15,15,15,0.62); display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-inner { background: var(--canvas); border-radius: var(--r); padding: 30px; max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.modal-inner .title { font-size: var(--t-sub); }
.modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--ink-3); }
.modal-x:hover { color: var(--ink); }

/* Google photo attribution. Required wherever a Places photo is shown, so it
   sits over the hero and must stay legible against any image behind it. */
.photo-credit {
  position: absolute; right: 12px; bottom: 10px; z-index: 2; margin: 0;
  font-size: 11px; line-height: 1.4; color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.46); padding: 4px 9px; border-radius: var(--r-pill);
  backdrop-filter: saturate(140%) blur(3px);
}
.photo-credit a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.detail-hero { position: relative; }
/* card variant: the same obligation, a tenth of the space. It rides the dark
   gradient .card .media::after already paints, so it stays readable. */
.media-wrap { position: relative; display: block; }
.photo-credit-sm {
  right: 8px; bottom: 6px; font-size: 9.5px; padding: 2px 6px;
  background: rgba(0,0,0,0.5); max-width: calc(100% - 16px);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* `hidden` must actually hide. .tool sets display:inline-flex, which outranks the
   UA [hidden] rule - which is why the Edit link showed to logged-out visitors. */
[hidden] { display: none !important; }
/* the whole card is clickable, so say so */
.card { cursor: pointer; }
.card a, .card button { cursor: pointer; }

/* Claim CTA, lifted into the sidecard so it sits at the top of the right rail
   instead of below the map. */
.side-claim { display: flex; flex-direction: column; gap: 9px; align-items: flex-start;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hair); }
.side-claim strong { font-size: var(--t-meta); font-weight: 600; color: var(--ink); }
.side-claim span { font-size: var(--t-micro); color: var(--ink-3); line-height: 1.5; }
.btn-claim,
.side-claim .btn-claim { width: 100%; justify-content: center; background: var(--action); color: #fff; }
.btn-claim:hover,
.side-claim .btn-claim:hover { background: var(--action-hi); color: #fff; }

/* Claim / add flow: search the directory before creating a duplicate. */
.claim-find { margin-bottom: 26px; }
.find-results { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.find-hit { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 10px 12px; border: 1px solid var(--hair); border-radius: var(--r-sm);
  background: var(--card-2); cursor: pointer; font-family: inherit; }
.find-hit:hover { border-color: var(--action); background: var(--surface); }
.find-hit img { width: 46px; height: 46px; border-radius: var(--r-sm); object-fit: cover; flex: none; }
.find-hit b { display: block; font-size: var(--t-meta); }
.find-hit span { font-size: var(--t-micro); color: var(--ink-3); }
.linklike { background: none; border: none; padding: 0; font: inherit; color: var(--action-ink);
  text-decoration: underline; cursor: pointer; }

/* Reviews. Loaded after paint, so everything here starts hidden and is revealed
   by app.js once the API answers. */
.rv-summary { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.rv-summary b { font-size: 30px; font-family: var(--display); letter-spacing: -0.02em; }
.rv-summary span:last-child { font-size: var(--t-meta); color: var(--ink-2); }
.rv-rate { display: inline-flex; gap: 2px; font-size: 15px; color: var(--hair); letter-spacing: 1px; }
.rv-rate .on { color: var(--action); }
.rv-list { display: flex; flex-direction: column; gap: 18px; }
.rv-item { padding: 16px 0; border-top: 1px solid var(--hair); }
.rv-item h4 { font-family: var(--display); font-size: var(--t-card); margin: 8px 0 4px; }
.rv-item p { font-size: var(--t-body); color: var(--ink-2); line-height: 1.6; }
.rv-by { font-size: var(--t-micro); color: var(--ink-3); margin-top: 8px; }
.rv-reply { margin-top: 12px; padding: 12px 14px; background: var(--surface); border-radius: var(--r-sm); }
.rv-reply b { font-size: var(--t-micro); text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); }
.rv-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 18px; }
.rv-form { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--hair); }
.rv-stars { display: inline-flex; gap: 4px; }
.rv-stars button { background: none; border: none; cursor: pointer; font-size: 30px;
  line-height: 1; padding: 0 2px; color: var(--hair); transition: color 0.15s; }
.rv-stars button:hover, .rv-stars button.on { color: var(--action); }
.opt { font-weight: 400; color: var(--ink-3); font-size: var(--t-micro); }


/* ── /search/ ────────────────────────────────────────────
   A destination for the search box. The filter always worked; on the home page
   the grid it repaints sits three screens down, so a query looked ignored. */
.page-search { display: flex; align-items: center; gap: 10px; background: var(--card);
  border: 1px solid var(--hair); border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px; max-width: 620px; height: 58px; margin-top: 20px; }
.page-search > svg { flex: none; color: var(--ink-2); }
.page-search input { flex: 1; min-width: 0; background: none; border: none; outline: none;
  font-family: inherit; font-size: var(--t-body); color: var(--ink); }
.page-search:focus-within { border-color: var(--action); }
.search-eg { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px;
  font-size: var(--t-micro); color: var(--ink-3); }
.search-eg a { padding: 5px 12px; border: 1px solid var(--hair); border-radius: var(--r-pill);
  color: var(--ink-2); font-weight: 600; }
.search-eg a:hover { border-color: var(--action); color: var(--action-ink); }
@media (max-width: 620px) { .page-search { height: 52px; padding-left: 16px; } }

/* ── /claim/ : two named paths ───────────────────────────
   "Add it as a new business instead" was a footnote under a search box, which
   is why owners who genuinely were not in the directory kept filing claims
   against nothing. Both routes are a card now. Weighted, not hidden. */
.claim-pick { margin-bottom: 26px; }
.pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
@media (max-width: 760px) { .pick-grid { grid-template-columns: 1fr; } }
.pick { display: flex; flex-direction: column; align-items: flex-start; gap: 7px;
  text-align: left; padding: 20px; border: 1.5px solid var(--hair); border-radius: var(--r);
  background: var(--card); font-family: inherit; cursor: pointer; transition: border-color .15s, background .15s; }
.pick:hover, .pick:focus-visible { border-color: var(--action); background: var(--card-2); }
.pick b { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); }
.pick .pick-say { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; }
.pick-tag { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--action-ink); }
.pick-tag-quiet { color: var(--ink-3); }
.pick-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  font-size: var(--t-meta); font-weight: 700; color: var(--action-ink); }

.claim-gate { margin-bottom: 26px; padding: 24px; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--hair); }
.claim-gate .support { margin-top: 8px; }
.gate-acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
/* .btn-grey is --surface, which is the same colour as this panel, so the second
   button vanished into it. Same treatment the sidecard already uses. */
.claim-gate .btn-grey { background: var(--card-2); border: 1px solid var(--hair); }
.claim-gate .btn-grey:hover { background: var(--surface-2); }
.claim-gate .f-note { margin-top: 16px; }

/* ── /featured/ : pricing ────────────────────────────────
   Three tiers, because a banquet hall booking once for four figures and a
   salon booking nine times a year for sixty dollars are not the same product
   and should not carry the same price. */
.pbill { display: inline-flex; gap: 4px; margin-top: 22px; padding: 4px;
  background: var(--card); border-radius: var(--r-pill); }
.pbill-b { display: inline-flex; align-items: center; gap: 8px; border: none;
  background: none; font-family: inherit; font-size: var(--t-meta); font-weight: 600;
  color: var(--ink-2); padding: 9px 18px; border-radius: var(--r-pill); cursor: pointer; }
.pbill-b.on { background: var(--canvas); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.07); }
.pbill-b span { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--open); }

.ptier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .ptier-grid { grid-template-columns: 1fr; } }
.ptier { display: flex; flex-direction: column; gap: 8px; padding: 26px;
  background: var(--card); border-radius: var(--r); }
.ptier-ic, .paddon-ic { display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; background: rgba(29,78,216,0.10);
  color: var(--action); }
.ptier-ic svg, .paddon-ic svg { width: 25px; height: 25px; }
.ptier-ic { margin-bottom: 6px; }
.paddon-ic { margin-bottom: 12px; }
.ptier-k { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--action-ink); }
.ptier-amt { font-family: var(--display); font-size: clamp(30px, 3.4vw, 42px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; margin: 6px 0 0; font-variant-numeric: tabular-nums; }
.ptier-amt span { display: block; font-family: var(--sans); font-size: var(--t-meta);
  font-weight: 400; letter-spacing: 0; color: var(--ink-3); margin-top: 7px; }
.ptier-alt { font-size: var(--t-meta); color: var(--ink-2); font-weight: 600;
  font-variant-numeric: tabular-nums; margin: 0; }
.ptier-why { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; margin: 6px 0 0; }
.ptier-for { font-size: var(--t-micro); color: var(--ink-3); line-height: 1.5;
  padding-top: 12px; border-top: 1px solid var(--hair); margin: 12px 0 0; }
/* auto, not a fixed gap: Tier C's trade list wraps to two lines and the three
   buttons have to sit on the same baseline anyway. */
.ptier .btn { margin-top: auto; align-self: flex-start; }
.ptier-pct { font-size: var(--t-micro); color: var(--ink-3); }

.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptable { width: 100%; min-width: 660px; border-collapse: collapse; font-size: var(--t-meta); }
.ptable th, .ptable td { text-align: left; padding: 13px 16px 13px 0; border-bottom: 1px solid var(--hair); }
.ptable thead th { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--ink-3); white-space: nowrap; }
.ptable tbody th { font-weight: 600; white-space: nowrap; }
.ptable tbody th a { color: var(--ink); }
.ptable tbody th a:hover { color: var(--action-ink); }
.ptable .pn { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ptable .pn b { font-weight: 700; }
.ptable .ptag { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.ptable tbody tr:last-child th, .ptable tbody tr:last-child td { border-bottom: none; }

.paddon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 760px) { .paddon-grid { grid-template-columns: 1fr; } }
.paddon { padding: 22px; background: var(--card); border-radius: var(--r); }
.paddon h3 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 4px; }
.paddon-amt { font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 9px;
  font-variant-numeric: tabular-nums; }
.paddon-amt b { font-size: var(--t-body); font-weight: 700; color: var(--ink); }
.paddon-amt span { color: var(--ink-3); }
.paddon p:last-child { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; margin: 0; }
.ticks-lg li { font-size: var(--t-body); }

/* ── Verified business ───────────────────────────────────
   A stronger claim than "Claimed by the owner", so it gets the ink weight and
   replaces that line rather than crowding in beside it. Green, not orange:
   orange is the paid/promotional colour on this site and Verified is a
   statement about checks, not about money changing hands. */
.claim-vd { display: flex; align-items: center; gap: 6px; color: var(--open); font-weight: 600; }
.claim-vd svg { flex: none; }
.pill-vd { background: rgba(21,127,71,0.14); color: #fff; }
.pill-vd svg { margin-right: 5px; vertical-align: -2px; }

/* ── Jobs and deals boards ───────────────────────────────
   Both boards and both listing-page blocks share these, so a job card looks
   the same wherever you meet it. */
.board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px) { .board { grid-template-columns: 1fr; } }
.board-deals { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .board-deals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .board-deals { grid-template-columns: 1fr; } }

.board-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bchip { border: 1px solid var(--hair); background: var(--canvas); border-radius: var(--r-pill);
  padding: 7px 15px; font-family: inherit; font-size: var(--t-meta); font-weight: 600;
  color: var(--ink-2); cursor: pointer; }
.bchip:hover { border-color: var(--action); color: var(--action-ink); }
.bchip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.bchip-static { cursor: default; background: var(--card-2); text-transform: capitalize; }
.bchip-static:hover { border-color: var(--hair); color: var(--ink-2); }

.board-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 20px; padding: 16px 18px;
  background: var(--card); border-radius: var(--r); font-size: var(--t-meta); color: var(--ink-2);
  line-height: 1.55; max-width: 62ch; }
.board-note svg { flex: none; margin-top: 3px; color: var(--open); }
.board-note b { color: var(--ink); }

.board-empty { text-align: center; padding: 50px 20px; background: var(--card); border-radius: var(--r); }
.board-empty .support { max-width: 44ch; margin: 8px auto 20px; }

.jcard { display: flex; flex-direction: column; gap: 9px; padding: 24px;
  background: var(--card); border-radius: var(--r); }
.jcard-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.jpay { font-size: var(--t-meta); font-weight: 700; color: var(--open); }
.jtitle { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; margin: 0; }
.jby { display: flex; align-items: center; gap: 6px; font-size: var(--t-meta); color: var(--ink-2); margin: 0; }
.jby svg { flex: none; }
.jby a { color: var(--ink); font-weight: 600; }
.jby a:hover { color: var(--action-ink); }
.jbody { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.6; }
.jbody p { margin-bottom: 9px; }
.jbody p:last-child { margin-bottom: 0; }
.jfoot { margin-top: auto; padding-top: 14px; }
.job-inperson { font-size: var(--t-meta); font-weight: 600; color: var(--ink-2); }

.dcard { display: flex; flex-direction: column; gap: 8px; padding: 22px;
  background: var(--card); border-radius: var(--r); border: 1.5px solid transparent; }
.dcard-promo { border-color: var(--action); }
.dcard-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dends { display: inline-flex; align-items: center; gap: 6px; font-size: var(--t-micro);
  font-weight: 700; letter-spacing: var(--tr-caps); text-transform: uppercase; color: var(--action-ink); }
.dpromo { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--ink-3); }
.dtitle { display: flex; align-items: flex-start; gap: 8px; font-family: var(--display);
  font-size: var(--t-sub); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.dtitle svg { flex: none; margin-top: 5px; color: var(--action); }
.dbody { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; margin: 0; }
.dterms { font-size: var(--t-micro); color: var(--ink-3); line-height: 1.5; margin: auto 0 0;
  padding-top: 12px; border-top: 1px solid var(--hair); }
.dterms b { color: var(--ink-2); }

/* On a listing page these sit in the narrow column, stacked, so they need their
   own gap - the boards get theirs from the grid. */
#jobHere, #dealHere { display: flex; flex-direction: column; gap: 12px; }

/* The admin queue flags a job with no pay figure, because "competitive" is the
   single most common thing we will send back. */
.qrow-job span { line-height: 1.6; }

/* ── Paid extras, in the account area ────────────────────
   Kept visually quieter than the free tools above it. If the paid panel is the
   loudest thing on the dashboard, the free tier stops reading as the point. */
.paygrid { display: flex; flex-direction: column; gap: 14px; }
.paycard { background: var(--card); border-radius: var(--r); padding: 22px; }
.paycard h3 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 14px; }
.payrow { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--hair); }
.payrow:first-of-type { border-top: none; padding-top: 0; }
.payrow strong { display: block; font-size: var(--t-body); font-weight: 600; margin-bottom: 3px; }
.payrow span { display: block; font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; max-width: 54ch; }
.payrow .qacts { display: flex; gap: 8px; flex-wrap: wrap; flex: none; }
/* .btn-grey is --surface, which is this card's own colour, so the secondary
   button vanished into it. Same fix the sidecard and the claim gate use. */
.paycard .btn-grey, .qrow .btn-grey { background: var(--card-2); border: 1px solid var(--hair); }
.paycard .btn-grey:hover, .qrow .btn-grey:hover { background: var(--surface-2); }

/* A claimed page has already answered "is this yours?", so the CTA is replaced
   rather than left sitting there asking the owner to claim it again. */
.side-claim-done { flex-direction: row; align-items: flex-start; gap: 9px; flex-wrap: wrap; }
.side-claim-done svg { flex: none; margin-top: 2px; color: var(--open); }
.side-claim-done strong { flex: 1 1 auto; }
.side-claim-done span { flex: 1 0 100%; padding-left: 25px; }

/* ── The full page: gallery, booking, menu ───────────────
   Everything here is additive. A listing that has not bought it renders exactly
   as it did before any of this existed. */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 4px; }
@media (max-width: 700px) { .shots { grid-template-columns: repeat(2, 1fr); } }
.shot { margin: 0; }
/* height:auto matters. The <img> carries width="600" height="450" so the
   browser reserves the right space before the photo loads, but that height is a
   presentational hint, and aspect-ratio only fills in a dimension that is
   MISSING. With both set, aspect-ratio does nothing and every photo rendered
   450px tall in a 215px column. */
.shot img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-sm); background: var(--media); display: block; }
.shot figcaption { font-size: var(--t-micro); color: var(--ink-3); margin-top: 6px; line-height: 1.45; }

/* ── The paid block in the listing editor ────────────────
   Visible to everyone, editable only when paid for. A hidden upsell sells
   nothing, and one that pretends the fields work is worse. */
.f-paid { border: 1.5px dashed var(--hair); border-radius: var(--r); padding: 22px; margin: 6px 0 4px; }
.f-paid-on { border-style: solid; border-color: var(--open); }
.f-paid-head { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 16px; }
.f-paid-head h3 { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; margin: 4px 0 4px; }
.f-paid input:disabled { opacity: 0.55; cursor: not-allowed; }
.f-paid button:disabled { opacity: 0.5; cursor: not-allowed; }
.f-row-tight { gap: 8px; align-items: center; }
.f-row-tight input { flex: 1 1 200px; }

.edshots { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.edshot { position: relative; margin: 0; width: 118px; }
.edshot img { width: 118px; height: 88px; object-fit: cover; border-radius: var(--r-sm);
  background: var(--media); display: block; }
/* An owner's own words. Two paragraphs need to read as two. */
.detail-block p + p { margin-top: 12px; }
.edshot figcaption { font-size: var(--t-micro); color: var(--ink-3); margin-top: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.edshot-x { position: absolute; top: 5px; right: 5px; width: 22px; height: 22px; border: none;
  border-radius: 50%; background: rgba(20,20,20,0.72); color: #fff; font-size: 15px; line-height: 1;
  cursor: pointer; }
.edshot-x:hover { background: var(--action); }

/* ── Guides ──────────────────────────────────────────────
   The only pages on this site with enough words to rank for anything a listing
   page cannot. Set for reading: one column, a real measure, generous leading. */
.guide { max-width: var(--content); margin: 0 auto; padding: var(--gap) 0 10px; }
.guide h1 { font-family: var(--display); font-size: clamp(30px, 4.2vw, 46px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.032em; margin: 10px 0 14px; text-wrap: balance; }
.g-standfirst { font-size: var(--t-lead, 19px); line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.g-hero { margin: 18px 0 22px; }
.g-hero img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--r-lg, 14px); display: block; }
.g-foot-note { font-size: var(--t-micro); color: var(--ink-3); margin-top: 30px;
  padding-top: 14px; border-top: 1px solid var(--hair); }
.g-meta { font-size: var(--t-micro); color: var(--ink-3); letter-spacing: var(--tr-caps);
  text-transform: uppercase; padding-bottom: 20px; border-bottom: 1px solid var(--hair); margin-bottom: 26px; }
.guide h2 { font-family: var(--display); font-size: clamp(22px, 2.4vw, 28px); font-weight: 700;
  letter-spacing: -0.024em; margin: 38px 0 12px; text-wrap: balance; }
.guide h3 { font-family: var(--display); font-size: 19px; font-weight: 700;
  letter-spacing: -0.016em; margin: 28px 0 8px; }
.guide p { font-size: 17px; line-height: 1.72; color: var(--ink-2); margin-bottom: 16px; }
.guide strong { color: var(--ink); font-weight: 600; }
.guide a { color: var(--action-ink); text-decoration: underline; text-underline-offset: 2px; }
.guide a:hover { color: var(--action); }
.guide blockquote { border-left: 3px solid var(--action); padding-left: 18px; margin: 0 0 18px; }
.g-list { padding-left: 20px; margin: 0 0 18px; }
.g-list li { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 9px; }

/* The embedded, always-current list of real businesses. This is the bit no
   other directory's blog post has. */
.g-listings { background: var(--card); border-radius: var(--r); padding: 20px 22px; margin: 6px 0 26px; }
.g-picks { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
@media (max-width: 760px) { .g-picks { grid-template-columns: 1fr; } }
.g-pick { display: flex; align-items: center; gap: 14px; min-width: 0;
  padding: 12px 0; border-bottom: 1px solid var(--hair); }
.g-thumb { flex: none; width: 78px; height: 78px; border-radius: 10px; overflow: hidden;
  background: #e8e2d7; display: block; }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-thumb.noimg { background: #e8e2d7; }
.g-pick a { text-decoration: none; }
.g-pick-b { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.g-pick-name b { display: block; font-size: var(--t-body); font-weight: 600; color: var(--ink); line-height: 1.25; }
.g-pick-name span { display: block; font-size: var(--t-meta); color: var(--ink-2); }
.g-pick-name:hover b { color: var(--action-ink); }
.g-acts { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.g-tel, .g-mail { display: inline-flex; align-items: center; gap: 6px; min-width: 0;
  font-size: var(--t-meta); font-weight: 600; color: var(--action-ink); text-decoration: none; }
.g-tel span, .g-mail span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 190px; }
.g-more { display: inline-block; margin-top: 14px; font-size: var(--t-meta); font-weight: 700;
  color: var(--action-ink); text-decoration: none; }
.g-more:hover { color: var(--action); }

.g-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
@media (max-width: 520px) { .g-cards { grid-template-columns: 1fr; } }
.g-card { display: flex; flex-direction: column; background: var(--card);
  border-radius: var(--r); overflow: hidden; outline: 1.5px solid transparent; outline-offset: -1.5px; }
.g-card:hover { outline-color: var(--action); }
.g-card-img { display: block; aspect-ratio: 16 / 10; background: #e8e2d7; margin: 0; border: 0; }
.g-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-card b { font-family: var(--display); font-size: var(--t-sub); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2; padding: 18px 20px 0; }
.g-card > span:not(.g-card-img) { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.55; padding: 6px 20px 20px; }

/* One link from a listing to the guide for its trade. */
.g-strip { display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  background: var(--card); border-radius: var(--r); margin-top: var(--gap); overflow: hidden; }
.g-strip:hover { background: var(--surface-2); }
.g-strip-img { width: 116px; height: 78px; flex: 0 0 auto; border-radius: 10px;
  object-fit: cover; background: #e8e2d7; display: block; }
.g-strip-txt { flex: 1 1 240px; min-width: 0; }
.g-strip b { display: block; font-family: var(--display); font-size: var(--t-sub);
  font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.g-strip-go { display: inline-flex; align-items: center; gap: 7px; font-size: var(--t-meta);
  font-weight: 700; color: var(--action-ink); flex: 0 0 auto; }

/* ── Questions people ask ────────────────────────────────
   Real long-tail queries ("is X open on sunday"), answered from data already on
   the page, marked up as FAQPage. Nothing here is invented: no hours, no hours
   question. */
.faq-q2 { border-bottom: 1px solid var(--hair); }
.faq-q2:last-of-type { border-bottom: none; }
.faq-q2 summary { cursor: pointer; padding: 13px 0; font-size: var(--t-body); font-weight: 600;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-q2 summary::-webkit-details-marker { display: none; }
.faq-q2 summary::after { content: "+"; font-size: 19px; font-weight: 400; color: var(--ink-3); flex: none; }
.faq-q2[open] summary::after { content: "\2013"; }
.faq-q2 summary:hover { color: var(--action-ink); }
.faq-q2 p { font-size: var(--t-meta); color: var(--ink-2); line-height: 1.6; padding: 0 0 15px; margin: 0; }
.faq-q2 p a { color: var(--action-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-q2 p a:hover { color: var(--action); }

/* Cross-trade links. Siblings cover the same trade; this covers the errand. */
.nearby { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 900px) { .nearby { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nearby { grid-template-columns: 1fr; } }
.nearby a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; background: var(--card); border-radius: var(--r-sm);
  border: 1px solid transparent; }
.nearby a:hover { border-color: var(--action); }
.nb-thumb { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 10px; object-fit: cover; background: #e8e2d7; display: block; }
.nb-body { min-width: 0; }
.nearby b { display: block; font-size: var(--t-meta); font-weight: 600; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nearby .nb-body span { display: block; font-size: var(--t-micro); color: var(--ink-3); margin-top: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Pagination ──────────────────────────────────────────
   Real pages, not "showing 60 of 286". A listing that exists only in the
   sitemap is one Google reliably declines to index, 238 of ours were in that
   state, and this is half of the fix. */
.pager { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 30px;
  padding-top: 22px; border-top: 1px solid var(--hair); font-size: var(--t-meta); }
.pager a, .pg-now { display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px; border-radius: var(--r-sm); font-weight: 600; }
.pager a { color: var(--ink-2); border: 1px solid var(--hair); }
.pager a:hover { border-color: var(--action); color: var(--action-ink); }
.pg-now { background: var(--ink); color: #fff; }
.pg-step { font-weight: 700 !important; }
.pg-of { margin-left: auto; color: var(--ink-3); }

/* ── Admin dashboard (v7) ─────────────────────────────────────
   The at-a-glance screen at /account/admin/. Stat tiles, a scrollable user
   table and a search box, all on the tokens the rest of the site already uses. */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 10px; }
/* Fill-defined, no border: the house language is flat, cards separate by fill.
   Each tile leads with its number, then label, then a quiet sub-line. */
.stat { background: var(--card); border-radius: var(--r); padding: 20px 22px; display: flex; flex-direction: column; }
.stat-num { font-family: var(--display); font-size: 34px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-label { margin-top: 11px; font-size: var(--t-meta); font-weight: 600; color: var(--ink-2); }
.stat-sub { margin-top: 4px; font-size: 12px; color: var(--ink-3); }
/* A queue metric with work waiting turns action-orange, so the eye lands on
   what needs doing before anything else on the page. Zero stays calm ink. */
.stat-attn .stat-num { color: var(--action); }
.stat-attn .stat-label { color: var(--action-ink); }
/* The revenue tiles carry the site's dark treatment, the way pricing does, so
   money reads as the bottom line and not just another count. */
.stat-money { background: var(--dark); }
.stat-money .stat-num { color: #fff; }
.stat-money .stat-label { color: rgba(255,255,255,0.82); }
.stat-money .stat-sub { color: rgba(255,255,255,0.5); }
/* Clickable tiles: a real link, cursor + hover lift + a "View ->" affordance so
   it is obvious the whole tile is a target, not just a number on a card. */
.stat-link { cursor: pointer; text-decoration: none; color: inherit;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
.stat-link:hover { transform: translateY(-3px); background: var(--surface-2); }
.stat-money.stat-link:hover { background: #000; }
.stat-go { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--t-meta); font-weight: 700; color: var(--action-ink); }
.stat-go svg { transition: transform 0.2s var(--ease); }
.stat-link:hover .stat-go svg { transform: translateX(3px); }
.stat-money .stat-go { color: #fff; }

.admin-search { margin: 14px 0 16px; }
.admin-search input { width: 100%; max-width: 360px; height: 44px; padding: 0 16px; border: 1px solid var(--hair);
  border-radius: var(--r-sm); background: var(--card-2); font: inherit; color: var(--ink); }
.admin-search input:focus { outline: none; border-color: var(--action); }

.admin-table-wrap { overflow-x: auto; border: 1px solid var(--hair); border-radius: var(--r); margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: var(--t-meta); }
.admin-table th, .admin-table td { text-align: left; padding: 11px 14px; white-space: nowrap; }
.admin-table thead th { background: var(--card); color: var(--ink-3); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; border-bottom: 1px solid var(--hair); }
.admin-table tbody tr + tr td { border-top: 1px solid var(--hair); }
.admin-table td:nth-child(3) { color: var(--ink-2); }
.badge { display: inline-flex; align-items: center; height: 22px; padding: 0 9px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-admin { background: var(--action); color: #fff; }

/* ── Shop: product cards (v8, WooCommerce style) ──────────────
   Used on /shop/ and in the shop strip at the foot of every listing. No card
   border: a rounded image, the name, the price, then a full-width button that
   warms to orange on hover. Shows two to four across on desktop. */
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(20px, 2.2vw, 32px); }
.pcard-grid-strip { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.pcard { display: flex; flex-direction: column; min-width: 0; background: transparent; border: 0; border-radius: 0;
  transition: transform 0.25s var(--ease); }
.pcard:hover { transform: translateY(-3px); }
.pcard-media { position: relative; aspect-ratio: 1 / 1; background: var(--card); border-radius: var(--r);
  overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-body { display: flex; flex-direction: column; gap: 6px; padding: 14px 2px 0; flex: 1; }
.pcard-name { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; color: var(--ink); }
.pcard-price { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--ink); }
.pcard-price span { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.04em; }
.pcard-cta { margin-top: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  height: 44px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-size: var(--t-meta);
  font-weight: 700; transition: background 0.25s var(--ease); }
.pcard:hover .pcard-cta { background: var(--action); }
.pcard-cta svg { transition: transform 0.25s var(--ease); }
.pcard:hover .pcard-cta svg { transform: translateX(3px); }

/* ── Shop: the listing-page call to action banner ─────────────
   A dark, premium strip that sits inside a business page and points at /shop/. */
.shop-cta { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 26px); padding: clamp(14px, 2.2vw, 22px);
  border-radius: var(--r); background: var(--ink); color: #fff; overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.shop-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15,15,15,0.22); }
.shop-cta-media { flex: none; width: clamp(78px, 11vw, 108px); aspect-ratio: 1 / 1; border-radius: var(--r-sm);
  overflow: hidden; background: rgba(255,255,255,0.08); }
.shop-cta-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-cta-txt { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.shop-cta-txt .eyebrow { color: var(--action); margin-bottom: 4px; }
.shop-cta-txt b { font-family: var(--display); font-size: var(--t-card); font-weight: 700; letter-spacing: -0.02em; }
.shop-cta-sub { font-size: var(--t-meta); color: rgba(255,255,255,0.72); line-height: 1.4; }
.shop-cta-go { flex: none; display: inline-flex; align-items: center; gap: 7px; font-size: var(--t-meta); font-weight: 700;
  background: var(--action); color: #fff; padding: 11px 18px; border-radius: var(--r-pill); white-space: nowrap; }
.shop-cta:hover .shop-cta-go { background: var(--action-hi); }
.shop-cta-go svg { transition: transform 0.25s var(--ease); }
.shop-cta:hover .shop-cta-go svg { transform: translateX(3px); }
@media (max-width: 560px) {
  .shop-cta { flex-wrap: wrap; }
  .shop-cta-go { width: 100%; justify-content: center; }
}

/* ── Listing: breadcrumbs below the hero, on white ────────────
   Moved off the hero image so the photo is not cluttered by nav text. */
.detail-crumbs { padding-top: 22px; margin-bottom: 6px; }
.detail-crumbs + .detail { padding-top: 14px; }

/* ── Listing sidebar: claim on top, then a shop slider ─────────
   The old sidebar repeated the name, address and buttons already in the hero.
   Now it leads with the claim call, then a compact slider of shop products. */
.side-shop { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hair); }
.side-shop-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.side-shop-head .eyebrow { margin-bottom: 0; }
.ss-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -2px; padding: 0 2px 10px; scrollbar-width: thin; overscroll-behavior-x: contain; }
.ss-card { flex: 0 0 47%; min-width: 138px; scroll-snap-align: start; display: flex; flex-direction: column; gap: 5px; }
.ss-media { display: block; aspect-ratio: 1 / 1; border-radius: var(--r-sm); overflow: hidden; background: var(--card); }
.ss-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.ss-card:hover .ss-media img { transform: scale(1.05); }
.ss-name { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ss-price { font-size: 12px; font-weight: 700; color: var(--action-ink); }
.side-shop-all { margin-top: 14px; width: 100%; justify-content: center; }

/* ── Admin: clickable user rows + the user detail modal ───────── */
.admin-table .urow { cursor: pointer; }
.admin-table .urow:hover td { background: var(--card); }
.au-meta { margin-top: 6px; }
.au-h { font-family: var(--display); font-size: var(--t-card); font-weight: 700; margin: 22px 0 10px; }
.au-list { display: flex; flex-direction: column; gap: 8px; }
.au-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 11px 14px; border: 1px solid var(--hair); border-radius: var(--r-sm); }
.au-row-txt { min-width: 0; }
.au-row-txt strong { display: block; font-weight: 700; color: var(--ink); }
.au-row-txt span { font-size: var(--t-meta); color: var(--ink-2); }
.au-acts { display: flex; gap: 8px; flex: none; }

/* ── Admin: browse-as-user banner + button ────────────────────
   The banner sits on every page while an admin is inside someone's account. */
.au-top-acts { margin: 14px 0 4px; }
.imp-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 600; display: flex; align-items: center;
  justify-content: center; gap: 14px; flex-wrap: wrap; padding: 12px 18px; background: var(--ink); color: #fff;
  font-size: 14px; box-shadow: 0 -6px 24px rgba(15,15,15,0.28); }
.imp-banner strong { color: #fff; }
.imp-banner button { background: var(--action); color: #fff; border: 0; border-radius: var(--r-pill);
  padding: 8px 16px; font-weight: 700; cursor: pointer; font: inherit; }
.imp-banner button:hover { background: var(--action-hi); }

/* ── Admin: email previews ────────────────────────────────────
   The "Preview emails" modal renders every customer-facing email as a card. */
.dash-head-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-wide { max-width: 680px; }
.em-card { border: 1px solid var(--hair); border-radius: var(--r); padding: 16px 18px; margin-top: 14px; background: var(--card-2); }
.em-name { font-family: var(--display); font-weight: 700; font-size: var(--t-card); color: var(--ink); margin-bottom: 8px; }
.em-meta { display: flex; flex-direction: column; gap: 2px; font-size: var(--t-meta); color: var(--ink-2); margin-bottom: 12px; }
.em-meta b { color: var(--ink-3); font-weight: 700; display: inline-block; min-width: 62px; }
.em-body { background: var(--card); border-radius: var(--r-sm); padding: 14px 16px; margin: 0; white-space: pre-wrap;
  font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--ink); overflow-x: auto; }
/* The email preview renders the real HTML in an isolated iframe, so it looks
   exactly like what lands in an inbox. Height is set from its content by app.js. */
.em-frame { display: block; width: 100%; min-height: 220px; border: none; border-radius: var(--r-sm);
  background: #f2f2f2; margin-top: 4px; }

/* ── Admin: labelled moderation sub-sections ──────────────────── */
.q-h { font-family: var(--display); font-size: var(--t-card); font-weight: 700; color: var(--ink);
  margin: 22px 0 10px; display: flex; align-items: center; gap: 9px; }
.q-h:first-child { margin-top: 4px; }
.q-h span { font-size: 12px; font-weight: 700; color: #fff; background: var(--action); border-radius: var(--r-pill);
  min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; padding: 0 7px; }

/* ── Listing editor: day-by-day opening hours ───────────────────
   A real week grid: aligned columns with their own headers, one row per day.
   The old version was a flex-wrap line per day, so nothing lined up down the
   week and Opens/Closes had no labels. Columns are fixed so every time input
   sits under its header. */
.hours-grid { background: var(--card); border-radius: var(--r); padding: 4px 18px 10px; margin-top: 6px; }
.hrow-head, .hrow-edit {
  display: grid; grid-template-columns: 116px 1fr 1fr 210px;
  align-items: center; gap: 14px;
}
.hrow-head { padding: 12px 0 10px; border-bottom: 1px solid var(--hair); }
.hrow-head span { font-size: var(--t-micro); font-weight: 700; letter-spacing: var(--tr-caps);
  text-transform: uppercase; color: var(--ink-3); }
.hrow-edit { padding: 9px 0; border-bottom: 1px solid var(--hair); }
.hrow-edit:last-child { border-bottom: none; }
.hrow-day { font-weight: 600; color: var(--ink); font-size: var(--t-body); }
.hrow-edit input[type="time"] {
  width: 100%; min-width: 0; height: 44px; padding: 0 14px; border: none; border-radius: var(--r-sm);
  background: var(--card-2); font: inherit; font-variant-numeric: tabular-nums;
  color: var(--ink); outline: none; transition: box-shadow 0.15s, opacity 0.15s;
}
.hrow-edit input[type="time"]:focus { box-shadow: inset 0 0 0 2px var(--action); }
.hrow-edit input[type="time"]:disabled { opacity: 0.32; }
/* Hours dropdowns share the look of the old time inputs. */
.hrow-edit select { width: 100%; min-width: 0; height: 44px; padding: 0 30px 0 12px; border: none;
  border-radius: var(--r-sm); background-color: var(--card-2); font: inherit; color: var(--ink);
  outline: none; cursor: pointer; transition: box-shadow 0.15s, opacity 0.15s;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238A8A8A' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; }
.hrow-edit select:focus { box-shadow: inset 0 0 0 2px var(--action); }
.hrow-edit select:disabled { opacity: 0.32; }
/* "24 hrs" and "Closed" are real sliding toggles, mutually exclusive (see app.js). */
.hrow-toggles { display: inline-flex; align-items: center; gap: 16px; }
.tgl { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-meta);
  font-weight: 600; color: var(--ink-2); cursor: pointer; user-select: none; white-space: nowrap; }
.tgl input { position: absolute; opacity: 0; width: 0; height: 0; }
.tgl-track { position: relative; width: 40px; height: 24px; border-radius: 999px; background: var(--hair);
  transition: background 0.18s; flex: none; }
.tgl-track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(15,15,15,0.28); transition: transform 0.18s; }
.tgl input:checked + .tgl-track { background: var(--action); }
.tgl input:checked + .tgl-track::after { transform: translateX(16px); }
.tgl input:focus-visible + .tgl-track { box-shadow: 0 0 0 3px rgba(29,78,216,0.35); }
@media (max-width: 560px) {
  .hours-grid { padding: 4px 14px 10px; }
  .hrow-head { display: none; }
  .hrow-edit {
    grid-template-columns: 1fr 1fr; gap: 8px 12px; padding: 12px 0;
    grid-template-areas: "day day" "open close" "toggles toggles";
  }
  .hrow-day { grid-area: day; }
  .hrow-edit .hrow-open { grid-area: open; }
  .hrow-edit .hrow-close { grid-area: close; }
  .hrow-toggles { grid-area: toggles; justify-content: flex-start; }
}

/* ── Listing editor: grouped sections ───────────────────────────
   The editor used to be one long ungrouped stack of fields. Grouping it under
   quiet eyebrow headers, separated by whitespace not boxes, keeps the flat
   house language and makes a long form legible. */
.ed-sec { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; }
.ed-sec:first-of-type { padding-top: 0; }
.ed-sec-head { margin-bottom: 2px; }
.ed-sec-head .eyebrow { margin-bottom: 0; }
.ed-sec-note { font-size: var(--t-meta); color: var(--ink-2); margin: 4px 0 0; max-width: 60ch; }
.ed-save { margin-top: 10px; }
/* Admin-only lookup bar at the top of the listing editor. */
.ed-admin { display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 16px; margin-bottom: 4px; background: var(--card); border-radius: var(--r-sm); }
.ed-admin .eyebrow { margin-bottom: 0; }

/* Listing editor: main-photo uploader (thumbnail + actions). */
.ed-photo { display: flex; gap: 16px; align-items: flex-start; margin-top: 4px; }
.ed-photo-thumb { width: 168px; height: 126px; flex: none; border-radius: var(--r-sm); overflow: hidden;
  background: var(--card); display: flex; align-items: center; justify-content: center; }
.ed-photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-photo-thumb[data-empty] { border: 1.5px dashed var(--hair); }
.ed-photo-thumb span { font-size: var(--t-micro); color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.ed-photo-side { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 9px; padding-top: 2px; }
.ed-photo-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
@media (max-width: 560px) { .ed-photo { flex-direction: column; } .ed-photo-thumb { width: 100%; height: 190px; } }
/* Menu file upload (PDF or image). */
.ed-file { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ed-file-cur { align-self: flex-start; font-size: var(--t-meta); font-weight: 700;
  color: var(--action-ink); text-decoration: underline; text-underline-offset: 2px; }
.ed-file-cur:hover { color: var(--action); }
.ed-file-side { display: flex; flex-direction: column; gap: 8px; }

/* Account header: an initial avatar so the signed-in state reads at a glance. */
.dash-id { display: flex; align-items: center; gap: 16px; min-width: 0; }
.acct-ava { width: 54px; height: 54px; border-radius: var(--r-pill); flex: none;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 23px; font-weight: 700; letter-spacing: -0.01em; }

/* Auth forms sit in a focused card, so sign-in and register read as a
   deliberate panel and not fields floating on a wide white page. */
.auth-card { background: var(--card); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); max-width: 480px; }

/* ── Admin: paid-placements popup rows ────────────────────────── */
.au-row-link { color: inherit; text-decoration: none; transition: border-color 0.15s; }
.au-row-link:hover { border-color: var(--action); }
.au-tags { display: flex; gap: 6px; flex: none; flex-wrap: wrap; }
.au-tags .badge { display: inline-flex; align-items: center; height: 22px; padding: 0 9px;
  border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-feat { background: var(--action); color: #fff; }
.badge-vd { background: var(--ink); color: #fff; }
.badge-full { background: var(--ink-2); color: #fff; }

/* ── Editor: menu thumbnail ────────────────────────────────────── */
.ed-file { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; }
.ed-file-thumb { width: 88px; height: 88px; flex: none; border-radius: var(--r-sm); overflow: hidden;
  background: var(--card); border: 1px solid var(--hair); display: flex; align-items: center; justify-content: center; }
.ed-file-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-file-pdf { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; color: var(--action-ink); text-decoration: none; }
