:root {
  color-scheme: light;
  --bg: #f4efe3;
  --surface: #fffaf0;
  --surface-strong: #fffdf8;
  --text: #1f241d;
  --muted: #566355;
  --line: #d8c9ad;
  --line-strong: #b9a887;
  --forest: #1f5d45;
  --forest-dark: #113b2c;
  --moss: #dfe9d7;
  --sun: #f0b44c;
  --clay: #c66b3d;
  --lake: #3d7f8f;
  --tag: #edf3e8;
  --danger-soft: #fff0ea;
  --shadow: 0 24px 70px rgba(54, 43, 24, 0.13), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 180, 76, 0.2), transparent 32rem),
    radial-gradient(circle at 85% 10%, rgba(61, 127, 143, 0.13), transparent 26rem),
    linear-gradient(135deg, rgba(31, 93, 69, 0.04) 25%, transparent 25%) 0 0 / 46px 46px,
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 14%, rgba(31, 93, 69, 0.055) 14% 15%, transparent 15% 42%, rgba(198, 107, 61, 0.05) 42% 43%, transparent 43%),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(31, 36, 29, 0.035) 76px 77px);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: var(--forest-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 2000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(184, 168, 135, 0.7);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 16px 50px rgba(54, 43, 24, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-dark);
  color: #fff8df;
  font-weight: 950;
  box-shadow: inset 0 -5px 0 rgba(240, 180, 76, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

nav a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--forest-dark);
  font-weight: 820;
  text-decoration: none;
}

nav a:hover,
.header-action:hover {
  background: rgba(31, 93, 69, 0.09);
}

.header-action {
  background: var(--forest-dark);
  color: #fff8df;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  margin: 28px 0 34px;
  padding: clamp(28px, 6vw, 72px);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(226, 237, 219, 0.88));
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  inset: auto -10% -55% 48%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 180, 76, 0.3), transparent 55%);
}

.hero.compact {
  padding: clamp(28px, 5vw, 56px);
}

.map-page-hero {
  margin-bottom: 18px;
  padding: clamp(20px, 3vw, 34px);
}

.map-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.map-page-hero p {
  max-width: 860px;
  margin-bottom: 0.65rem;
}

.map-page-hero .meta {
  font-size: 0.92rem;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 60px);
  background: rgba(255, 253, 248, 0.97);
}


.hero-centered .lead {
  max-width: 560px;
  margin-top: 8px;
  text-wrap: balance;
}

.hero-centered .pilot-note {
  margin-top: 20px;
  text-wrap: balance;
}

.hero-searchbar {
  width: 100%;
  max-width: 780px;
  margin-top: 32px;
}

.searchbar-row {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: 0 8px 32px rgba(54, 43, 24, 0.10);
  overflow: hidden;
}

.searchbar-input,
.searchbar-select {
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  padding: 14px 16px;
  outline: none;
  min-height: 56px;
}

.searchbar-input {
  flex: 1 1 0;
  min-width: 0;
  font-size: 1rem;
}

.searchbar-input::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.searchbar-select {
  border-left: 1.5px solid var(--line);
  flex: 0 0 auto;
  max-width: 180px;
  cursor: pointer;
}

.searchbar-btn {
  flex: 0 0 auto;
  border-radius: 0 14px 14px 0;
  box-shadow: none;
  font-size: 0.95rem;
  padding: 14px 22px;
  min-height: 56px;
}

.searchbar-chips {
  justify-content: center;
  margin-top: 14px;
}

.hero-redesign {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
}

.hero-centered h1 {
  max-width: 700px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--forest-dark);
  color: #fff8df;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 59, 44, 0.18);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button.secondary {
  background: #fff8df;
  border: 1px solid var(--line-strong);
  color: var(--forest-dark);
  box-shadow: none;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.route-strip,
.hero-search,
.map-card {
  border: 1px solid rgba(184, 168, 135, 0.78);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 50px rgba(54, 43, 24, 0.13);
}

.route-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  padding: 12px 16px;
}

.route-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.route-strip strong {
  font-size: 0.95rem;
}

.map-card {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 250, 240, 0.72) 42% 48%, transparent 48%),
    radial-gradient(circle at 28% 30%, rgba(61, 127, 143, 0.3), transparent 15%),
    radial-gradient(circle at 68% 64%, rgba(240, 180, 76, 0.38), transparent 18%),
    repeating-linear-gradient(28deg, rgba(31, 93, 69, 0.12) 0 2px, transparent 2px 32px),
    #dfe9d7;
}

.map-card::before {
  position: absolute;
  inset: 34px;
  border: 2px dashed rgba(31, 93, 69, 0.35);
  border-radius: 50% 42% 55% 45%;
  content: "";
  transform: rotate(-12deg);
}

.map-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--forest-dark);
  content: "Öppna karta →";
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(54, 43, 24, 0.12);
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 300ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card::before {
  z-index: 1;
  border-color: rgba(255, 250, 240, 0.46);
}

.photo-card::after,
.photo-card .map-pin,
.photo-card .photo-overlay {
  z-index: 2;
}

.photo-card::after {
  background: rgba(255, 250, 240, 0.95);
}

.photo-card .map-pin {
  background: rgba(17, 59, 44, 0.94);
}

.photo-overlay,
.image-credit {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(17, 59, 44, 0.78);
  color: #fff8df;
  padding: 5px 9px;
  font-size: 0.7rem;
  font-weight: 820;
}

.pilot-note {
  display: inline-flex;
  width: fit-content;
  max-width: 640px;
  border: 1px solid rgba(31, 93, 69, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--forest-dark) !important;
  padding: 8px 12px;
  font-size: 0.92rem !important;
  font-weight: 800;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--forest-dark);
  color: #fff8df;
  padding: 8px 11px;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(17, 59, 44, 0.22);
}

.map-pin::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.pin-one { left: 12%; top: 58%; }
.pin-two { right: 12%; bottom: 18%; }
.pin-three { right: 18%; top: 22%; }

.hero-search {
  display: grid;
  gap: 12px;
  border-radius: 24px;
  padding: 16px;
}

.hero-search .filter-groups {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.hero-search button[type='submit'] {
  width: 100%;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 46px;
}

.stats-band div,
.lane-card,
.card,
.county-card,
.county-feature-card,
.content-block,
.location-page,
.map-placeholder,
.manifesto-block,
.nearby-search {
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(54, 43, 24, 0.08);
}

.stats-band div {
  padding: 18px;
}

.stats-band strong {
  display: block;
  color: var(--forest-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin: 54px 0 18px;
}

.section-intro h2,
.content-block h2,
.manifesto-block h2,
.location-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.county-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.county-feature-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.county-feature-card:hover,
.county-card:hover {
  border-color: var(--forest);
  box-shadow: 0 22px 60px rgba(31, 93, 69, 0.13);
  transform: translateY(-3px);
}

.county-feature-card strong {
  display: block;
  margin-top: auto;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.county-feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.county-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.county-card {
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.county-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.county-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.county-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.county-card h3 a:hover,
.county-card-link:hover,
.county-samples a:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

.county-card-link {
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.county-card-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.county-card-stats div {
  border: 1px solid rgba(31, 93, 69, 0.12);
  border-radius: 16px;
  background: rgba(237, 243, 232, 0.72);
  padding: 10px;
}

.county-card-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.county-card-stats dd {
  margin: 4px 0 0;
  color: var(--forest-dark);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.county-samples {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.county-samples li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(184, 168, 135, 0.45);
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.county-samples a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.county-samples span {
  color: var(--muted);
  white-space: nowrap;
}

.simple-county-directory {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.simple-county-card {
  display: grid;
  gap: 10px;
  min-height: 145px;
  color: var(--text);
  text-decoration: none;
}

.simple-county-card strong {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.simple-county-card .county-card-link {
  align-self: end;
}

.directory-hero .lead {
  max-width: 820px;
}

.lane-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.lane-card:hover {
  border-color: var(--forest);
  box-shadow: 0 22px 60px rgba(31, 93, 69, 0.13);
  transform: translateY(-3px);
}

.lane-card span {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.lane-card strong {
  display: block;
  margin-top: auto;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.lane-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.guide-lanes {
  margin-bottom: 36px;
}

.lane-card-featured {
  background:
    linear-gradient(135deg, rgba(31, 93, 69, 0.09), rgba(240, 180, 76, 0.14)),
    rgba(255, 250, 240, 0.95);
  border-color: rgba(31, 93, 69, 0.25);
}

.data-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 46px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 93, 69, 0.16);
  border-radius: 20px;
  background: rgba(237, 243, 232, 0.72);
  color: var(--muted);
}

.data-note strong {
  color: var(--forest-dark);
}

.data-note span {
  max-width: 560px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.location-grid {
  align-items: stretch;
}

.compact-intro {
  display: block;
  max-width: 860px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gold-county-hero {
  border: 1px solid rgba(196, 106, 45, 0.18);
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 180, 76, 0.18), transparent 28%),
    rgba(255, 250, 240, 0.9);
}

.county-quality-panel,
.county-service-section,
.county-featured-section,
.municipality-section {
  margin: 24px 0;
}

.county-quality-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.94);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 22px 60px rgba(31, 93, 69, 0.08);
}

.county-quality-copy h2,
.compact-intro h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.county-quality-copy p:last-child,
.compact-intro p:last-child {
  margin-bottom: 0;
}

.county-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.county-stats div,
.service-stat-card,
.featured-service-list a,
.municipality-grid a {
  border: 1px solid rgba(31, 93, 69, 0.14);
  border-radius: 20px;
  background: var(--surface-strong);
  box-shadow: 0 14px 40px rgba(31, 93, 69, 0.06);
}

.county-stats div {
  padding: 18px;
}

.county-stats dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.county-stats dd {
  margin: 6px 0 0;
  color: var(--forest-dark);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.service-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-stat-card,
.featured-service-list a,
.municipality-grid a {
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-stat-card:hover,
.featured-service-list a:hover,
.municipality-grid a:hover {
  border-color: var(--forest);
  box-shadow: 0 18px 45px rgba(31, 93, 69, 0.12);
  transform: translateY(-2px);
}

.service-stat-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-stat-card span,
.featured-service-list span,
.municipality-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.service-stat-card strong {
  color: var(--forest-dark);
  font-size: 2.1rem;
  line-height: 0.9;
}

.service-stat-card small,
.featured-service-list small {
  color: var(--clay);
  font-weight: 900;
}

.featured-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.featured-service-list a {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.featured-service-list strong,
.municipality-grid strong {
  color: var(--forest-dark);
  font-size: 1.05rem;
}

.municipality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.municipality-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
}

.card {
  overflow: hidden;
}

.location-card {
  display: grid;
  grid-template-rows: 132px 1fr;
}

.card-image-strip {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  background: #d9e6d2;
}

.card-image-strip img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: transform 240ms ease;
}

.location-card:hover .card-image-strip img {
  transform: scale(1.035);
}

.card-image-strip::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 59, 44, 0.04), rgba(17, 59, 44, 0.42));
}

.card-map-strip {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(240, 180, 76, 0.34), transparent 26%),
    repeating-linear-gradient(32deg, rgba(31, 93, 69, 0.16) 0 2px, transparent 2px 26px),
    linear-gradient(135deg, #d9e6d2, #f8e6c2);
}

.card-map-strip::after {
  position: absolute;
  inset: 26px -20px auto 42px;
  height: 64px;
  border-top: 3px solid rgba(255, 250, 240, 0.9);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.card-route-number {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  color: rgba(255, 248, 223, 0.82);
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.card-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
}

.card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.card h3 a {
  color: var(--text);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-topline .eyebrow {
  margin-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #d6c7ad;
  border-radius: 999px;
  background: #fff7df;
  color: #77520f;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.status-verified {
  border-color: #b9d9c8;
  background: #e7f4ed;
  color: #15563d;
}

.status-example_only {
  border-color: #d9b8b8;
  background: var(--danger-soft);
  color: #8a2c2c;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(31, 93, 69, 0.12);
  border-radius: 999px;
  background: var(--tag);
  color: var(--forest-dark);
  padding: 5px 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.strong-meta {
  color: var(--forest-dark);
  font-weight: 800;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.card-footer-row p {
  margin: 0;
}

.card-footer-row a {
  color: var(--forest-dark);
  font-weight: 900;
  white-space: nowrap;
}

.content-block,
.location-page,
.map-placeholder,
.manifesto-block {
  margin: 40px 0;
  padding: clamp(24px, 4vw, 42px);
}

.manifesto-block {
  margin-top: 56px;
  background:
    linear-gradient(135deg, rgba(17, 59, 44, 0.95), rgba(31, 93, 69, 0.9)),
    var(--forest-dark);
  color: #fff8df;
}

.manifesto-block .eyebrow,
.manifesto-block p {
  color: rgba(255, 248, 223, 0.78);
}

.manifesto-block p:last-child {
  max-width: 820px;
  font-size: 1.08rem;
}

.nearby-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  padding: 22px 24px;
}

.map-tools .nearby-search {
  margin: 0;
}

.nearby-search h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: -0.03em;
}

.nearby-search p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.facts div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 760;
}

.map-page-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 20px 0 10px;
}

.map-page-header h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.map-page-header .meta {
  margin: 0;
}

.map-shell {
  display: block;
  margin: 0 0 18px;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.15);
}

.legend-camping { background: #1f6f56; }
.legend-stallplats { background: #c46a2d; }

.map-jump-links {
  display: none;
}

.map-filters {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.94);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 18px 50px rgba(54, 43, 24, 0.08);
}

.filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.filter-header h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: -0.04em;
}

.filter-summary {
  min-width: fit-content;
  border: 1px solid rgba(31, 93, 69, 0.16);
  border-radius: 999px;
  background: var(--moss);
  color: var(--forest-dark);
  margin: 0;
  padding: 7px 11px;
  font-size: 0.88rem;
  font-weight: 900;
}

.filter-empty-note,
.list-limit-note {
  border: 1px solid rgba(196, 106, 45, 0.24);
  border-radius: 16px;
  background: rgba(196, 106, 45, 0.08);
  color: var(--forest-dark);
  font-weight: 850;
}

.filter-empty-note {
  margin: -2px 0 18px;
  padding: 12px 14px;
}

.filter-empty-note[hidden] {
  display: none;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 14px;
  margin-bottom: 18px;
}

.filter-field {
  display: grid;
  gap: 7px;
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 10px 13px;
  font: inherit;
  font-weight: 700;
}

.filter-field input:focus,
.filter-field select:focus {
  outline: 3px solid rgba(31, 93, 69, 0.17);
  border-color: var(--forest);
}

.filter-groups {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 14px;
  margin-bottom: 18px;
}

.filter-groups fieldset {
  min-width: 0;
  border: 1px dashed rgba(31, 93, 69, 0.23);
  border-radius: 18px;
  margin: 0;
  padding: 14px;
}

.filter-groups legend {
  color: var(--forest-dark);
  font-weight: 950;
  padding: 0 6px;
}

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

.filter-chip {
  position: relative;
  cursor: pointer;
}

.filter-chip input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.filter-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(31, 93, 69, 0.16);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--forest-dark);
  padding: 7px 10px;
  font-size: 0.86rem;
  font-weight: 880;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter-chip small {
  color: var(--muted);
  font-weight: 850;
}

.filter-chip input:checked + span {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
  color: #fff8df;
}

.filter-chip input:checked + span small {
  color: rgba(255, 248, 223, 0.78);
}

.filter-chip input:focus-visible + span {
  outline: 3px solid rgba(31, 93, 69, 0.2);
  outline-offset: 2px;
}

.filter-chip.is-empty {
  cursor: not-allowed;
}

.filter-chip.is-empty input {
  cursor: not-allowed;
}

.filter-chip.is-empty span {
  opacity: 0.38;
  background: var(--surface);
}

.filter-field select option:disabled {
  color: var(--muted);
}

.map-tools {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 18px;
  margin: 0 0 40px;
  align-items: start;
}

.map {
  position: relative;
  z-index: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #d7e3df;
}

.map-list {
  max-height: 620px;
  overflow: auto;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.map-list h2 {
  margin-top: 0;
}

.map-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-list li {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.map-list span,
.map-list strong,
.map-list small,
.leaflet-popup-content small {
  color: var(--muted);
}

.map-list small {
  font-size: 0.82rem;
}

.map-list .empty-result {
  color: var(--muted);
  font-weight: 800;
}

.map-list .list-limit-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-bottom: 0;
}

.map-list strong {
  color: var(--forest-dark);
  font-size: 0.92rem;
}

.map-links {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.map-link {
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54, 43, 24, 0.12);
}

.map-link-google {
  background: #fff;
  color: #1a73e8;
  border-color: #dadce0;
}

.map-link-apple {
  background: #fff;
  color: #000;
  border-color: #d1d1d6;
}

.site-footer {
  padding: 44px 0;
  color: var(--muted);
}

.site-footer p {
  max-width: 760px;
}

.inspiration-hero,
.article-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(240, 180, 76, 0.22), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(61, 127, 143, 0.14), transparent 26%),
    rgba(255, 250, 240, 0.96);
}

.featured-article {
  margin-bottom: 18px;
}

.article-feature-card,
.article-card,
.article-cta {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(54, 43, 24, 0.08);
}

.article-feature-card,
.article-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.article-feature-card:hover,
.article-card:hover {
  border-color: var(--forest);
  box-shadow: 0 22px 60px rgba(31, 93, 69, 0.13);
  transform: translateY(-3px);
}

.article-feature-card {
  min-height: 330px;
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(223, 233, 215, 0.9)),
    var(--surface);
}

.article-feature-card h2,
.article-card h2,
.article-body h2,
.article-cta h2 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.article-feature-card h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.article-feature-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.article-card {
  min-height: 260px;
  justify-content: space-between;
  padding: 24px;
}

.article-card h2 {
  margin-top: auto;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article-card p {
  color: var(--muted);
}

.article-category {
  width: fit-content;
  border: 1px solid rgba(31, 93, 69, 0.16);
  border-radius: 999px;
  background: rgba(237, 243, 232, 0.86);
  color: var(--forest-dark);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
}

.article-meta-large {
  margin-top: 24px;
}

.article-page {
  margin-bottom: 48px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}

.article-body {
  display: grid;
  gap: 0;
  border: 1px solid rgba(184, 168, 135, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 16px 42px rgba(54, 43, 24, 0.08);
  overflow: hidden;
}

.article-body > section,
.article-cta,
.article-sidebar .content-block {
  padding: clamp(22px, 4vw, 36px);
}

.article-body > section {
  background: transparent;
}

.article-body h2,
.article-cta h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.article-body p {
  color: #384236;
  font-size: 1.06rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-cta {
  gap: 12px;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 180, 76, 0.22), transparent 26%),
    var(--forest-dark);
  color: #fff8df;
}

.article-cta .eyebrow,
.article-cta p {
  color: rgba(255, 248, 223, 0.78);
}

.article-cta .button {
  width: fit-content;
  background: #fff8df;
  color: var(--forest-dark);
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.related-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list a {
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.related-list a:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border-radius: 999px;
  background: var(--tag);
  color: var(--forest-dark);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  nav {
    justify-content: flex-start;
  }

  .header-action {
    width: fit-content;
  }

  .hero-redesign,
  .section-intro,
  .article-layout,
  .map-tools,
  .filter-grid,
  .filter-groups {
    grid-template-columns: 1fr;
  }

  .searchbar-select {
    display: none;
  }

  .stats-band,
  .service-lanes,
  .county-feature-grid,
  .service-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .county-quality-panel {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    width: min(1180px, calc(100% - 16px));
    margin-top: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 0.92rem;
  }

  .brand strong {
    overflow: hidden;
    font-size: 0.98rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  nav {
    justify-content: flex-end;
    gap: 4px;
  }

  nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0;
  }

  nav a::after {
    content: attr(data-short);
    font-size: 0.86rem;
  }

  .header-action {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .map-link {
    flex: 1 1 0;
  }

  .searchbar-row {
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .searchbar-btn {
    width: 100%;
    border-radius: 0 0 12px 12px;
    justify-content: center;
  }

  .map-card {
    min-height: 280px;
  }

  .data-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-feature-card,
  .article-card,
  .article-body > section,
  .article-cta,
  .article-sidebar .content-block {
    border-radius: 20px;
  }

  .stats-band,
  .service-lanes,
  .county-feature-grid,
  .county-card-stats,
  .service-stat-grid,
  .county-stats {
    grid-template-columns: 1fr;
  }

  .municipality-grid a {
    align-items: flex-start;
    flex-direction: column;
  }

  .nearby-search,
  .filter-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-page-header {
    margin-top: 14px;
  }

  .map {
    min-height: min(430px, 58vh);
    border-radius: 20px;
  }

  .map-legend {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
  }

  .map-jump-links {
    display: flex;
    gap: 8px;
    margin-top: 10px;
  }

  .map-jump-links a {
    flex: 1 1 0;
    min-height: 40px;
    border: 1px solid rgba(31, 93, 69, 0.16);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.9);
    color: var(--forest-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .map-filters,
  .nearby-search,
  .map-list {
    border-radius: 20px;
  }

  .map-filters {
    padding: 18px;
  }

  .filter-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .filter-header h2 {
    font-size: 1.45rem;
  }

  .filter-summary {
    border-radius: 18px;
    line-height: 1.35;
    white-space: normal;
  }

  .filter-grid,
  .filter-groups {
    gap: 12px;
    margin-bottom: 14px;
  }

  .filter-field input,
  .filter-field select {
    min-height: 46px;
    border-radius: 14px;
  }

  .filter-groups fieldset {
    padding: 12px;
    border-radius: 16px;
  }

  .chip-row {
    gap: 7px;
  }

  .filter-chip span {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 0.84rem;
  }

  .filter-empty-note {
    margin-bottom: 14px;
    font-size: 0.92rem;
  }

  .map-list {
    max-height: 560px;
    padding: 18px;
    overscroll-behavior: contain;
  }

  .map-list h2 {
    font-size: 1.25rem;
  }

  .map-list li {
    padding: 10px 0;
  }

  .leaflet-popup-content-wrapper {
    border-radius: 14px;
  }

  .leaflet-popup-content {
    width: min(260px, calc(100vw - 80px)) !important;
    margin: 13px 16px;
    line-height: 1.32;
  }

  .leaflet-popup-content a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    font-weight: 900;
  }

  .card-footer-row,
  .route-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .brand strong {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
