:root {
  --red: #d5202a;
  --red-hover: #b91c24;
  --red-deep: #8f151c;
  --red-ink: #6b1015;
  --red-soft: #fdecee;
  --red-line: rgba(213, 32, 42, .18);
  --ink: #1a1c1e;
  --muted: #5c636a;
  --paper: #f4f1ee;
  --paper-2: #ebe6e1;
  --card: #fff;
  --line: #e4dfd9;
  --ok: #1f7a4d;
  --ok-soft: #e5f5ec;
  --warn: #9a6b00;
  --warn-soft: #fff4d6;
  --err: #b42318;
  --err-soft: #fee4e2;
  --header-h: 68px;
  --max: 1280px;
  --radius: 16px;
  --shadow: 0 16px 40px -24px rgba(26, 28, 30, .45);
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-deep); text-decoration: none; }
a:hover { color: var(--red); }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 12px; top: 12px; z-index: 200;
  background: #fff; padding: .6rem 1rem; border-radius: 8px; color: var(--ink);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }
main { flex: 1; }
body.menu-open { overflow: hidden; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--red);
  min-height: calc(var(--header-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  box-shadow: 0 10px 28px -18px rgba(0,0,0,.55);
}
.site-header.is-scrolled { background: var(--red-hover); }
.header-inner {
  display: flex; align-items: center; gap: 10px;
  min-height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px; color: #fff !important;
  min-width: 0;
}
.site-header .brand { flex: 1; }
.brand:hover { color: #fff !important; opacity: .92; }
.brand-mark {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 11px; overflow: hidden;
  display: grid; place-items: center;
  background: transparent;
  box-shadow: 0 6px 16px -10px rgba(0,0,0,.4);
}
.brand-mark img, .brand-mark svg { width: 40px; height: 40px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; overflow: hidden; }
.brand-text strong, .brand-text span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.brand-text strong { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }
.brand-text span { font-size: .72rem; opacity: .85; font-weight: 500; }
.nav-desk { display: none; align-items: center; gap: 2px; margin-left: 8px; flex: 1; }
.nav-link {
  background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.94); font-weight: 600; font-size: .92rem;
  padding: .5rem .7rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.is-active { background: rgba(255,255,255,.14); color: #fff; }
.nav-drop { position: relative; }
.nav-drop .drop {
  display: none; position: absolute; top: calc(100% - 2px); left: 0;
  min-width: 220px; background: var(--card); color: var(--ink);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow);
  border: 1px solid var(--line); z-index: 20;
}
.nav-drop:hover .drop, .nav-drop:focus-within .drop { display: grid; }
.nav-drop-end .drop { left: auto; right: 0; }
.drop a, .drop button {
  display: block; padding: .55rem .7rem; border-radius: 10px; color: var(--ink);
  background: none; border: 0; text-align: left; width: 100%; cursor: pointer; font-weight: 600;
}
.drop a:hover, .drop button:hover { background: var(--red-soft); color: var(--red-deep); }
.drop-sep { height: 1px; background: var(--line); margin: 6px 4px; }
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; flex: 0 0 auto; }
.account-drop { display: none; }
.search-open {
  color: #fff; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
}
.search-open:hover, .account-btn:hover { background: rgba(255,255,255,.14); }
.account-btn {
  color: #fff; background: none; border: 0; cursor: pointer;
  width: auto; height: 42px; padding: 0 .85rem;
  border-radius: 999px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.burger {
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: rgba(255,255,255,.14); color: #fff; cursor: pointer;
  display: grid; place-items: center; gap: 5px; padding: 12px 11px;
}
.burger span {
  display: block; height: 2px; width: 20px; background: #fff; border-radius: 2px;
}
.btn.header-cta { display: none; }

.drawer-bg {
  position: fixed; inset: 0; background: rgba(26,28,30,.46); z-index: 50; border: 0;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 100%);
  background: #fff; z-index: 60; transform: translateX(104%);
  transition: transform .22s ease; display: flex; flex-direction: column;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.4);
}
.drawer.is-open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 44px; height: 44px; border: 0; background: var(--paper); border-radius: 12px;
  font-size: 1.5rem; cursor: pointer;
}
.drawer-search { display: flex; gap: 8px; padding: 14px 16px; }
.drawer-search input {
  flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: .7rem .85rem; background: var(--paper);
}
.drawer-nav { overflow: auto; padding: 6px 12px 24px; display: grid; gap: 2px; }
.drawer-nav a, .drawer-nav summary {
  display: block; padding: .75rem .85rem; border-radius: 12px; color: var(--ink); font-weight: 650;
  list-style: none; cursor: pointer;
}
.drawer-nav a:hover, .drawer-nav summary:hover { background: var(--red-soft); color: var(--red-deep); }
.drawer-nav details { border-radius: 12px; }
.drawer-nav details a { padding-left: 1.4rem; font-weight: 550; color: var(--muted); }
.drawer-foot { margin-top: auto; padding: 16px; border-top: 1px solid var(--line); display: grid; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: .55rem 1.05rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; cursor: pointer; text-align: center;
}
.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: var(--red-hover); color: #fff; }
.btn-line { background: transparent; border-color: currentColor; }
.btn-line.light { color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost { background: var(--red-soft); color: var(--red-deep); }
.btn-ok { background: var(--ok); color: #fff; }
.btn-full { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.flash {
  margin: 16px auto 0; width: min(var(--max), calc(100% - 28px));
  padding: .8rem 1rem; border-radius: 12px; font-weight: 600;
}
.flash.ok { background: var(--ok-soft); color: var(--ok); }
.flash.err { background: var(--err-soft); color: var(--err); }
.flash.warn { background: var(--warn-soft); color: var(--warn); }

.hero {
  background:
    radial-gradient(900px 280px at 80% -40%, rgba(255,255,255,.18), transparent 50%),
    linear-gradient(165deg, var(--red) 0%, var(--red-deep) 72%);
  color: #fff; padding: 28px 0 36px;
}
.hero h1 {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -.02em;
}
.hero p { margin: 0 0 1.1rem; max-width: 38rem; color: rgba(255,255,255,.9); }
.search-hero {
  display: flex; flex-wrap: wrap; gap: 8px;
  background: #fff; padding: 8px; border-radius: 18px; color: var(--ink);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.4);
}
.search-hero input, .search-hero select {
  flex: 1 1 140px; border: 0; background: var(--paper); border-radius: 12px; padding: .85rem .9rem; min-width: 0;
}
.search-hero button { flex: 0 0 auto; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-weight: 700; }
.hero-stats span { display: block; font-size: .8rem; font-weight: 500; opacity: .8; }

.disclaimer-bar {
  background: #fff8e8; color: #6b4e00; border-bottom: 1px solid #f0e0b2;
  font-size: .88rem; padding: .7rem 0;
}
.disclaimer-bar a { color: inherit; text-decoration: underline; font-weight: 700; }

.p2000-ticker-bar {
  background: #fff; border-bottom: 1px solid var(--line);
}
.p2000-ticker-bar[hidden] { display: none !important; }
.p2000-ticker {
  display: flex; align-items: center; gap: 10px;
  min-height: 48px; color: var(--ink) !important;
  min-width: 0;
}
.p2000-ticker:hover { color: var(--ink) !important; }
.p2000-ticker .p2000-live { flex: 0 0 auto; }
.p2000-ticker-body {
  display: flex; align-items: center; gap: 8px;
  min-width: 0; flex: 1; overflow: hidden;
}
.p2000-ticker-body time {
  font-weight: 800; font-variant-numeric: tabular-nums; flex: 0 0 auto;
}
.p2000-ticker-info {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-weight: 650;
}
.p2000-ticker-go {
  flex: 0 0 auto; font-weight: 800; color: var(--red-deep); font-size: .88rem;
  white-space: nowrap;
}
.p2000-ticker.is-new { animation: p2000-in .45s ease; }
.p2000-ticker.is-new .p2000-ticker-info { color: var(--red-deep); }
@media (max-width: 759px) {
  .p2000-ticker-go { display: none; }
  .p2000-ticker {
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    padding: .75rem 0;
    min-height: 0;
  }
  .p2000-ticker .p2000-live {
    padding: .28rem .55rem;
    font-size: .78rem;
  }
  .p2000-ticker-body {
    display: contents;
  }
  .p2000-ticker-body time,
  .p2000-ticker .p2000-type,
  .p2000-ticker .p2000-place {
    flex: 0 0 auto;
  }
  .p2000-ticker-info {
    flex: 1 1 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.4;
  }
}

.section { padding: 28px 0; }
.section h2 {
  font-family: var(--display); font-size: 1.45rem; margin: 0 0 4px; font-weight: 600;
}
.lead { color: var(--muted); margin: 0 0 16px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; margin-bottom: 14px;
}
.section-head .lead { margin: 4px 0 0; }
.section-head > a {
  white-space: nowrap; font-weight: 700; align-self: baseline;
}

.cat-grid, .card-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cat-card, .biz-card, .panel, .stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.cat-card {
  padding: 14px; display: flex; flex-direction: column; gap: 4px; color: var(--ink);
  min-height: 108px;
}
.cat-card:hover { border-color: var(--red); color: var(--ink); transform: translateY(-1px); }
.cat-card .ico { font-size: 1.3rem; }
.cat-card strong { font-size: .95rem; }
.cat-card span { color: var(--muted); font-size: .82rem; }

.biz-card { padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; color: var(--ink); }
.biz-card:hover { border-color: var(--red); color: var(--ink); }
.biz-card h3 { margin: 2px 0 4px; font-size: 1.05rem; }
.biz-card .meta { margin: 0; line-height: 1.35; }
.meta { color: var(--muted); font-size: .88rem; display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .75rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
  padding: .22rem .5rem; border-radius: 999px; background: var(--paper-2); color: var(--muted);
}
.badge.open { background: var(--ok-soft); color: var(--ok); }
.badge.closed { background: var(--err-soft); color: var(--err); }
.badge.claimed { background: var(--red-soft); color: var(--red-deep); }
.stars { color: #d0c4b6; letter-spacing: 1px; }
.star.is-on, .star.is-half { color: #e0a106; }

.filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; align-items: stretch;
}
.filters select, .filters input[type="search"], .filters input:not([type="checkbox"]) {
  border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: .7rem .8rem; min-height: 44px;
}
.filters .chip {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 1rem; border-radius: 12px;
}
.filters .btn { min-height: 44px; }
.chip-row { display: flex; gap: 8px; overflow: auto; padding-bottom: 6px; }
.chip {
  flex: 0 0 auto; border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .45rem .8rem; font-weight: 700; color: var(--ink); font-size: .88rem;
}
.chip.is-on, .chip:hover { background: var(--red); color: #fff; border-color: var(--red); }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.inline-form button {
  min-height: 36px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-weight: 700; cursor: pointer; padding: .35rem .65rem;
}
.inline-form button:hover { border-color: var(--red); color: var(--red-deep); }

.page-head { padding: 22px 0 8px; }
.page-head h1 {
  font-family: var(--display); font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 0 0 .35rem; font-weight: 600;
}
.crumbs { font-size: .86rem; color: var(--muted); margin-bottom: 8px; }
.crumbs a { color: var(--muted); }

.biz-hero {
  display: grid; gap: 16px; padding-bottom: 8px;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { padding: .55rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { width: 38%; color: var(--muted); font-weight: 650; }
.hours-table tr.is-today { font-weight: 800; color: var(--red-deep); }
.hours-table tr.is-today th { color: var(--red-deep); }
.kv { display: grid; gap: 8px; }
.kv div { display: flex; gap: 10px; flex-wrap: wrap; }
.kv dt { color: var(--muted); min-width: 7rem; }
.actions-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.info-tiles {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
  margin: 12px 0 4px;
}
.info-tile {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 12px; background: var(--paper);
  color: var(--ink); border: 1px solid var(--line); min-height: 72px;
}
a.info-tile:hover { border-color: var(--red); color: var(--ink); }
.info-tile span { font-size: .78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.info-tile strong { font-size: .98rem; word-break: break-word; }

.form, .panel { padding: 18px; width: 100%; }
.form label, .field { display: grid; gap: 6px; margin-bottom: 12px; font-weight: 650; }
.form input, .form select, .form textarea {
  font-weight: 500; border: 1px solid var(--line); border-radius: 12px; padding: .75rem .85rem; background: #fff;
}
.form input:not([type=checkbox]):not([type=radio]):not([type=time]), .form select, .form textarea { width: 100%; }
.form textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; gap: 0 16px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.setting-list {
  display: grid;
  gap: 0;
  margin: 4px 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
}
.form label.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 16px;
  font-weight: 650;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.form label.setting-row:last-child { border-bottom: 0; }
.form label.setting-row span { flex: 1; line-height: 1.35; }
.form label.setting-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0;
  accent-color: var(--red);
  cursor: pointer;
}
.hint { font-weight: 500; color: var(--muted); font-size: .86rem; }
.rate-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.rate-input input { display: none; }
.rate-input label { font-size: 1.8rem; color: #d0c4b6; cursor: pointer; line-height: 1; }
.rate-input input:checked ~ label, .rate-input label:hover, .rate-input label:hover ~ label { color: #e0a106; }

.reviews-block h2 { margin-top: 0; }
.compose {
  display: grid; gap: 16px; margin: 12px 0 20px;
  align-items: stretch;
}
.compose > div {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: 14px; padding: 16px;
  min-height: 100%;
}
.compose h3 { margin: 0 0 8px; font-size: 1.05rem; }
.compose .form { padding: 0; flex: 1; display: flex; flex-direction: column; }
.compose .form .btn { margin-top: auto; }
.feed { display: grid; gap: 0; }
.review { padding: 14px 0; border-bottom: 1px solid var(--line); }
.review h3 { margin: 0 0 4px; font-size: 1rem; }
.comment { padding: 10px 0; border-bottom: 1px dashed var(--line); }

.hours-editor { margin: 8px 0 16px; }
.hours-editor-head {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.hours-rows { display: grid; gap: 8px; }
.hours-row {
  display: grid; gap: 8px 12px; align-items: center;
  padding: 10px 12px; background: var(--paper); border-radius: 12px; border: 1px solid var(--line);
}
.hours-day { font-weight: 800; }
.hours-closed { display: flex; align-items: center; gap: 8px; font-weight: 650; margin: 0; }
.hours-closed input { width: auto; }
.hours-slots { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; }
.hours-slots input[type=time] {
  width: auto; min-width: 7.2rem; padding: .45rem .5rem;
}
.hours-dash, .hours-and { color: var(--muted); font-weight: 650; }
.hours-row.is-closed .hours-slots { opacity: .38; pointer-events: none; }

.pager { display: flex; gap: 6px; flex-wrap: wrap; margin: 18px 0; align-items: center; }
.pager a, .pager span {
  min-width: 40px; min-height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700;
  white-space: nowrap;
}
.pager-nav { min-width: auto; padding: 0 14px; }
.pager .is-current { background: var(--red); color: #fff; border-color: var(--red); }

.az-nav {
  display: flex; flex-wrap: wrap; gap: 4px; margin: 4px 0 8px;
}
.az-nav a, .az-nav span {
  min-width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 8px; border: 1px solid var(--line); background: #fff;
  font-weight: 800; font-size: .85rem; color: var(--ink);
}
.az-nav a:hover, .az-nav a.is-on { background: var(--red); color: #fff; border-color: var(--red); }
.az-nav span { opacity: .35; cursor: default; }

.site-footer {
  background: var(--red-ink); color: rgba(255,255,255,.86); margin-top: 28px; padding: 28px 0 18px;
}
.footer-grid { display: grid; gap: 22px; }
.site-footer h2 { color: #fff; font-size: .92rem; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid a { color: rgba(255,255,255,.86); display: block; padding: .2rem 0; }
.footer-grid a:hover, .footer-note a:hover { color: #fff; }
.footer-note a { color: rgba(255,255,255,.86); display: inline; }
.footer-note {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 18px; padding-top: 14px;
  font-size: .82rem; color: rgba(255,255,255,.7);
}
.legal-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 26px; margin: 0; box-sizing: border-box;
}
.legal-box p, .legal-box li { max-width: none; }
.legal-box h2 { margin-top: 1.2rem; }

.admin-shell { display: grid; gap: 16px; padding: 16px 0 32px; }
.admin-nav {
  display: flex; gap: 6px; overflow: auto; padding-bottom: 4px;
}
.admin-nav a {
  flex: 0 0 auto; padding: .55rem .8rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: .88rem;
}
.admin-nav a.is-on { background: var(--red); color: #fff; border-color: var(--red); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat-card { padding: 14px; }
.stat-card b { display: block; font-size: 1.5rem; }
.table-wrap { overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th, table.data td { padding: .7rem .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.data th { background: var(--paper); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.confirm-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(26, 28, 30, .5);
  display: grid; place-items: center; padding: 20px;
}
.confirm-overlay[hidden] { display: none !important; }
.confirm-box {
  width: min(420px, 100%);
  background: #fff; border-radius: 16px; padding: 22px 22px 18px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.45);
  border: 1px solid var(--line);
}
.confirm-title { margin: 0 0 8px; font-weight: 800; font-size: 1.15rem; }
.confirm-text { margin: 0 0 18px; color: var(--muted); line-height: 1.45; }
.confirm-actions { display: flex; justify-content: flex-end; gap: 8px; }

.inline-form { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.inline-form input, .inline-form select { border: 1px solid var(--line); border-radius: 10px; padding: .4rem .55rem; }

.partner-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
.partner-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 8px; color: var(--ink);
  min-height: 100%;
}
.partner-card:hover { border-color: var(--red); color: var(--ink); }
.partner-logo {
  height: 92px; display: grid; place-items: center;
  background: var(--paper); border-radius: 12px; overflow: hidden;
}
.partner-logo img {
  max-height: 72px; max-width: 88%; width: auto; height: auto; object-fit: contain;
}
.partner-logo span {
  font-size: 1.7rem; font-weight: 800; color: var(--red);
}
.partner-card h2 {
  font-family: var(--font); font-size: 1.08rem; margin: 2px 0 0; font-weight: 750;
}
.partner-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.partner-url {
  margin-top: auto; font-size: .82rem; font-weight: 700; color: var(--red-deep);
  word-break: break-all;
}
.partner-admin-preview img {
  max-height: 80px; width: auto; border-radius: 10px; background: #fff;
  border: 1px solid var(--line); padding: 6px;
}

.empty {
  background: #fff; border: 1px dashed var(--line); border-radius: 16px; padding: 28px 18px; text-align: center; color: var(--muted);
}

.p2000-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  margin-bottom: 14px;
}
.p2000-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ok-soft); color: var(--ok);
  padding: .4rem .75rem; border-radius: 999px; font-size: .88rem; font-weight: 650;
}
.p2000-live b { font-weight: 800; letter-spacing: .02em; text-transform: uppercase; font-size: .78rem; }
.p2000-live.is-off { background: var(--paper-2); color: var(--muted); }
.p2000-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 0 rgba(31, 122, 77, .55);
  animation: p2000-pulse 1.6s ease-out infinite;
}
.p2000-live.is-off .p2000-dot { background: #9aa1a8; animation: none; box-shadow: none; }
@keyframes p2000-pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 122, 77, .45); }
  70% { box-shadow: 0 0 0 8px rgba(31, 122, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 122, 77, 0); }
}
.p2000-note { margin: 0; max-width: 38rem; }
.p2000-filters { margin-bottom: 10px; }
.p2000-feed { display: grid; gap: 10px; }
.p2000-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.p2000-item.is-new { animation: p2000-in .45s ease; border-color: var(--red); }
@keyframes p2000-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.p2000-item-meta {
  display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; margin-bottom: 6px;
}
.p2000-item-meta time {
  font-weight: 800; font-variant-numeric: tabular-nums; color: var(--ink);
}
.p2000-type, .p2000-place {
  display: inline-flex; align-items: center;
  font-size: .75rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px;
}
.p2000-type.is-brandweer { background: var(--red-soft); color: var(--red-deep); }
.p2000-type.is-ambulance { background: var(--ok-soft); color: var(--ok); }
.p2000-type.is-politie { background: #e7eefc; color: #1d4ed8; }
.p2000-type.is-knrm { background: #fff1e6; color: #b45309; }
.p2000-type.is-overig { background: var(--paper-2); color: var(--muted); }
.p2000-place { background: var(--ink); color: #fff; }
.p2000-info { margin: 0; font-size: 1.02rem; line-height: 1.45; }
.p2000-date { margin: 6px 0 0; color: var(--muted); font-size: .82rem; }
.p2000-more {
  display: grid; gap: 4px; margin-top: 18px;
  background: linear-gradient(165deg, var(--red) 0%, var(--red-deep) 80%);
  color: #fff !important; border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow);
}
.p2000-more:hover { color: #fff !important; opacity: .94; }
.p2000-more-kicker {
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  opacity: .85;
}
.p2000-more strong { font-size: 1.15rem; }
.p2000-more span:last-child { font-size: .9rem; opacity: .9; }
.p2000-disabled .empty { padding: 36px 20px; }

.cookie-bar {
  position: sticky; bottom: 0; z-index: 30;
  background: var(--ink); color: #fff; padding: 12px 0;
}
.cookie-bar .wrap { display: flex; gap: 12px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-bar p { margin: 0; font-size: .9rem; }

@media (min-width: 760px) {
  .cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .biz-hero { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
  .two-col .panel {
    display: flex; flex-direction: column; height: 100%;
  }
  .two-col .panel .actions-row,
  .two-col .panel > .btn { margin-top: auto; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-tiles { grid-template-columns: 1fr 1fr; }
  .compose { grid-template-columns: 1fr 1fr; }
  .hours-row { grid-template-columns: 7.5rem 8.5rem 1fr; }
  .legal-box { padding: 28px 32px 34px; }
}
@media (min-width: 1040px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cat-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .info-tiles { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .burger { display: none; }
  .nav-desk { display: flex; }
  .account-drop { display: block; }
  .btn.header-cta { display: inline-flex; background: #fff; color: var(--red-deep); }
  .btn.header-cta:hover { background: var(--red-soft); color: var(--red-deep); }
  .site-header .brand { flex: 0 1 auto; }
}
