:root {
  --navy: #12203a;
  --navy-deep: #0b1220;
  --ink: #121826;
  --ink-soft: #3d4658;
  --muted: #5c6678;
  --ice: #f4f6f9;
  --paper: #fbfcfe;
  --line: #d7dde8;
  --line-strong: #c3cbd8;
  --cobalt: #1d4ed8;
  --cobalt-deep: #163db0;
  --signal: #dc2626;
  --ok: #0f766e;
  --display: 'Schibsted Grotesk', system-ui, sans-serif;
  --sans: 'Figtree', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 0 rgba(18, 32, 58, 0.05), 0 14px 36px rgba(18, 32, 58, 0.07);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  line-height: 1.2;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

#site-footer {
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

body.nav-open { overflow: hidden; }

#site-header { z-index: 80; }

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.serif,
.display { font-family: var(--display); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: 126px;
  height: 32px;
}

.site-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.site-brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
}

.header-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.header-nav a:hover,
.header-nav a.is-active {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-cta {
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius);
}

.nav-toggle {
  appearance: none;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle .nav-ico {
  width: 20px;
  height: 20px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.46);
  opacity: 0;
  transition: opacity .24s ease;
}

.nav-overlay.is-open .nav-overlay-scrim { opacity: 1; }

.nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(380px, 92vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(-104%);
  transition: transform .28s ease;
  box-shadow: 16px 0 40px rgba(11, 18, 32, 0.12);
}

.nav-overlay.is-open .nav-panel { transform: translateX(0); }

.nav-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 10px;
  padding-top: max(16px, env(safe-area-inset-top));
  border-bottom: 1px solid var(--line);
}

.nav-close {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-close .nav-ico { width: 22px; height: 22px; }

.nav-panel-scroll {
  flex: 1;
  overflow: auto;
}

.nav-sheet { display: none; }
.nav-sheet.is-active { display: block; }

.nav-item,
.nav-back,
.nav-sub-link {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  border: 0;
  border-bottom: 1px solid var(--ice);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.nav-item:hover,
.nav-back:hover,
.nav-sub-link:hover { background: var(--ice); }

.nav-item .nav-ico,
.nav-back .nav-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--cobalt);
}

.nav-item-label { flex: 1; }

.nav-item-arrow { display: inline-flex; opacity: 0.5; }
.nav-item-arrow .nav-ico { width: 16px; height: 16px; }

.nav-sub-title {
  margin: 0;
  padding: 16px 20px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay-scrim,
  .nav-panel { transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}

.btn-primary {
  background: var(--cobalt);
  color: #fff;
}

.btn-primary:hover { background: var(--cobalt-deep); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-secondary:hover { background: var(--ice); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-gold,
.btn-signal {
  background: var(--navy);
  color: #fff;
}

.btn-gold:hover,
.btn-signal:hover { background: var(--navy-deep); }

/* Hero — split, not photo banner */
.hero-split {
  padding: 56px 0 28px;
  background:
    linear-gradient(180deg, #eef2f8 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}

.hero-split h1,
.page-hero h1,
.section-head h2 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.hero-split h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 12px 0 16px;
}

.hero-split h1 em {
  font-style: normal;
  color: var(--cobalt);
}

.hero-lead,
.lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36rem;
}

.search-stack {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow);
}

.search-stack .search-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.search-card {
  position: relative;
  z-index: 16;
  overflow: visible;
}

.search-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--ice);
  z-index: 1;
}

.search-field:focus-within,
.search-field.is-open {
  z-index: 3;
  background: #fff;
  border-color: var(--cobalt);
}

.search-field > span,
.search-field > label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-field input,
.search-field select,
.field input,
.field textarea,
.field select {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.search-go {
  min-height: 50px;
  width: 100%;
  border-radius: var(--radius);
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  max-height: 320px;
  overflow: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-suggest[hidden] { display: none; }

.search-suggest-label,
.search-suggest-empty {
  padding: 8px 10px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cobalt);
}

.search-suggest-empty {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.search-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border: 0;
  background: none;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.search-suggest button:hover,
.search-suggest button.is-on { background: var(--ice); }

.search-suggest button small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.search-suggest-more {
  display: block;
  margin-top: 4px;
  padding: 9px 10px;
  color: var(--cobalt);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.search-popular > span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.search-popular button,
.search-popular a {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  text-decoration: none;
}

.search-popular button:hover,
.search-popular a:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.stat-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section { padding: 64px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.section-head p {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 38rem;
}

.page-hero { padding: 40px 0 16px; }

.page-banner {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 36px;
  margin-bottom: 32px;
}

.page-banner h1 { color: #fff; margin: 8px 0 10px; }
.page-banner .lede,
.page-banner .muted,
.page-banner #cat-crumbs,
.page-banner #cat-crumbs a { color: #c9d3e4; }
.page-banner img { display: none; }

.tiny {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--signal);
}

.muted { color: var(--muted); }

/* Categories as rows */
.cat-rows,
.how-strip,
.city-list,
.quote-stack,
.guide-rows {
  display: grid;
  gap: 10px;
}

.cat-row,
.how-item,
.city-item,
.guide-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.cat-row:hover,
.city-item:hover,
.guide-row:hover,
.company-card:hover {
  border-color: var(--navy);
}

.cat-idx,
.how-idx {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cobalt);
  width: 36px;
}

.cat-row h3,
.how-item h3,
.city-item strong,
.guide-row h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cat-row p,
.how-item p,
.city-item small,
.guide-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cat-grid,
.card-grid,
.review-grid,
.guide-grid,
.city-grid,
.feat-grid,
.why-grid,
.city-mosaic {
  display: grid;
  gap: 12px;
}

.cat-grid { grid-template-columns: 1fr; }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: 1fr; }
.guide-grid { grid-template-columns: repeat(3, 1fr); }
.city-grid,
.city-mosaic { grid-template-columns: repeat(4, 1fr); }
.feat-grid { grid-template-columns: repeat(2, 1fr); }
.why-grid { grid-template-columns: 1fr 1fr; }

body[data-page="home"] .section { padding: 48px 0; }
body[data-page="home"] .cat-rows { grid-template-columns: 1fr 1fr; }
body[data-page="home"] .how-strip { grid-template-columns: repeat(3, 1fr); }
body[data-page="home"] .how-item {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 8px;
}

.tile,
.card,
.review-card,
.guide-card,
.company-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.tile {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.tile img,
.guide-card img,
.company-cover img,
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile img { height: 110px; }

.guide-card img {
  height: 132px;
  max-height: 132px;
}

.company-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 0;
  align-items: stretch;
}

.company-cover {
  position: relative;
  min-height: 0;
  max-height: 132px;
  overflow: hidden;
  background: var(--ice);
}

.company-cover img {
  height: 100%;
  min-height: 0;
  max-height: 132px;
}

.company-card.is-compact .tile-body {
  padding: 14px 16px;
}

.company-card.is-compact h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-cover .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.company-card h3 { font-size: 1.08rem; margin: 0 0 6px; }

.why-card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--cobalt);
}

.why-icon {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--cobalt);
  margin-bottom: 10px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
}

.city-card img { display: none; }

.city-card span {
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.city-card small {
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}

.city-card::after {
  content: '→';
  color: var(--cobalt);
  font-weight: 700;
}

.profile-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.profile-hero > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.profile-hero-card {
  padding: 28px 26px;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.notice-page { max-width: 640px; }

.tile-body,
.card-body,
.review-card,
.guide-card,
.company-card .tile-body { padding: 16px 18px 18px; }

.tile h3,
.card h3,
.guide-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.pill:hover { border-color: var(--cobalt); color: var(--cobalt); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.step {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
}

.step-num {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--cobalt);
  margin-bottom: 8px;
}

.stars { color: var(--cobalt); letter-spacing: 1px; }

.review-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.review-summary > p { margin: 0; color: var(--ink-soft); }

.review-summary strong {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.review-viewport { overflow: hidden; }
.review-track { display: grid; gap: 10px; }

.review-card[data-review-card] {
  min-height: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-weight: 800;
  grid-row: span 3;
}

.review-avatar.tone-0 { background: #dbeafe; color: #1d4ed8; }
.review-avatar.tone-1 { background: #fee2e2; color: #b91c1c; }
.review-avatar.tone-2 { background: #ccfbf1; color: #0f766e; }
.review-avatar.tone-3 { background: #f3e8ff; color: #6d28d9; }
.review-avatar.tone-4 { background: #e2e8f0; color: #12203a; }

.review-stars {
  display: flex;
  gap: 2px;
  margin: 0 0 8px;
}

.review-stars span {
  display: block;
  width: 14px;
  height: 14px;
  color: #d7dde8;
}

.review-stars span.is-on { color: var(--cobalt); }
.review-stars svg { display: block; width: 100%; height: 100%; fill: currentColor; }

.review-card[data-review-card] > p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.96rem;
  grid-column: 2;
}

.review-meta {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-size: 0.84rem;
}

.review-dots { display: none; }

.cta-band,
.cta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--navy);
  color: #e8edf5;
}

.cta-band h2,
.cta-bar h2 {
  color: #fff;
  font-family: var(--display);
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}

.guide-featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  margin-top: 24px;
}

.guide-featured img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.guide-featured-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-featured-body h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
}

.filter-pill.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.price-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 24px;
}

.price-result-num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
}

.price-range {
  position: relative;
  height: 6px;
  margin: 18px 0 10px;
  background: var(--ice);
}

.price-range b {
  position: absolute;
  inset: 0 12%;
  background: var(--cobalt);
  opacity: 0.35;
}

.price-range i {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: var(--navy);
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.price-split div {
  background: var(--ice);
  padding: 12px 14px;
}

.price-split strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  margin-top: 4px;
}

.price-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ice);
}

.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr { cursor: pointer; }
.price-table tbody tr:hover { background: var(--ice); }
.price-table tbody tr.is-on { background: #e8eefc; }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.check-row input { margin-top: 3px; accent-color: var(--cobalt); }

.prose-article h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
  scroll-margin-top: 88px;
}

.prose-article h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 22px 0 8px;
}

.prose-article p { line-height: 1.7; }

.prose-article ul,
.prose-article ol {
  margin: 0 0 18px;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.prose-article li + li { margin-top: 6px; }

.prose-article a { color: var(--cobalt); }

/* SEO article template */
.article-page { padding: 28px 0 72px; }

.article-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 0.86rem;
  color: var(--muted);
}

.article-crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.article-crumbs a:hover { color: var(--cobalt); }

.article-crumbs span[aria-hidden="true"] { color: var(--line-strong); }

.article-header h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 8px 0 14px;
  color: var(--navy);
  max-width: 18ch;
}

.article-header .lede {
  max-width: 40rem;
  font-size: 1.12rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-hero {
  margin: 26px 0 0;
  background: var(--ice);
  border: 1px solid var(--line);
}

.article-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-hero figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.article-facts,
.article-toc,
.article-note,
.article-aside-card {
  background: #fff;
  border: 1px solid var(--line);
}

.article-facts {
  padding: 22px 24px;
  margin-bottom: 28px;
}

.article-facts h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  margin: 6px 0 14px;
}

.article-facts ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.article-facts li + li { margin-top: 8px; }

.article-toc {
  padding: 18px 22px;
  margin-bottom: 28px;
}

.article-toc p {
  margin: 0 0 10px;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.article-toc li { margin: 7px 0; }

.article-toc a {
  color: inherit;
  text-decoration: none;
}

.article-toc a:hover { color: var(--cobalt); }

.article-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  margin: 16px 0 22px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.article-table th,
.article-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.article-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ice);
}

.article-table tr:last-child td { border-bottom: 0; }

.article-checks {
  display: grid;
  gap: 10px;
  margin: 8px 0 22px;
}

.article-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 12px 14px;
  background: var(--ice);
  color: var(--ink-soft);
  line-height: 1.55;
}

.article-check b {
  color: var(--ink);
  font-weight: 700;
}

.article-check i {
  font-style: normal;
  font-weight: 800;
  color: var(--cobalt);
}

.article-note {
  padding: 16px 18px;
  margin: 8px 0 22px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.article-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 22px;
}

.article-split > div {
  background: var(--ice);
  padding: 16px 18px;
}

.article-split strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  margin-top: 4px;
}

.article-faq {
  margin-top: 36px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.article-faq h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 18px 0 8px;
}

.article-related { margin-top: 40px; }

.article-aside {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
}

.article-aside-card { padding: 20px 20px 18px; }

.article-aside-card h2,
.article-aside-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  margin: 6px 0 10px;
}

.article-aside .btn { width: 100%; justify-content: center; }

.article-price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.article-price-row:last-child { border-bottom: 0; }

.article-price-row span { color: var(--muted); }

.article-price-row b { font-family: var(--display); }

.site-footer {
  background: var(--ice);
  color: var(--ink-soft);
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: 28px 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.footer-lead {
  margin: 12px 0 0;
  line-height: 1.6;
  max-width: 22rem;
}

.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--cobalt); }
.site-footer h4 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label { font-weight: 700; font-size: 0.9rem; }

.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 11px 12px;
  min-height: 46px;
}

.field textarea { min-height: 140px; resize: vertical; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.stepper span {
  flex: 1;
  height: 4px;
  background: var(--ice);
}

.stepper span.is-on { background: var(--cobalt); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  display: none;
}

.faq-item.is-open p { display: block; }

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--navy);
  color: #dce3ee;
  border: 0;
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-bar p { color: #dce3ee !important; }
.cookie-bar a { color: #fff; }

.home-price-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.home-price-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.home-price-list a:last-child { border-bottom: 0; }
.home-price-list a:hover { background: var(--ice); }
.home-price-list strong {
  font-family: var(--display);
  letter-spacing: -0.015em;
}

@media (max-width: 980px) {
  .header-nav,
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-split-grid,
  .hero-grid,
  .activity,
  .cta-band,
  .cta-bar,
  .steps,
  .card-grid,
  .why-grid,
  .price-calc,
  .guide-featured,
  .price-split,
  .profile-hero,
  .tile,
  .article-layout,
  .article-split {
    grid-template-columns: 1fr;
  }
  .article-hero img { height: 240px; }
  .article-aside { position: static; }
  .company-card { grid-template-columns: 88px 1fr; }
  .feat-grid,
  .guide-grid,
  body[data-page="home"] .cat-rows,
  body[data-page="home"] .how-strip { grid-template-columns: 1fr; }
  .city-mosaic,
  .city-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { padding: 36px 0 20px; }
  .profile-hero > img { height: 200px; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}

.crumbs {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.crumbs a { color: var(--cobalt); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.local-copy {
  max-width: 42rem;
  margin: 8px 0 28px;
}

.local-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.local-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}

.local-facts div {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
}

.local-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.local-facts span { color: var(--muted); font-size: 0.86rem; }

.local-nap {
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.local-nap p { margin: 0; color: var(--ink-soft); }
.local-nap a { color: var(--cobalt); }

.local-index-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 18px;
}

.local-index-cols ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.local-index-cols a {
  color: var(--cobalt);
  text-decoration: none;
  font-weight: 600;
}

.local-index-cols a:hover { text-decoration: underline; }

.faq-static {
  margin: 32px 0 8px;
  display: grid;
  gap: 10px;
}

.faq-static details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
}

.faq-static summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-static p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .local-facts,
  .local-index-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header-inner { width: min(100% - 28px, 1120px); min-height: 60px; }
  .wrap { width: min(100% - 28px, 1120px); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .cta-band, .cta-bar { padding: 22px; flex-direction: column; align-items: flex-start; }
  .hero-split h1 { font-size: 2.1rem; }
  .city-mosaic,
  .city-grid { grid-template-columns: 1fr; }
  .guide-card img { height: 112px; max-height: 112px; }
}
