@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* Color */
  --bg: #faf9f5;
  --bg-elev: #f4f1e8;
  --bg-paper: #fffdf7;
  --ink: #1a1a1a;
  --ink-2: #3a3a37;
  --ink-3: #6b6a63;
  --ink-4: #a09e93;
  --rule: #e8e3d3;
  --rule-2: #d9d3bf;

  /* Teal */
  --teal-h: 190;
  --teal: oklch(0.48 0.08 var(--teal-h));
  --teal-ink: oklch(0.32 0.06 var(--teal-h));
  --teal-soft: oklch(0.94 0.02 var(--teal-h));
  --teal-mid: oklch(0.78 0.05 var(--teal-h));

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(30, 28, 20, 0.04), 0 2px 8px rgba(30, 28, 20, 0.04);
  --shadow-2: 0 4px 16px rgba(30, 28, 20, 0.06), 0 16px 48px rgba(30, 28, 20, 0.08);
  --shadow-3: 0 20px 60px rgba(30, 28, 20, 0.12), 0 8px 24px rgba(30, 28, 20, 0.08);

  /* Bokeh */
  --bokeh-opacity: 0.55;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
input { font-family: inherit; }

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--rule-2); border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }

::selection { background: var(--teal-soft); color: var(--teal-ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 40px;
  position: relative;
  z-index: 10;
}

.site-header--compact {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 32px;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex; align-items: baseline; gap: 10px;
}

.brand__mark {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  font-size: 32px; color: var(--ink); line-height: 1;
  letter-spacing: -0.01em;
}

.site-header--compact .brand__mark { font-size: 28px; }

.brand__tld {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-4);
  text-transform: uppercase;
}

.site-nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--ink-2);
}

.site-nav a { color: var(--ink-2); transition: color 120ms; }
.site-nav a:hover { color: var(--ink); }

.lang-toggle {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  border: 1px solid var(--rule-2);
}
.lang-toggle:hover { border-color: var(--ink-3); }

.site-header__search {
  flex: 1; max-width: 560px; margin: 0 auto;
}

/* ---------- Bokeh stage ---------- */
.bokeh-stage {
  position: relative; overflow: hidden; isolation: isolate;
}

.bokeh-stage__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(3px) saturate(0.7) sepia(0.25) hue-rotate(-15deg);
  transform: scale(1.1);
  opacity: var(--bokeh-opacity, 0.55);
  z-index: 0; pointer-events: none;
  transition: opacity 900ms ease;
}

.bokeh-stage__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 30% 20%, oklch(0.92 0.05 65 / 0.5) 0%, transparent 70%),
    radial-gradient(50% 45% at 75% 70%, oklch(0.78 0.05 var(--teal-h) / 0.18) 0%, transparent 70%),
    linear-gradient(180deg, oklch(0.98 0.012 75 / 0.7) 0%, oklch(0.97 0.014 75 / 0.55) 55%, oklch(0.96 0.02 75 / 0.8) 100%);
}

.bokeh-stage__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.bokeh-stage__content { position: relative; z-index: 3; }

/* CSS bokeh fallback */
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6vw, -4vh) scale(1.1); }
  66% { transform: translate(-4vw, 6vh) scale(0.95); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8vw, 5vh) scale(1.15); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(5vw, 7vh) scale(0.9); }
  80% { transform: translate(-3vw, -5vh) scale(1.1); }
}

.bokeh-fallback {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.bokeh-fallback::before,
.bokeh-fallback::after,
.bokeh-fallback > span {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: var(--bokeh-opacity, 0.55);
  will-change: transform;
}
.bokeh-fallback::before {
  width: 50vw; height: 50vw; left: -10vw; top: -10vh;
  background: radial-gradient(circle, oklch(0.85 0.1 60) 0%, transparent 60%);
  animation: drift-a 22s ease-in-out infinite;
}
.bokeh-fallback::after {
  width: 45vw; height: 45vw; right: -8vw; top: 20vh;
  background: radial-gradient(circle, oklch(0.78 0.08 var(--teal-h)) 0%, transparent 60%);
  animation: drift-b 28s ease-in-out infinite;
}
.bokeh-fallback > span {
  width: 40vw; height: 40vw; left: 30vw; bottom: -15vh;
  background: radial-gradient(circle, oklch(0.88 0.06 30) 0%, transparent 60%);
  animation: drift-c 32s ease-in-out infinite;
}

/* ---------- Home Variant B (editorial) ---------- */
.home-hero {
  min-height: 88vh;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 40px 56px 80px;
  align-items: center;
}

.home-wordmark {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(90px, 11vw, 170px);
  line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.015em;
  transform: skewX(-5deg);
  transform-origin: center;
}
.home-wordmark__dot { color: var(--teal-ink); font-style: normal; }

.home-tagline {
  margin-top: 32px;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink-2);
  max-width: 440px; line-height: 1.4;
  text-wrap: balance;
}

.home-stats {
  margin-top: 40px;
  display: flex; gap: 32px; align-items: center;
}
.home-stat__divider { width: 1px; height: 28px; background: var(--rule-2); }
.home-stat__n {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--ink); line-height: 1;
  display: block;
}
.home-stat__label {
  font-size: 11px; color: var(--ink-3);
  font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px;
}

.home-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.home-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--teal);
}

.home-popular-label {
  font-size: 12px; color: var(--ink-3);
  margin: 28px 0 10px;
  font-family: var(--mono); letter-spacing: 0.06em;
}

.home-random-row {
  margin-top: 14px;
  display: flex; justify-content: flex-end;
}
.home-random-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: 13px;
  background: rgba(255, 253, 247, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  transition: all 180ms;
}
.home-random-btn:hover {
  background: var(--teal-soft); border-color: var(--teal);
  color: var(--teal-ink);
}
.home-random-btn__dice { font-size: 15px; line-height: 1; }

/* ---------- Search pill ---------- */
.search-pill {
  display: flex; align-items: center;
  background: var(--bg-paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  padding: 6px; gap: 0;
  box-shadow: var(--shadow-3);
  transition: box-shadow 220ms ease;
}

.search-pill:focus-within {
  box-shadow: 0 2px 8px oklch(0.48 0.08 var(--teal-h) / 0.2), 0 20px 60px rgba(30, 28, 20, 0.14);
}

.search-pill__field {
  flex: 1; display: flex; flex-direction: column;
  padding: 14px 26px; cursor: text;
  border-radius: var(--r-pill);
  transition: background 200ms;
  min-width: 0;
}

.search-pill__field:focus-within { background: oklch(0.97 0.01 80); }

.search-pill__field:first-of-type { flex: 1.4; }

.search-pill__divider { width: 1px; height: 36px; background: var(--rule-2); flex-shrink: 0; }

.search-pill__label {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 500; margin-bottom: 2px;
}

.search-pill__input {
  border: none; background: transparent;
  font-size: 18px; outline: none;
  color: var(--ink); min-width: 0; width: 100%;
  padding: 0;
}

.search-pill__input::placeholder { color: var(--ink-4); }

.search-pill__submit {
  background: var(--teal); color: white;
  border-radius: var(--r-pill);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  flex-shrink: 0; margin: 2px;
  box-shadow: 0 4px 14px oklch(0.48 0.08 var(--teal-h) / 0.3);
  transition: transform 150ms, box-shadow 150ms;
}
.search-pill__submit:active { transform: scale(0.96); }

.search-pill--compact .search-pill__field { padding: 10px 18px; }
.search-pill--compact .search-pill__input { font-size: 15px; }
.search-pill--compact .search-pill__submit { width: 44px; height: 44px; }

/* Header search (tight) */
.header-search {
  display: flex; align-items: center;
  background: var(--bg-paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  padding: 4px;
  box-shadow: var(--shadow-1);
}
.header-search input {
  padding: 10px 16px; border: none; background: transparent;
  font-size: 14px; outline: none; min-width: 0;
}
.header-search input:first-of-type { flex: 1.2; }
.header-search input:last-of-type { flex: 0.8; }
.header-search__divider { width: 1px; height: 20px; background: var(--rule-2); }
.header-search__submit {
  background: var(--teal); color: white;
  border-radius: var(--r-pill);
  width: 36px; height: 36px;
  display: grid; place-items: center;
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 7px 14px; font-size: 13px;
  background: var(--bg-elev); color: var(--ink-2);
  border-radius: var(--r-pill);
  border: 1px solid var(--rule);
  transition: all 150ms;
}
.chip:hover { background: var(--bg-paper); border-color: var(--rule-2); }
.chip--sm { padding: 4px 10px; font-size: 12px; }
.chip--active,
.chip--active:hover {
  background: var(--teal-ink); color: white; border-color: var(--teal-ink);
}

.chip-glass {
  padding: 8px 16px; font-size: 13px;
  background: rgba(255, 253, 247, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--ink-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill);
  transition: all 180ms;
  display: inline-flex;
}
.chip-glass:hover {
  background: var(--teal-ink); color: white; border-color: var(--teal-ink);
}

/* ---------- Section label ---------- */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 32px;
}
.section-head__main { max-width: 640px; }
.section-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 10px;
}
.section-title {
  font-size: 36px; font-weight: 400; margin: 0;
  line-height: 1.15; letter-spacing: -0.01em;
}
.section-title__italic { font-family: var(--serif); font-style: italic; }
.section-lede {
  color: var(--ink-3); font-size: 14px;
  max-width: 280px; line-height: 1.6; margin: 0;
}
.section-see-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--teal-ink);
  padding: 8px 0;
}

.section-label {
  display: flex; align-items: baseline; gap: 20px; margin-bottom: 24px;
}
.section-label__kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}
.section-label__rule { flex: 1; height: 1px; background: var(--rule); }

/* ---------- Need cards ---------- */
.needs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.need-card {
  display: block; text-align: left;
  padding: 28px 24px 24px;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: all 250ms;
  position: relative; width: 100%;
}
.need-card:nth-child(3n+2) { background: var(--teal-soft); }
.need-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

.need-card__title {
  margin: 0; font-size: 20px; font-weight: 500;
  font-family: var(--serif); font-style: italic;
  color: var(--ink); letter-spacing: -0.01em;
}
.need-card__sub {
  margin: 10px 0 20px;
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
}
.need-card__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.need-card__count {
  font-size: 12px; color: var(--ink-4); font-family: var(--mono);
}
.need-card__arrow {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rule-2);
}

/* ---------- Provider cards (grid) ---------- */
.providers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.provider-card {
  display: block;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms;
  color: inherit;
}
.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--rule-2);
}

.provider-card__media {
  aspect-ratio: 4/3; background: var(--bg-elev);
  position: relative; overflow: hidden;
}

.provider-card__wait {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 4px 10px; font-size: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink-2);
}

.provider-card__body { padding: 18px; }

.provider-card__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}

.provider-card__name { margin: 0; font-size: 17px; font-weight: 500; }
.provider-card__rating {
  font-size: 12px; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 3px;
}
.provider-card__rating strong { font-weight: 500; color: var(--ink); }
.provider-card__loc { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.provider-card__tagline {
  margin: 10px 0 0; font-size: 13px; color: var(--ink-2);
  line-height: 1.45; text-wrap: pretty;
}
.provider-card__specs {
  margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap;
}

/* Row variant for search results */
.provider-row {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  color: inherit;
}
.provider-row__media {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  position: relative; overflow: hidden;
}
.provider-row__head {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.provider-row__name { margin: 0; font-size: 19px; font-weight: 500; }
.provider-row__loc { font-size: 13px; color: var(--ink-3); }
.provider-row__tagline {
  margin: 6px 0 10px; font-size: 14px;
  color: var(--ink-2); line-height: 1.5;
}
.provider-row__meta {
  display: flex; gap: 16px; font-size: 13px;
  color: var(--ink-3); align-items: center; flex-wrap: wrap;
}
.provider-row__meta strong { color: var(--ink); font-weight: 500; }
.provider-row__specs {
  margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap;
}
.provider-row__action {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--teal-ink); font-weight: 500;
}

/* Provider placeholder graphic */
.provider-ph {
  width: 100%; height: 100%; position: relative;
  background:
    linear-gradient(135deg, transparent 40%, oklch(0.86 0.04 var(--teal-h) / 0.5) 40%, oklch(0.86 0.04 var(--teal-h) / 0.5) 55%, transparent 55%),
    linear-gradient(135deg, oklch(0.93 0.02 80) 0%, oklch(0.88 0.03 60) 100%);
  display: grid; place-items: center;
}
.provider-ph__initial {
  font-family: var(--serif); font-style: italic;
  font-size: 56px; color: var(--teal-ink); opacity: 0.7;
}

.provider-ph--logo {
  background:
    radial-gradient(ellipse at center, var(--bg-paper) 0%, var(--bg-paper) 55%, var(--bg-elev) 100%);
  display: grid; place-items: center; padding: 18px;
}
.provider-ph--logo img {
  max-width: 70%; max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(30, 28, 20, 0.08));
}
.provider-ph--logo .provider-ph__initial--fallback { display: none; }
.provider-ph--logo-failed {
  background:
    linear-gradient(135deg, transparent 40%, oklch(0.86 0.04 var(--teal-h) / 0.5) 40%, oklch(0.86 0.04 var(--teal-h) / 0.5) 55%, transparent 55%),
    linear-gradient(135deg, oklch(0.93 0.02 80) 0%, oklch(0.88 0.03 60) 100%);
}
.provider-ph--logo-failed .provider-ph__initial--fallback {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 56px; color: var(--teal-ink); opacity: 0.7;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
}
.trust-col__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-soft);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.trust-col h3 { margin: 0; font-size: 17px; font-weight: 500; }
.trust-col p {
  margin: 8px 0 0; font-size: 14px;
  color: var(--ink-3); line-height: 1.6; text-wrap: pretty;
}

/* ---------- Editorial quote ---------- */
.editorial-quote {
  max-width: 980px; margin: 120px auto 0;
  padding: 0 40px; text-align: center;
}
.editorial-quote__kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 24px;
}
.editorial-quote__text {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; line-height: 1.35;
  margin: 0; color: var(--ink);
  letter-spacing: -0.01em; text-wrap: balance;
}
.editorial-quote__accent { color: var(--teal-ink); }
.editorial-quote__attrib {
  margin-top: 24px; font-size: 13px;
  color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 120px; padding: 56px 40px 40px;
  border-top: 1px solid var(--rule);
  background: var(--bg-elev);
}
.site-footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.site-footer__tagline {
  margin: 12px 0 0; color: var(--ink-3);
  font-size: 14px; max-width: 340px; line-height: 1.6;
}
.site-footer__col-title {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 14px; font-family: var(--mono);
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.site-footer__col a { font-size: 14px; color: var(--ink-2); }
.site-footer__col a:hover { color: var(--ink); }
.site-footer__bottom {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-4);
  font-family: var(--mono); gap: 16px; flex-wrap: wrap;
}
.site-footer__bottom-links { display: flex; gap: 20px; }

/* ---------- Generic page structure ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 980px; }
.container--wide { max-width: 1280px; padding: 0 32px; }

.page { padding: 28px 0 80px; }

.crumbs {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 20px; flex-wrap: wrap;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs__current { color: var(--ink); }
.crumbs svg { flex-shrink: 0; }

/* ---------- Category page ---------- */
.cat-hero {
  padding: 48px 40px 56px;
  border-bottom: 1px solid var(--rule);
}
.cat-hero__grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 56px; align-items: end;
}
.cat-hero__eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 14px;
}
.cat-hero__title {
  margin: 0; font-size: 72px; font-weight: 400;
  line-height: 1;
  font-family: var(--serif); font-style: italic;
  letter-spacing: -0.02em;
}
.cat-hero__lede {
  margin-top: 20px; font-size: 18px;
  color: var(--ink-2); max-width: 560px;
  line-height: 1.55; text-wrap: pretty;
}
.cat-facts {
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 24px;
}
.cat-facts__title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
}
.cat-facts dl {
  margin: 0; display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 10px; column-gap: 16px; font-size: 14px;
}
.cat-facts dt { color: var(--ink-3); }
.cat-facts dd { margin: 0; text-align: right; }
.cat-facts__yes { color: var(--teal-ink); }

.cat-related {
  margin-top: 40px;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.cat-related__label {
  font-size: 12px; color: var(--ink-3);
  padding: 7px 0; margin-right: 8px;
  font-family: var(--mono); letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cat-cities {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.cat-city {
  text-align: left; padding: 16px 20px;
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color 150ms, background 150ms;
}
.cat-city:hover { border-color: var(--rule-2); background: var(--bg-paper); }

.cat-city--geo {
  border-color: var(--teal-mid);
  background: var(--teal-soft);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.cat-city--geo:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.cat-city--input {
  gap: 10px;
}
.cat-city__input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 2px 0;
  outline: none;
  color: var(--ink);
  font-family: inherit;
}
.cat-city__input:focus { outline: none; }
.cat-city__submit {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid; place-items: center;
  cursor: pointer;
}
.cat-city__submit:hover { background: var(--teal-hover, var(--teal)); }
.cat-city__name { font-weight: 500; font-size: 15px; }
.cat-city__count { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

.cat-article-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.cat-article h3 {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; font-weight: 500; margin: 0;
  letter-spacing: -0.01em;
}
.cat-article p {
  margin: 10px 0 0; color: var(--ink-2);
  font-size: 15px; line-height: 1.6; text-wrap: pretty;
}

/* ---------- Search results ---------- */
.results-hero {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.results-title {
  margin: 0; font-size: 32px; font-weight: 400; letter-spacing: -0.01em;
}
.results-title__italic { font-family: var(--serif); font-style: italic; }
.results-title__accent { color: var(--teal-ink); }
.results-updated {
  font-size: 13px; color: var(--ink-3); font-family: var(--mono);
  white-space: nowrap;
}

.results-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
}

.filter-sidebar {
  position: sticky; top: 100px; align-self: start;
}
.filter-sidebar__head {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.filter-group { margin-bottom: 28px; }
.filter-group__title {
  font-size: 13px; font-weight: 500; margin-bottom: 12px; color: var(--ink);
}
.filter-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 13px; color: var(--ink-2);
  cursor: pointer;
}
.filter-row__box {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--rule-2);
  background: transparent;
  display: grid; place-items: center;
  transition: all 150ms; flex-shrink: 0;
}
.filter-row input:checked ~ .filter-row__box {
  border-color: var(--teal-ink); background: var(--teal-ink);
}
.filter-row__label { flex: 1; }
.filter-row__count {
  font-size: 11px; color: var(--ink-4); font-family: var(--mono);
}
.filter-show-all {
  font-size: 13px; color: var(--teal-ink);
  padding: 4px 0; margin-top: 4px; background: none; border: none; cursor: pointer;
}

.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule); margin-bottom: 4px;
}
.sort-tabs { display: flex; gap: 8px; }
.sort-tab {
  padding: 6px 12px; font-size: 13px;
  border-radius: var(--r-pill);
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--rule-2);
}
.sort-tab--active {
  background: var(--ink); color: white; border-color: var(--ink);
}

.map-teaser {
  margin: 20px 0 24px;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--rule);
  background: oklch(0.94 0.01 80);
  height: 160px; position: relative;
}

.results-map {
  margin: 20px 0 28px;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--rule);
  background: oklch(0.94 0.01 80);
  height: 340px; position: relative; z-index: 0;
}
.leaflet-container a { color: var(--teal-ink); }

.provider-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  background: oklch(0.94 0.01 80);
  display: block;
}
iframe.provider-map { border: 1px solid var(--rule); }

.provider-hero__links {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 24px; font-size: 14px;
}
.provider-hero__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-ink);
  border-bottom: 1px solid var(--teal-mid);
  padding-bottom: 1px;
  transition: color 150ms, border-color 150ms;
}
.provider-hero__link:hover { color: var(--teal); border-color: var(--teal); }
.provider-hero__link svg { flex-shrink: 0; }

.search-notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: oklch(0.96 0.03 80);
  border: 1px solid var(--rule-2);
  border-left: 3px solid var(--teal);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--ink-2);
  line-height: 1.5;
}
.search-notice strong { color: var(--ink); font-weight: 500; }

.empty-results {
  padding: 60px 24px;
  text-align: center;
  background: var(--bg-paper);
  border: 1px dashed var(--rule-2);
  border-radius: var(--r-md);
  color: var(--ink-3);
}
.empty-results a { color: var(--teal-ink); border-bottom: 1px solid var(--teal-mid); }
.map-teaser__chip {
  position: absolute; top: 14px; left: 14px;
  background: var(--bg-paper);
  border-radius: var(--r-pill);
  padding: 6px 12px; font-size: 12px;
  border: 1px solid var(--rule-2);
  display: inline-flex; align-items: center; gap: 6px;
}

.results-more {
  margin-top: 40px; display: flex; justify-content: center;
}
.btn-ghost {
  padding: 12px 28px; font-size: 14px;
  background: var(--bg-paper); border: 1px solid var(--rule-2);
  border-radius: var(--r-pill); color: var(--ink);
  transition: border-color 150ms;
}
.btn-ghost:hover { border-color: var(--ink-3); }

/* ---------- Provider profile ---------- */
.provider-profile { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.provider-hero {
  padding: 28px 0 48px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: start;
}

.provider-hero__chips { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }

.provider-hero__title {
  margin: 0; font-size: 52px; font-weight: 400;
  line-height: 1.02; letter-spacing: -0.02em;
}
.provider-hero__tagline {
  margin-top: 12px; font-size: 20px; color: var(--ink-2);
  line-height: 1.4; font-family: var(--serif); font-style: italic;
  text-wrap: pretty; max-width: 580px;
}

.provider-hero__meta {
  margin-top: 28px;
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; flex-wrap: wrap;
}
.provider-hero__meta-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.provider-hero__meta-item--teal { color: var(--teal-ink); }
.provider-hero__meta-item--muted { color: var(--ink-2); }

.provider-hero__cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.btn-primary {
  padding: 12px 24px; background: var(--teal); color: white;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px oklch(0.48 0.08 var(--teal-h) / 0.3);
  transition: transform 150ms;
}
.btn-primary:hover { transform: translateY(-1px); color: white; }
.btn-secondary {
  padding: 12px 20px; background: var(--bg-paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-pill); font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.btn-icon {
  padding: 12px; background: var(--bg-paper);
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  display: grid; place-items: center;
}

.provider-hero__media {
  aspect-ratio: 4/5; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--rule);
}

.provider-body {
  padding-bottom: 40px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
}

.block { margin-bottom: 40px; }

.about-quote {
  margin: 0; padding: 24px 28px;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--teal-mid);
  border-radius: var(--r-md);
}
.about-quote__body {
  margin: 0; padding: 0; position: relative;
}
.about-quote__mark {
  color: var(--teal-mid);
  float: left; margin: 0 14px -6px -6px;
  opacity: 0.7;
}
.about-quote__body p {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.55;
  color: var(--ink); text-wrap: pretty;
}
.about-quote__attrib {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-size: 13px; color: var(--ink-3);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.about-quote__attrib a { color: var(--teal-ink); border-bottom: 1px solid var(--teal-mid); }
.block__title {
  font-size: 22px; font-weight: 500;
  margin: 0 0 16px; letter-spacing: -0.01em;
}

.staff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.staff-card {
  display: flex; gap: 14px; padding: 16px;
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.staff-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-soft);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  color: var(--teal-ink); font-size: 22px;
}
.staff-card__name { font-weight: 500; font-size: 15px; }
.staff-card__role { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.staff-card__years {
  font-size: 12px; color: var(--ink-4);
  font-family: var(--mono); margin-top: 6px;
}

.review { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.review__head {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px;
}
.review__name { font-size: 14px; font-weight: 500; }
.review__when { font-size: 12px; color: var(--ink-4); }
.review__stars { margin-left: auto; display: flex; gap: 1px; }
.review__body {
  margin: 0; font-size: 14px;
  color: var(--ink-2); line-height: 1.55; text-wrap: pretty;
}

.sidebar-card {
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card__title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.booking-days { display: flex; gap: 6px; margin-bottom: 20px; overflow-x: auto; }
.booking-day {
  flex: 1; min-width: 52px; padding: 10px 8px;
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--rule-2); border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center;
}
.booking-day--active { background: var(--ink); color: white; border-color: var(--ink); }
.booking-day__dow { font-size: 11px; opacity: 0.7; }
.booking-day__date { font-size: 18px; font-weight: 500; margin-top: 2px; }

.booking-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.booking-slot {
  padding: 10px 0; font-size: 14px;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--rule-2); border-radius: var(--r-md);
}
.booking-slot[disabled] {
  background: transparent; color: var(--ink-4);
  border-color: var(--rule); text-decoration: line-through;
  cursor: not-allowed;
}

.booking-insurance {
  margin-top: 20px; padding: 14px;
  background: var(--teal-soft); border-radius: var(--r-md);
  font-size: 13px; color: var(--teal-ink); line-height: 1.5;
}
.booking-insurance strong { display: block; margin-bottom: 4px; }

.booking-meta {
  margin: 20px 0 0;
  display: grid; grid-template-columns: 1fr auto;
  row-gap: 10px; font-size: 13px;
}
.booking-meta dt { color: var(--ink-3); }
.booking-meta dd { margin: 0; text-align: right; max-width: 200px; }

/* ---------- Category index grid (/kategorier) ---------- */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 32px;
}
.category-tile {
  display: block; padding: 20px 22px;
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  transition: border-color 250ms, transform 250ms, box-shadow 250ms;
  color: inherit;
}
.category-tile:hover {
  transform: translateY(-2px);
  border-color: var(--rule-2);
  box-shadow: var(--shadow-2);
}
.category-tile__name {
  font-family: var(--serif); font-style: italic;
  font-weight: 500; font-size: 22px;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.category-tile__desc {
  font-size: 13px; color: var(--ink-3); line-height: 1.55;
}

/* ---------- Review source tiles ---------- */
.review-sources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.review-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms;
  min-height: 92px;
  text-decoration: none;
}
.review-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.review-tile__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-tile__brand {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--mono);
}

.review-tile__logo { flex-shrink: 0; display: grid; place-items: center; }

.review-tile__body {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.review-tile__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 22px;
  font-weight: 500;
}
.review-tile__rating strong { font-weight: 500; }

.review-tile__star { font-size: 18px; line-height: 1; }

.review-tile__count {
  font-size: 12px;
  font-family: var(--mono);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.review-tile__count--warning { font-weight: 500; opacity: 1; }

.review-sources__empty {
  padding: 18px 22px;
  background: var(--bg-paper);
  border: 1px dashed var(--rule-2);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--ink-3); line-height: 1.5;
  margin: 0;
}

.review-tile__cta {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

/* Brand colour variants — soft background, tinted border, matching text */
.review-tile--google {
  background: linear-gradient(135deg, #e8f0fe 0%, #fce8ea 100%);
  border-color: #d2e0f7;
  color: #1a4591;
}
.review-tile--google .review-tile__star { color: #fbbc05; }

.review-tile--facebook {
  background: #e7f0fe;
  border-color: #cfe0fc;
  color: #0b4a9e;
}
.review-tile--facebook .review-tile__star { color: #fbbc05; }

.review-tile--reco {
  background: #fff7c0;
  border-color: #ffe680;
  color: #4a3d00;
}
.review-tile--reco .review-tile__logo {
  background: #ffe14a;
  border-radius: 50%;
  width: 22px; height: 22px;
}
.review-tile--reco .review-tile__star { color: #d19600; }

.review-tile--ivo {
  background: #f2eee6;
  border-color: #d9d3bf;
  color: #3a3a37;
}
.review-tile--ivo .review-tile__count--warning {
  color: #8a3b1a;
}

.review-tile--empty {
  background: var(--bg-paper);
  border-color: var(--rule-2);
  color: var(--ink-3);
}
.review-tile--empty .review-tile__brand {
  color: var(--ink-3);
}

/* Card-level compact version — only shown when rating exists, one row */
.review-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  border: 1px solid;
  background: var(--bg-paper);
}
.review-chip__num { font-weight: 500; font-family: var(--sans); font-size: 12px; }
.review-chip--google   { border-color: #d2e0f7; color: #1a4591; background: #f2f6fe; }
.review-chip--facebook { border-color: #cfe0fc; color: #0b4a9e; background: #edf3fe; }
.review-chip--reco     { border-color: #ffe680; color: #4a3d00; background: #fff9d6; }
.review-chip--ivo      { border-color: #d9d3bf; color: #3a3a37; background: #f4f1e8; }

/* ---------- Article page ---------- */
.article-page { background: var(--bg); }

.article-head { padding: 32px 0 28px; border-bottom: 1px solid var(--rule); margin-bottom: 40px; }

.article-kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.article-kicker::before {
  content: ""; width: 24px; height: 1px; background: var(--teal);
}

.article-title {
  margin: 0; font-size: 56px; font-weight: 400;
  line-height: 1.05; letter-spacing: -0.02em;
  font-family: var(--serif); font-style: italic;
  text-wrap: balance;
}
.article-subtitle {
  margin: 18px 0 0; font-size: 20px; color: var(--ink-2);
  line-height: 1.45; max-width: 640px; text-wrap: pretty;
}
.article-meta {
  margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3); font-family: var(--mono);
  letter-spacing: 0.04em;
}
.article-meta__divider { color: var(--ink-4); }

.article-body {
  font-size: 18px; line-height: 1.7; color: var(--ink-2);
}
.article-body > :first-child { margin-top: 0; }
.article-body h2 {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; font-weight: 500;
  margin: 48px 0 16px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.2;
}
.article-body h3 {
  font-size: 20px; font-weight: 500;
  margin: 36px 0 12px; color: var(--ink);
}
.article-body p { margin: 0 0 18px; text-wrap: pretty; }
.article-body strong { color: var(--ink); font-weight: 500; }
.article-body em { font-style: italic; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 20px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--teal-ink); border-bottom: 1px solid var(--teal-mid); }
.article-body a:hover { color: var(--teal); }
.article-body blockquote {
  margin: 28px 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--teal-mid);
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--ink); line-height: 1.4;
}
.article-body hr {
  border: 0; border-top: 1px solid var(--rule);
  margin: 40px 0;
}
.article-body table {
  width: 100%; border-collapse: collapse;
  font-size: 15px; margin: 24px 0;
}
.article-body th, .article-body td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--rule);
}
.article-body th {
  font-weight: 500; color: var(--ink);
  font-size: 13px; letter-spacing: 0.02em;
  background: var(--bg-paper);
}
.article-body tbody tr:last-child td { border-bottom: 0; }

.article-sources {
  margin-top: 56px; padding: 28px 32px;
  background: var(--bg-paper); border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.article-sources__title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.article-sources ol { margin: 0; padding-left: 20px; }
.article-sources li {
  margin-bottom: 8px; font-size: 14px;
  color: var(--ink-2); line-height: 1.5;
}
.article-sources a { color: var(--teal-ink); }
.article-sources a:hover { color: var(--teal); text-decoration: underline; }

.article-disclaimer {
  margin-top: 20px; padding: 18px 24px;
  background: oklch(0.96 0.02 80);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--ink-2); line-height: 1.6;
}
.article-disclaimer strong {
  display: block; color: var(--ink);
  margin-bottom: 4px; font-weight: 500;
}

.article-rail { margin-top: 64px; }

@media (max-width: 640px) {
  .article-title { font-size: 36px; }
  .article-subtitle { font-size: 17px; }
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 26px; }
  .article-body h3 { font-size: 18px; }
}

/* ---------- Route fade ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
main, .page { animation: fadeIn 260ms ease; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; padding: 32px 24px 64px; gap: 48px; }
  .provider-hero { grid-template-columns: 1fr; }
  .provider-body { grid-template-columns: 1fr; gap: 32px; }
  .results-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cities { grid-template-columns: repeat(2, 1fr); }
  .cat-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-article-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 20px 16px; gap: 12px; }
  .site-header--compact { padding: 12px 16px; }
  .site-nav { display: none; }
  .site-header__search { max-width: none; margin: 0; width: 100%; }
  .brand__mark { font-size: 24px; }
  .site-header--compact .brand__mark { font-size: 22px; }
  .home-hero { padding: 24px 16px 48px; }
  .home-wordmark { font-size: clamp(56px, 16vw, 96px); }
  .home-tagline { font-size: 17px; margin-top: 20px; }
  .home-stats { gap: 16px; flex-wrap: wrap; margin-top: 24px; }
  .home-stat__divider { display: none; }
  .home-stat__n { font-size: 22px; }
  .home-eyebrow { font-size: 10px; margin-bottom: 12px; }
  .search-pill { flex-direction: column; border-radius: var(--r-lg); padding: 8px; box-shadow: var(--shadow-2); }
  .search-pill__field { padding: 10px 14px; }
  .search-pill__field + .search-pill__field { border-top: 1px solid var(--rule-2); margin-top: 4px; padding-top: 12px; }
  .search-pill__divider { display: none; }
  .search-pill__submit { width: 100%; height: 48px; border-radius: var(--r-md); margin-top: 6px; }
  .search-pill__input { font-size: 16px; } /* prevent iOS zoom-on-focus */
  .header-search { flex-wrap: wrap; }
  .header-search input { flex: 1 0 100%; }
  .header-search__divider { display: none; }
  .needs-grid, .providers-grid { grid-template-columns: 1fr; }
  .cat-hero { padding: 32px 16px; }
  .cat-hero__title { font-size: 42px; }
  .cat-hero__lede { font-size: 16px; }
  .cat-cities { grid-template-columns: 1fr; }
  .site-footer { padding: 40px 16px 32px; margin-top: 72px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: start; gap: 8px; }
  .provider-profile { padding: 0 16px; }
  .provider-hero { padding: 20px 0 32px; gap: 24px; }
  .provider-hero__title { font-size: 32px; }
  .provider-hero__tagline { font-size: 17px; }
  .provider-hero__meta { gap: 14px; }
  .provider-hero__cta { flex-wrap: wrap; }
  .provider-body { padding-bottom: 32px; }
  .provider-row { grid-template-columns: 72px 1fr; gap: 14px; padding: 16px 0; }
  .provider-row__action { display: none; } /* clicking the card area goes to profile */
  .provider-row__meta { gap: 10px; font-size: 12px; }
  .editorial-quote { padding: 0 16px; margin-top: 72px; }
  .editorial-quote__text { font-size: 20px; }
  .section-title { font-size: 26px; }
  .section-head { flex-direction: column; align-items: start; gap: 12px; margin-bottom: 20px; }
  .trust-strip { padding: 24px 20px; gap: 28px; }
  .results-layout { display: block; }
  .filter-sidebar { position: static; margin-bottom: 24px; padding: 16px; background: var(--bg-paper); border: 1px solid var(--rule); border-radius: var(--r-md); }
  .results-hero { flex-direction: column; align-items: start; gap: 10px; }
  .results-title { font-size: 26px; }
  .results-map { height: 260px; }
  .sort-tabs { flex-wrap: wrap; }
  .review-sources { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .review-tile { min-height: 76px; padding: 12px 14px; }
  .review-tile__rating { font-size: 18px; }
  .provider-profile__grid { grid-template-columns: 1fr; gap: 28px; }
  .provider-profile__side { position: static; }
  .provider-profile__header h1 { font-size: 32px; }
  .category-grid { grid-template-columns: 1fr; gap: 12px; }
  .page { padding: 16px 0 48px; }
  .container, .container--wide, .container--narrow { padding: 0 16px; }
  .block-header { flex-direction: column; align-items: start; gap: 8px; }
}
