:root {
  --bg: #f6f1e9;
  --surface: #fffdf9;
  --surface-2: #efe7da;
  --ink: #2b2a33;
  --muted: #6b6560;
  --line: #e1d7c7;
  --clay: #c0643f;
  --clay-ink: #fff;
  --sage: #6f8a68;
  --sage-soft: #e3eadd;
  --slate: #3f5673;
  --slate-soft: #e0e6ee;
  --warn-soft: #f6e3cf;
  --font-display: "Figtree", "Inter", system-ui, sans-serif;
  --radius: 14px;
  --sky-top: #f4dcc0; --sky-bottom: #f7ecdc;
  --ridge-far: #9fb0a0; --ridge-mid: #6f8a68; --ridge-near: #3f5673; --cross: #2b2a33;
  --shadow: 0 1px 2px rgba(43, 42, 51, .06), 0 6px 18px rgba(43, 42, 51, .06);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1c1b20; --surface: #25242b; --surface-2: #2e2c34; --ink: #f1ece4; --muted: #b3aca3;
    --line: #3a3842; --clay: #d9784f; --sage: #93ad8b; --sage-soft: #2f3a2d; --slate: #9fb4d0;
    --slate-soft: #2c3440; --warn-soft: #43342a; color-scheme: dark;
    --sky-top: #3a2c33; --sky-bottom: #6b4a3d; --ridge-far: #4a5a4c; --ridge-mid: #34463a; --ridge-near: #232b36; --cross: #15141a;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.55 Inter, system-ui, sans-serif; }
h1, h2, h3, .brand { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; }
h1 { font-weight: 800; }
a { color: var(--slate); }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { font-size: 1.35rem; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand-mark { width: 22px; height: 22px; fill: var(--clay); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--clay); }
.shortlist-btn { white-space: nowrap; flex: none; background: var(--ink); color: var(--bg); border: 0; border-radius: 999px; padding: 8px 14px; font-weight: 600; cursor: pointer; }
.shortlist-btn span { background: var(--clay); color: #fff; border-radius: 999px; padding: 1px 8px; margin-left: 4px; font-size: .8rem; }

/* Hero */
.hero { background:
  radial-gradient(1200px 400px at 85% 0%, color-mix(in srgb, var(--sage) 22%, transparent), transparent 70%),
  radial-gradient(800px 380px at 0% 100%, color-mix(in srgb, var(--clay) 16%, transparent), transparent 70%);
  padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; }
.hero-inner { min-width: 0; }
h1 em { font-style: italic; color: var(--clay); }
.hero-art { margin: 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; aspect-ratio: 10 / 11; }
.hero-art svg { display: block; width: 100%; height: 100%; }
.hero-art .rays { animation: rays 6s ease-in-out infinite alternate; transform-origin: 200px 190px; }
@keyframes rays { from { opacity: .3; } to { opacity: .6; } }
@media (prefers-reduced-motion: reduce) { .hero-art .rays { animation: none; } }
.hero-art figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 14px; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: .98rem; line-height: 1.4; }
.hero-art figcaption span { display: block; font-family: Inter, sans-serif; font-size: .78rem; color: var(--clay); font-weight: 600; margin-top: 4px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600; color: var(--clay); margin: 0 0 12px; }
h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.1; margin: 0 0 18px; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin: 0 0 28px; }
.lede.small { font-size: 1rem; }
.hero-search { display: flex; gap: 8px; background: var(--surface); padding: 8px; border-radius: 999px; box-shadow: var(--shadow); border: 1px solid var(--line); max-width: 720px; }
.hero-search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 16px; outline: none; }
.hero-search select { border: 0; background: var(--surface-2); border-radius: 999px; padding: 0 14px; }
button[type="submit"], .btn { background: var(--clay); color: var(--clay-ink); border: 0; border-radius: 999px; padding: 10px 22px; font-weight: 600; cursor: pointer; }
button[type="submit"]:hover, .btn:hover { filter: brightness(1.06); }
.stats { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; padding: 0; margin: 32px 0 0; }
.stats li { color: var(--muted); font-size: .9rem; }
.stats strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); }

/* Sections */
.section-title { font-size: 1.8rem; margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.section-title::before { content: ""; flex: none; width: 14px; height: 20px; background: var(--clay);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'%3E%3Cpath d='M5 0h4v5h5v3.5H9V20H5V8.5H0V5h5z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'%3E%3Cpath d='M5 0h4v5h5v3.5H9V20H5V8.5H0V5h5z'/%3E%3C/svg%3E") center / contain no-repeat; }
.categories { padding: 56px 20px 12px; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.cat-card { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-card .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 1.2rem; background: var(--sage-soft); color: var(--sage); margin-bottom: 10px; }
.cat-card h3 { margin: 0 0 4px; font-size: 1.08rem; }
.cat-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.cat-card .count { font-size: .8rem; color: var(--clay); font-weight: 600; margin-top: 8px; display: block; }

.directory { padding: 48px 20px; scroll-margin-top: 70px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px 24px; }
.note { color: var(--muted); font-size: .88rem; margin: 0; }
.dir-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; margin-top: 12px; }
.filters { position: sticky; top: 84px; align-self: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: grid; gap: 16px; }
.field { display: grid; gap: 6px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field > span, .field legend { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; display: flex; justify-content: space-between; padding: 0; }
.field input:not([type=range]), .field select, .field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid color-mix(in srgb, var(--clay) 50%, transparent); outline-offset: 1px; }
input[type=range] { accent-color: var(--clay); width: 100%; }
.field input[type="checkbox"] { width: auto; padding: 0; accent-color: var(--clay); }
output { text-transform: none; letter-spacing: 0; color: var(--ink); }
.check { display: flex; gap: 8px; align-items: center; font-size: .92rem; cursor: pointer; }
.check input { accent-color: var(--clay); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.chip { border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 4px 10px; font-size: .82rem; cursor: pointer; }
.chip[aria-pressed="true"] { background: var(--slate); border-color: var(--slate); color: var(--surface); }
.link-btn { background: none; border: 0; color: var(--slate); text-decoration: underline; cursor: pointer; padding: 0; justify-self: start; font-size: .9rem; }

.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: var(--muted); font-size: .92rem; }
.results-bar select { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 6px 10px; }
.results { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .15s; }
.card:hover { box-shadow: var(--shadow); }
.card-top { display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.card h3 { margin: 0; font-size: 1.12rem; line-height: 1.25; }
.card .meta { color: var(--muted); font-size: .86rem; }
.card p { margin: 0; font-size: .92rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: .75rem; background: var(--surface-2); border-radius: 6px; padding: 2px 8px; color: var(--muted); }
.badge { font-size: .7rem; font-weight: 600; border-radius: 999px; padding: 2px 8px; white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }
.badge.cat { background: var(--slate-soft); color: var(--slate); }
.badge.featured { background: var(--sage-soft); color: var(--sage); }
.card .addr { color: var(--muted); font-size: .88rem; }
.results-bar { gap: 12px; flex-wrap: wrap; }
.view-toggle { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--surface); }
.view-toggle button { border: 0; background: none; padding: 6px 14px; cursor: pointer; font-size: .88rem; font-weight: 500; }
.view-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.more-row { text-align: center; margin-top: 20px; }
.more-row button { border-radius: 999px; padding: 10px 22px; font-weight: 600; cursor: pointer; }
.map { height: 620px; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; z-index: 0; }
.map .leaflet-popup-content { font: 14px/1.45 Inter, system-ui, sans-serif; }
.map .leaflet-popup-content a { color: var(--clay); font-weight: 600; }
.pin { background: var(--slate); border: 2px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 1px 3px rgba(0,0,0,.35); }
.pin-featured { background: var(--clay); }
.cluster { background: color-mix(in srgb, var(--clay) 30%, transparent); border-radius: 50%; display: grid; place-items: center; }
.cluster span { background: var(--clay); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font: 600 12px Inter, sans-serif; }
[hidden] { display: none !important; }
.badge.sample { background: var(--warn-soft); color: var(--clay); }
.card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.card-actions button { flex: 1; border-radius: 999px; padding: 8px; font-weight: 600; cursor: pointer; font-size: .88rem; }
.ghost { background: transparent; border: 1px solid var(--line); }
.ghost:hover { border-color: var(--ink); }
.add { background: var(--sage); color: #fff; border: 1px solid var(--sage); }
.add.saved { background: transparent; color: var(--sage); }
.empty { grid-column: 1/-1; text-align: center; padding: 48px 20px; color: var(--muted); background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); }

/* Planner */
.planner-band { background: var(--surface-2); padding: 56px 0; border-block: 1px solid var(--line); scroll-margin-top: 64px; }
.planner { display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.planner-controls { display: grid; gap: 14px; align-content: start; background: var(--surface); padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); }
.planner-out { display: grid; gap: 16px; }
.plan-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.plan-card h3 { margin: 0 0 8px; }
.plan-head { display: flex; flex-wrap: wrap; gap: 8px 24px; color: var(--muted); font-size: .9rem; }
.plan-head strong { color: var(--ink); }
.checklist { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.checklist label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.checklist input { accent-color: var(--sage); margin-top: 4px; }
.checklist input:checked + span { text-decoration: line-through; color: var(--muted); }
.need-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.need h4 { margin: 0 0 6px; font-size: .95rem; }
.mini-list { display: flex; flex-wrap: wrap; gap: 8px; }
.mini { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 12px; font-size: .86rem; }
.mini button { border: 0; background: var(--sage); color: #fff; border-radius: 999px; width: 22px; height: 22px; cursor: pointer; line-height: 1; }
.mini button.saved { background: var(--surface-2); color: var(--sage); }
.mini .muted { color: var(--muted); }

/* For vendors */
.stat-row { list-style: none; display: flex; flex-wrap: wrap; gap: 28px; padding: 0; margin: 20px 0; }
.stat-row li { color: var(--muted); font-size: .9rem; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.founding { background: var(--warn-soft); color: var(--ink) !important; border-radius: 12px; padding: 12px 16px; display: inline-block; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 28px; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.plan-highlight { border: 2px solid var(--clay); box-shadow: var(--shadow); }
.plan-tag { position: absolute; top: -12px; left: 20px; background: var(--clay); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-radius: 999px; padding: 3px 10px; }
.plan h3 { margin: 0; font-size: 1.15rem; }
.plan-price .price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.plan-price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.plan-price .was { display: block; color: var(--muted); font-size: .8rem; }
.plan > p { margin: 0; color: var(--muted); font-size: .92rem; }
.plan .checks { font-size: .9rem; margin: 4px 0 8px; }
.plan-btn { margin-top: auto; text-align: center; text-decoration: none; display: block; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { color: var(--muted); margin: 10px 0 0; }
.claim { scroll-margin-top: 80px; }
.claim .quote-form, .contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-top: 16px; }
.legal { max-width: 760px; }
.legal h2 { font-size: 1.2rem; margin: 28px 0 8px; }
.legal p { color: var(--muted); }
a.btn { text-decoration: none; display: inline-block; }

/* Request quotes */
.quote { padding: 56px 20px 8px; scroll-margin-top: 70px; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 32px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; }
.quote-intro p { color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.checks li { padding-left: 26px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .wide, .quote-form button { grid-column: 1/-1; }
.quote-form button { justify-self: start; }
.needs { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px 14px; margin-top: 8px; font-size: .92rem; }
.consent { font-size: .88rem; color: var(--muted); align-items: flex-start; }
.consent input { margin-top: 3px; }
.plan-title { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.plan-title h3 { margin: 0; }
.plan-title .btn { padding: 8px 16px; font-size: .88rem; }
.sheet-actions { display: flex; gap: 8px; }
.sheet-actions button { border-radius: 999px; padding: 9px 16px; font-weight: 600; cursor: pointer; }
.footer-links { font-size: .9rem; }
.footer-links a { color: var(--ink); }

/* Christ band */
.christ-band { background: var(--ink); color: var(--bg); padding: 64px 0; position: relative; overflow: hidden; }
.christ-band::after { content: ""; position: absolute; right: -60px; top: 50%; width: 320px; height: 460px; transform: translateY(-50%); opacity: .06; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'%3E%3Cpath d='M5 0h4v5h5v3.5H9V20H5V8.5H0V5h5z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'%3E%3Cpath d='M5 0h4v5h5v3.5H9V20H5V8.5H0V5h5z'/%3E%3C/svg%3E") center / contain no-repeat; }
.christ-inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; max-width: 900px; }
.band-cross { width: 64px; fill: var(--clay); }
.christ-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 12px; }
.christ-band p { color: color-mix(in srgb, var(--bg) 78%, transparent); margin: 0 0 18px; max-width: 640px; }
.christ-band .eyebrow { color: var(--clay); }
.christ-band blockquote { margin: 0; padding-left: 18px; border-left: 3px solid var(--clay); font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.15rem; line-height: 1.45; }
.christ-band cite { display: block; font: 600 .82rem Inter, sans-serif; color: var(--clay); margin-top: 6px; font-style: normal; }

/* Why + list */
.why { padding: 56px 20px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why h3 { font-size: 1.2rem; margin: 0 0 8px; }
.why p { color: var(--muted); margin: 0; }
.why-grid > div { border-top: 3px solid var(--clay); padding-top: 16px; }
.why-grid > div:nth-child(2) { border-color: var(--sage); }
.why-grid > div:nth-child(3) { border-color: var(--slate); }
.list-biz { padding: 0 20px 64px; scroll-margin-top: 70px; }
.list-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 32px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; }
.list-card p { color: var(--muted); }
.list-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.list-form .wide, .list-form button, .list-form .form-msg { grid-column: 1/-1; }
.list-form button { justify-self: start; }
.form-msg { margin: 0; color: var(--sage); font-weight: 500; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; font-size: .9rem; }
.site-footer p { margin: 0 0 6px; }
.footer-cross { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-cross span { flex: 1; height: 1px; background: var(--line); }
.footer-cross svg { width: 20px; height: 20px; fill: var(--clay); }
.footer-verse { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.05rem; text-align: center; margin-bottom: 18px !important; }

/* Landing pages (generated by scripts/build-site.mjs) */
.landing { padding: 28px 20px 56px; max-width: 980px; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.landing-title { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.1; margin: 0 0 14px; }
.landing-intro p { color: var(--muted); font-size: 1.05rem; max-width: 760px; margin: 0 0 10px; }
.landing-intro .note { font-size: .92rem; }
.landing .section-title { font-size: 1.35rem; margin: 36px 0 12px; scroll-margin-top: 80px; }
.rows { list-style: none; padding: 0; margin: 24px 0 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.rows li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 18px; border-top: 1px solid var(--line); align-items: center; }
.rows li:first-child { border-top: 0; }
.rows strong { font-weight: 600; }
.rows small { display: block; color: var(--muted); font-size: .86rem; margin-top: 2px; }
.rows p { margin: 6px 0 0; font-size: .92rem; }
.row-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; font-size: .88rem; white-space: nowrap; }
.row-links a { color: var(--clay); font-weight: 600; text-decoration: none; }
.row-links a:hover { text-decoration: underline; }
.link-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px 20px; }
.link-grid a { color: var(--ink); text-decoration: none; font-weight: 500; }
.link-grid a:hover { color: var(--clay); text-decoration: underline; }
.link-grid span { color: var(--muted); font-size: .85rem; }
.seo-links { border-top: 1px solid var(--line); padding: 44px 0; background: var(--surface-2); }
.seo-links .wrap { display: grid; gap: 32px; }
.seo-links h2 { font-size: 1.1rem; margin: 0 0 12px; }
.seo-links .link-grid { font-size: .92rem; }
.more-link { display: inline-block; margin-top: 10px; color: var(--clay); font-weight: 600; font-size: .92rem; }

/* Install-the-app banner (pwa.js) */
.install-bar { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 1000; width: min(560px, calc(100% - 24px));
  display: flex; align-items: center; gap: 12px; background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 12px 12px 14px; box-shadow: 0 12px 36px rgba(0,0,0,.18); animation: rise .35s ease-out; }
@keyframes rise { from { transform: translate(-50%, 20px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .install-bar { animation: none; } }
.install-icon { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; }
.install-icon svg { width: 22px; fill: var(--clay); }
.install-bar p { margin: 0; flex: 1; font-size: .88rem; line-height: 1.35; min-width: 0; }
.install-bar p strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.install-bar p span { color: var(--muted); }
.ios-share { width: 16px; height: 16px; vertical-align: -3px; color: var(--slate); }
.install-go { flex: none; background: var(--clay); color: #fff; border: 0; border-radius: 999px; padding: 9px 18px; font-weight: 600; cursor: pointer; }
.install-x { flex: none; background: none; border: 0; color: var(--muted); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }
.install-x:hover { background: var(--surface-2); }
@media print { .install-bar { display: none; } }

/* Dialogs */
dialog.sheet { border: 0; border-radius: 18px; padding: 0; max-width: 560px; width: calc(100% - 32px); background: var(--surface); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.25); }
dialog::backdrop { background: rgba(28, 27, 32, .45); }
.sheet-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px 8px; gap: 12px; }
.sheet-head h2 { margin: 0; font-size: 1.4rem; }
.sheet-body { padding: 8px 22px 22px; display: grid; gap: 12px; }
.sheet-body dl { display: grid; grid-template-columns: 130px 1fr; gap: 6px 12px; margin: 0; font-size: .92rem; }
.sheet-body dt { color: var(--muted); }
.sheet-body dd { margin: 0; }
.sheet-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px 20px; border-top: 1px solid var(--line); gap: 12px; }
.icon-btn { background: var(--surface-2); border: 0; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; }
dialog.drawer { margin: 0 0 0 auto; height: 100vh; max-height: 100vh; border-radius: 18px 0 0 18px; max-width: 420px; display: none; flex-direction: column; }
dialog.drawer[open] { display: flex; }
#shortlistBody { flex: 1; overflow: auto; padding: 8px 22px; }
.sl-group h4 { margin: 14px 0 6px; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.sl-item { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sl-item small { color: var(--muted); display: block; }
.sl-item button { background: none; border: 0; color: var(--muted); cursor: pointer; }

@media (max-width: 900px) {
  .dir-layout, .planner, .list-card, .hero-grid, .quote-card { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; aspect-ratio: 4 / 3; }
  .filters { position: static; }
  .map { height: 460px; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .nav-links a { display: none; }
  .brand { font-size: 1.02rem; line-height: 1.2; gap: 6px; }
  .brand-mark { width: 18px; height: 18px; flex: none; }
  .shortlist-btn { padding: 7px 12px; font-size: .9rem; }
  .hero { padding: 44px 0 36px; }
  .christ-inner { grid-template-columns: 1fr; gap: 20px; }
  .band-cross { width: 40px; }
  .hero-search { flex-direction: column; border-radius: 18px; }
  .hero-search select { padding: 10px 14px; }
  .list-form, .quote-form { grid-template-columns: 1fr; }
  .quote-card { padding: 22px; }
  .list-card { padding: 22px; }
  .rows li { flex-direction: column; align-items: flex-start; }
  .row-links { justify-content: flex-start; }
  .categories, .directory, .why, .list-biz { padding-left: 16px; padding-right: 16px; }
}

@media print {
  body > *:not(#shortlist) { display: none !important; }
  dialog.drawer { position: static; display: block; box-shadow: none; max-width: none; height: auto; }
  .sheet-foot, .icon-btn, .sl-item button { display: none; }
}
