:root {
  --forest: #1a2c22;
  --forest-deep: #101c16;
  --moss: #3a5343;
  --fern: #6d8668;
  --sand: #f3ebe0;
  --cream: #faf6f0;
  --paper: #fffdf8;
  --charcoal: #1c1916;
  --ink: #2c2722;
  --muted: #5e574e;
  --line: #e2d6c6;
  --copper: #b4532a;
  --copper-dark: #8f3f1e;
  --chip: #efe6d8;
  --focus: #c46a3a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(28, 25, 22, 0.06);
  --header: 5.5rem;
  --wrap: 72rem;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--copper-dark); text-underline-offset: 0.18em; }
a:hover { color: var(--copper); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 560;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}
.wrap-narrow { width: min(calc(100% - 2rem), 46rem); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.muted { color: var(--muted); }
.small { font-size: 0.92rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { background: var(--copper-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--forest); border-color: #c8bba8; }
.btn-secondary:hover { background: #fff; color: var(--forest); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-light { background: #fff; color: var(--forest); }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.is-compact {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(28, 25, 22, 0.04);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--forest);
  line-height: 1.05;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.logo-sub { font-size: 0.78rem; color: var(--moss); letter-spacing: 0.04em; }

.nav-desktop { display: none; align-items: center; gap: 1.4rem; }
.nav-desktop a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.nav-desktop a[aria-current="page"],
.nav-desktop a:hover { color: var(--copper-dark); }

.header-cta { display: none; }
.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--forest);
}
.nav-mobile {
  display: none;
  padding: 0 1rem 1.2rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.nav-mobile.is-open { display: grid; gap: 0.4rem; }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0.2rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.15rem;
}

.hero {
  position: relative;
  min-height: min(86vh, 46rem);
  color: #f6f1e8;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 28, 22, 0.18) 0%, rgba(16, 28, 22, 0.72) 72%),
    linear-gradient(90deg, rgba(16, 28, 22, 0.45), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 8.5rem;
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: #eadfce; }

.finder {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  margin-bottom: 1rem;
}
.finder-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.15rem;
}
.finder-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}
.choice {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
}
.choice.is-on,
.choice:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.finder-row {
  display: grid;
  gap: 0.7rem;
}
.field { display: grid; gap: 0.3rem; }
.field span { font-size: 0.85rem; font-weight: 700; color: var(--moss); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--ink);
}

.section { padding: 4.2rem 0; }
.section-sand { background: var(--sand); }
.section-forest { background: var(--forest); color: #efe7db; }
.section-forest h2,
.section-forest h3 { color: #fff; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.section-head p { max-width: 34rem; color: var(--muted); }

.cards-3,
.cards-4 {
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 180ms ease, border-color 180ms ease;
}
a.card { text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-3px); border-color: #c9b79d; }
.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8cbb8;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1rem 1.05rem 1.15rem; display: grid; gap: 0.45rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chip {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--chip);
  color: var(--moss);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}
.card-city { color: var(--muted); font-size: 0.92rem; }
.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.4rem;
}
.card-actions .ext {
  font-size: 0.85rem;
  color: var(--muted);
}

.city-grid {
  display: grid;
  gap: 0.8rem;
}
.city-tile {
  position: relative;
  min-height: 11rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: end;
  padding: 1.1rem;
}
.city-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(16, 28, 22, 0.78));
}
.city-tile strong,
.city-tile span { position: relative; z-index: 1; }
.city-tile strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: block;
}

.steps { display: grid; gap: 1rem; }
.step {
  padding: 1.2rem 0;
  border-top: 1px solid #2d4436;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #d9b08a;
  display: block;
  margin-bottom: 0.3rem;
}

.cta-band {
  background:
    linear-gradient(160deg, rgba(16, 28, 22, 0.82), rgba(16, 28, 22, 0.55)),
    url("../img/vuur.jpg") center/cover;
  color: #fff;
  padding: 4.5rem 0;
}
.cta-band h2 { color: #fff; }

.breadcrumbs {
  padding: 1.2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.35rem; }
.breadcrumbs a { color: inherit; }

.page-hero { padding: 2.2rem 0 1.4rem; }
.page-hero.with-media {
  display: grid;
  gap: 1.4rem;
}
.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: 0.35rem; }

.filters {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.filter-bar {
  display: grid;
  gap: 0.7rem;
}
.results-meta { margin-bottom: 1rem; color: var(--muted); }

.detail-hero {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.caption { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
}
.feature-list li {
  list-style: none;
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font-weight: 650;
}
.facts { display: grid; gap: 0.7rem; }
.fact {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.fact dt { font-size: 0.82rem; color: var(--moss); font-weight: 700; }
.fact dd { margin: 0.15rem 0 0; }

.map-link {
  display: inline-block;
  margin-top: 0.6rem;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.faq details p { margin-top: 0.55rem; color: var(--muted); }

.form-step { display: none; }
.form-step.is-active { display: block; }
.progress {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.3rem;
}
.progress span {
  height: 4px;
  flex: 1;
  background: #ddd2c2;
  border-radius: 99px;
}
.progress span.done { background: var(--copper); }
.option-cards { display: grid; gap: 0.55rem; }
.option-cards label {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 650;
}
.option-cards input { accent-color: var(--copper); margin-right: 0.55rem; }
.option-cards label:has(input:checked) {
  border-color: var(--forest);
  background: #eef3ee;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.honeypot { position: absolute; left: -9999px; }
.error { color: #8a2212; font-size: 0.92rem; }
.success-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.3rem;
}

.budget-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}
.budget-total {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
}

.site-footer {
  background: var(--forest-deep);
  color: #d8cfc2;
  padding: 3.5rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #d8cfc2; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid #2a3b32;
  padding-top: 1rem;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}
.footer-legal a { color: #cfc3b2; }

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem;
  display: flex;
  gap: 0.6rem;
  z-index: 30;
}
.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 2rem;
}
.eeat-note {
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  background: var(--sand);
  border-left: 3px solid var(--moss);
  font-size: 0.92rem;
  color: var(--muted);
}
.eeat-note p { margin: 0; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem;
  pointer-events: none;
}
.cookie-banner-inner {
  pointer-events: auto;
  width: min(100%, 46rem);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.25rem 1.2rem;
  background: var(--forest-deep);
  color: #f3ebe0;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 28, 22, 0.35);
  border: 1px solid #2a3b32;
}
.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fffdf8;
  margin: 0 0 0.35rem;
}
.cookie-banner-inner p { margin: 0; }
.cookie-banner-inner a { color: #e6c7a8; }
.cookie-banner-inner a:hover { color: #fff; }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cookie-banner-actions .btn { flex: 1 1 8.5rem; }
.cookie-banner .btn-secondary {
  color: #f3ebe0;
  border-color: #6d8668;
}
.cookie-banner .btn-secondary:hover {
  background: #1a2c22;
  color: #fff;
}
body.has-cookie-banner .sticky-cta { display: none; }

@media (min-width: 700px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    width: min(calc(100% - 2rem), 54rem);
  }
  .cookie-banner-actions { flex-wrap: nowrap; }
}

.byline {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.byline a { color: inherit; text-decoration: underline; text-underline-offset: 0.15em; }
.direct-answer {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 40rem;
}
.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table th {
  font-family: inherit;
  font-weight: 700;
  background: var(--sand);
  white-space: nowrap;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table a { color: inherit; font-weight: 650; }

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

.empty {
  padding: 2rem 0;
  color: var(--muted);
}

@media (min-width: 700px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder-row { grid-template-columns: 1fr 1fr auto; align-items: end; }
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
  .step { border-top: 0; padding-top: 0; }
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-hero.with-media,
  .detail-hero { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .option-cards { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
}

@media (min-width: 980px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-toggle { display: none; }
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .city-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .filters { grid-template-columns: 16rem 1fr; }
  .filter-bar { position: sticky; top: 6.2rem; align-self: start; }
}

@media (min-width: 1200px) {
  .hero-content { padding: 8.5rem 0 9.5rem; }
}
