﻿:root {
  --ink: #1e2b28;
  --muted: #64736e;
  --line: #dfe7e3;
  --paper: #fbfbf8;
  --white: #ffffff;
  --mist: #eef3f0;
  --forest: #24473f;
  --forest-2: #37665b;
  --water: #d8e8e7;
  --clay: #b7653e;
  --clay-dark: #8f492d;
  --sand: #f4efe6;
  --focus: #0f6f98;
  --shadow: 0 16px 44px rgba(22, 38, 34, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--clay-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.container,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand-logo {
  width: clamp(132px, 15vw, 188px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand-subtitle {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.76rem;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  font: inherit;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}

.nav-links a[aria-current="page"] {
  color: var(--clay-dark);
}

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  font-weight: 760;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.primary:hover {
  background: var(--forest-2);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--forest);
  border-color: rgba(36, 71, 63, 0.22);
}

.button.ghost {
  color: var(--forest);
  background: transparent;
  border-color: rgba(36, 71, 63, 0.2);
}

.button.disabled,
.button[aria-disabled="true"] {
  background: var(--mist);
  border-color: var(--line);
  color: var(--muted);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 31, 28, 0.78), rgba(17, 31, 28, 0.4) 52%, rgba(17, 31, 28, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 92px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f0c18f;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 740px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: inherit;
  margin: 22px 0 0;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--mist);
}

.section.water {
  background: var(--water);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(22, 38, 34, 0.03);
}

.property-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.property-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: var(--image-position, center center);
  background: var(--mist);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.meta,
.specs,
.tag-list,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.specs span,
.tag,
.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 30px;
  padding: 0.28rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 720;
  color: var(--ink);
}

.status.external_booking {
  background: #f6eee8;
  border-color: #ead1c1;
  color: #74391f;
}

.status.direct_via_huurkalender {
  background: #e7f2ee;
  border-color: #bfdbd1;
  color: #184d40;
}

.status.information_only {
  background: #eef1f5;
  border-color: #d5dce4;
  color: #334155;
}

.notice {
  border-left: 4px solid var(--clay);
  background: #fff7ef;
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #5c3825;
}

.notice.green {
  border-left-color: var(--forest);
  background: #edf6f2;
  color: #21483f;
}

.notice.neutral {
  border-left-color: #78909c;
  background: #f3f6f7;
  color: #35474e;
}

.page-hero {
  padding: 82px 0 42px;
  background: linear-gradient(180deg, var(--mist), var(--paper));
}

.page-hero .lead {
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid #cbd8d2;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
  padding-top: 42px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.34fr;
  gap: 12px;
}

.gallery button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center center);
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}

.summary-panel,
.booking-panel,
.form-panel {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.summary-item {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 12px;
}

.summary-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 34px;
  align-items: start;
}

.prose > * + * {
  margin-top: 18px;
}

.prose ul {
  padding-left: 1.2rem;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.route-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.destination {
  min-height: 210px;
  padding: 26px;
  display: grid;
  align-content: end;
  background: linear-gradient(135deg, rgba(36, 71, 63, 0.94), rgba(55, 102, 91, 0.86));
  color: var(--white);
}

.destination p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.legal-placeholder {
  border: 1px dashed #c9b09d;
  background: #fff8f1;
  border-radius: var(--radius);
  padding: 22px;
}

.site-footer {
  background: #162521;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.site-footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 16, 0.82);
  padding: 28px;
}

.lightbox[open] {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 78px 0 auto;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .section-head,
  .property-hero,
  .content-layout,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid.cards,
  .grid.two,
  .route-steps,
  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 128px;
    max-height: 48px;
  }

  .brand-subtitle {
    display: none;
  }

  body {
    font-size: 16px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .grid.cards,
  .grid.two,
  .route-steps,
  .filters,
  .summary-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.property-card a[aria-label] {
  display: block;
  background: var(--mist);
}

.property-card[data-property-card] {
  --image-position: center 52%;
}

.gallery {
  --image-position: center 52%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
}
/* Premium refresh - 2026-07-03 */
:root {
  --ink: #222520;
  --muted: #697069;
  --line: #ddd4c8;
  --paper: #f6f1e8;
  --white: #fffdf8;
  --mist: #ebe5da;
  --forest: #182f2a;
  --forest-2: #2f5147;
  --water: #dbe8e2;
  --clay: #a8643f;
  --clay-dark: #7a432d;
  --sand: #eee2d1;
  --bronze: #b78456;
  --focus: #835332;
  --shadow: 0 18px 50px rgba(30, 37, 32, 0.14);
  --soft-shadow: 0 8px 28px rgba(30, 37, 32, 0.08);
  --radius: 6px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--ink);
}

h1 { font-size: 4.2rem; max-width: 780px; }
h2 { font-size: 2.7rem; }
h3 { font-size: 1.22rem; }

.site-header {
  background: rgba(246, 241, 232, 0.88);
  border-bottom: 1px solid rgba(80, 70, 58, 0.16);
  box-shadow: 0 8px 24px rgba(34, 37, 32, 0.05);
}

.nav-wrap { min-height: 86px; }
.brand-logo { width: 178px; max-height: 62px; filter: saturate(0.92); }
.brand-subtitle { color: #5d6159; }
.nav-links { gap: 24px; }
.nav-links a { font-size: 0.92rem; letter-spacing: 0.01em; }
.nav-links a:not(.button) { position: relative; }
.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav-links a:not(.button):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.button,
button.button {
  border-radius: 3px;
  min-height: 48px;
  padding: 0.82rem 1.16rem;
  letter-spacing: 0.01em;
  box-shadow: none;
}
.button.primary {
  background: var(--clay-dark);
  color: var(--white);
}
.button.primary:hover { background: #653723; }
.button.secondary {
  background: rgba(255,253,248,0.88);
  border-color: rgba(122, 67, 45, 0.28);
  color: var(--ink);
}
.text-link {
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-premium {
  min-height: 760px;
  align-items: center;
  background: var(--forest);
}
.hero-premium::after {
  background: linear-gradient(90deg, rgba(24,47,42,0.74) 0%, rgba(24,47,42,0.48) 42%, rgba(24,47,42,0.08) 78%);
}
.hero-premium img { object-position: center 54%; }
.hero-content { padding: 160px 0 118px; }
.hero-content h1 { color: var(--white); line-height: 1.02; }
.hero .lead { max-width: 620px; color: rgba(255,255,255,0.86); }
.eyebrow {
  color: var(--clay);
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.hero .eyebrow { color: #e0b37c; }

.section { padding: 104px 0; }
.section.soft { background: #eee7dc; }
.section.water { background: #dce8e1; }
.section-head { gap: 70px; margin-bottom: 42px; }
.section-head p { font-size: 1.02rem; }

.editorial-intro { background: var(--white); }
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
}
.editorial-grid p { color: var(--muted); max-width: 660px; }
.editorial-grid figure { margin: 0; position: relative; }
.editorial-grid figure::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(183,132,86,0.45);
  z-index: 0;
}
.editorial-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.editorial-grid figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}
.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.signature-row span {
  border-top: 1px solid var(--bronze);
  padding-top: 8px;
  color: var(--forest);
  font-weight: 750;
  min-width: 110px;
}

.featured-section { background: linear-gradient(180deg, #f6f1e8 0%, #eee4d6 100%); }
.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: 24px;
}
.feature-stack { display: grid; gap: 24px; }
.feature-large .property-card { min-height: 100%; }
.feature-large .property-media img { aspect-ratio: 16 / 10; }
.feature-large .card-body { padding: 30px; }

.card,
.summary-panel,
.booking-panel,
.form-panel {
  border-color: rgba(100, 86, 68, 0.18);
  background: rgba(255,253,248,0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.property-card { transition: transform 180ms ease, box-shadow 180ms ease; }
.property-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.property-media { display: block; overflow: hidden; background: var(--mist); }
.property-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  transition: transform 360ms ease;
}
.property-card:hover img { transform: scale(1.035); }
.card-body { gap: 14px; padding: 24px; }
.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  margin: 0;
}
.property-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-weight: 720;
}
.status {
  border-radius: 999px;
  background: transparent;
  border-color: rgba(122,67,45,0.28);
  color: var(--clay-dark);
}
.status.direct_via_huurkalender,
.status.external_booking,
.status.information_only {
  background: rgba(183,132,86,0.13);
  border-color: rgba(183,132,86,0.25);
  color: #594031;
}
.specs span,
.tag {
  background: #f7f0e6;
  border-color: rgba(100,86,68,0.16);
  color: #4d5048;
}

.region-stories { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.story-card {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid rgba(183,132,86,0.45);
}
.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-card p { color: var(--muted); }

.booking-routes { background: #dfe9e2; }
.route-steps { gap: 22px; }
.step {
  background: rgba(255,253,248,0.76);
  border-color: rgba(47,81,71,0.18);
  box-shadow: none;
}
.step::before {
  width: 42px;
  height: 2px;
  border-radius: 0;
  background: var(--bronze);
  color: transparent;
}

.page-hero {
  padding: 104px 0 58px;
  background: linear-gradient(180deg, #ece3d6, var(--paper));
}
.page-hero h1 { max-width: 880px; }
.property-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.58fr);
  gap: 42px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery button { min-height: 100%; }
.gallery button:first-child { grid-column: span 4; grid-row: span 2; }
.gallery button:not(:first-child) { grid-column: span 2; }
.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--soft-shadow);
}
.summary-list { gap: 10px; }
.summary-item { background: #f7f0e6; border-color: rgba(100,86,68,0.14); }
.content-layout { gap: 48px; }
.prose { font-size: 1.03rem; }
.prose h2 { margin-top: 34px; font-size: 2rem; }
.sidebar { top: 116px; }
.booking-panel h2, .summary-panel h2 { font-size: 1.45rem; }

.filters {
  background: rgba(255,253,248,0.86);
  border-color: rgba(100,86,68,0.18);
  box-shadow: var(--soft-shadow);
}
select, input, textarea {
  border-color: rgba(100,86,68,0.24);
  background: #fffdf8;
}

.site-footer {
  background: #142824;
  padding: 64px 0 28px;
}
.footer-premium {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  align-items: start;
}
.footer-brand img {
  width: 190px;
  background: rgba(255,255,255,0.92);
  padding: 8px 12px;
  margin-bottom: 20px;
}
.footer-column { display: grid; gap: 9px; }
.footer-column h2 {
  color: #f4eadc;
  font-family: "Segoe UI", Inter, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.footer-column p, .footer-brand p { color: rgba(255,255,255,0.72); margin: 0; }
.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}
.footer-bottom a { color: rgba(255,255,255,0.78); }

@media (max-width: 980px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.25rem; }
  .editorial-grid,
  .featured-layout,
  .story-grid,
  .footer-premium { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 0.85fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery button:first-child,
  .gallery button:not(:first-child) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.9rem; }
  .hero-premium { min-height: 680px; }
  .hero-content { padding: 120px 0 76px; }
  .section { padding: 68px 0; }
  .button { width: auto; }
  .hero-actions .button { width: 100%; }
  .nav-links .button { width: 100%; }
  .brand-logo { width: 126px; }
  .editorial-grid figure::before { display: none; }
  .story-card { grid-template-columns: 1fr; padding: 0 0 22px; }
  .story-card img { aspect-ratio: 16 / 10; }
  .property-card img { aspect-ratio: 4 / 3; }
  .footer-bottom { width: min(100% - 28px, 1160px); }
}

/* Refined typography and page polish - 2026-07-03 */
:root {
  --font-sans: "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Aptos Display", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --radius: 7px;
  --shadow: 0 18px 48px rgba(24, 35, 31, 0.13);
  --soft-shadow: 0 12px 34px rgba(42, 54, 49, 0.09);
}

html,
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand,
.button,
.nav-links a,
.card-kicker,
.eyebrow,
.footer-column h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
  line-height: 1.05;
  color: #182620;
}

.hero h1,
.hero-premium h1 {
  color: #fffdf8;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
  font-weight: 760;
}

.page-hero h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  max-width: 960px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

h3 {
  font-size: 1.18rem;
}

.lead,
.page-hero .lead {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.62;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  color: var(--bronze);
}

.site-header {
  background: rgba(250, 247, 241, 0.91);
  border-bottom-color: rgba(72, 83, 76, 0.13);
}

.nav-wrap {
  min-height: 78px;
}

.nav-links a:not(.button) {
  font-size: 0.91rem;
  font-weight: 720;
  color: #24352f;
}

.button,
button.button {
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 760;
  box-shadow: none;
}

.button.primary {
  background: #1f433a;
}

.button.primary:hover {
  background: #17342d;
}

.button.secondary,
.button.ghost {
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(77, 90, 82, 0.2);
}

.hero-premium::after {
  background: linear-gradient(90deg, rgba(18, 31, 27, 0.72), rgba(18, 31, 27, 0.36) 54%, rgba(18, 31, 27, 0.08));
}

.hero-content {
  padding-bottom: 82px;
}

.section {
  padding: 82px 0;
}

.page-hero {
  padding: 88px 0 48px;
  background: linear-gradient(180deg, #eee5d8 0%, #faf7f1 100%);
}

.breadcrumbs {
  font-size: 0.86rem;
  color: #6c756e;
}

.card,
.summary-panel,
.booking-panel,
.form-panel {
  border: 1px solid rgba(83, 78, 68, 0.14);
  background: rgba(255, 254, 250, 0.94);
  border-radius: 7px;
  box-shadow: var(--soft-shadow);
}

.property-card {
  overflow: hidden;
}

.property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 47, 42, 0.14);
}

.card-body {
  padding: 22px;
  gap: 12px;
}

.card-kicker {
  align-items: center;
  font-size: 0.71rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  color: #6b726b;
}

.card h3 a {
  color: #192721;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--clay-dark);
}

.card-summary,
.meta,
.prose,
.prose p,
.story-card p {
  color: #5d6962;
}

.specs {
  gap: 8px;
}

.specs span,
.tag,
.status,
.summary-item {
  border-radius: 6px;
}

.specs span,
.tag {
  font-size: 0.84rem;
  background: #f5eddf;
}

.property-note {
  font-size: 0.94rem;
  font-weight: 680;
}

.property-hero {
  gap: 36px;
  align-items: start;
}

.gallery {
  gap: 10px;
}

.gallery button,
.gallery img {
  border-radius: 7px;
}

.gallery button {
  background: #e9eee9;
  border: 0;
  box-shadow: var(--soft-shadow);
}

.gallery img {
  box-shadow: none;
}

.summary-panel,
.booking-panel {
  padding: 26px;
}

.summary-panel h2,
.booking-panel h2 {
  font-size: 1.24rem;
  margin-bottom: 14px;
}

.summary-list {
  gap: 9px;
}

.summary-item {
  padding: 12px 13px;
  background: #f6efe4;
}

.summary-item strong {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6c716b;
}

.content-layout {
  gap: 44px;
}

.prose {
  font-size: 1rem;
  line-height: 1.72;
}

.prose h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li + li {
  margin-top: 0.34rem;
}

.sidebar {
  top: 98px;
}

.site-footer {
  background: #142823;
}

.footer-column h2 {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

@media (max-width: 980px) {
  .page-hero h1 { font-size: 3rem; }
  .property-hero { gap: 24px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .hero-premium { min-height: 560px; }
  .hero h1,
  .hero-premium h1 { font-size: 2.72rem; }
  .page-hero { padding: 58px 0 34px; }
  .page-hero h1 { font-size: 2.18rem; }
  .section { padding: 56px 0; }
  .card-body,
  .summary-panel,
  .booking-panel { padding: 20px; }
}

/* Review improvements - clearer visitor flow */
.route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.route-cards article {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(91, 86, 72, 0.15);
  border-left: 3px solid var(--bronze);
  border-radius: 7px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: var(--soft-shadow);
}

.route-cards strong {
  color: #182620;
  font-family: var(--font-display);
  font-size: 1rem;
}

.route-cards span {
  color: #5d6962;
  font-size: 0.93rem;
  line-height: 1.45;
}

.listing-group {
  padding-top: 34px;
  margin-top: 30px;
  border-top: 1px solid rgba(91, 86, 72, 0.16);
}

.section-head.compact {
  margin-bottom: 22px;
  align-items: end;
}

.section-head.compact h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.section-head.compact > p {
  max-width: 420px;
  color: #5d6962;
}

.notice.friendly {
  border-left: 3px solid var(--bronze);
  background: rgba(255, 254, 250, 0.88);
}

.property-card .text-link {
  align-self: start;
  font-weight: 760;
}

@media (max-width: 860px) {
  .route-cards {
    grid-template-columns: 1fr;
  }

  .section-head.compact {
    align-items: start;
  }
}

/* Typography and compact cards - requested update */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

body,
input,
select,
textarea,
button {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.hero h1,
.hero-premium h1,
.page-hero h1,
.footer-column h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.brand,
.button,
.nav-links a,
.card-kicker,
.eyebrow {
  font-family: var(--font-sans);
}

.compact-property-card .property-media img,
.compact-property-card .property-media > img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.compact-property-card .card-body {
  padding: 18px 18px 20px;
  gap: 10px;
}

.compact-property-card .card-kicker {
  justify-content: flex-start;
  color: var(--clay-dark);
  font-size: 0.72rem;
}

.compact-property-card h3 {
  font-size: 1.45rem;
  line-height: 1.06;
}

.compact-property-card .meta {
  margin-top: 6px;
  font-size: 0.93rem;
  line-height: 1.45;
}

.compact-card-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
}

.guest-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(100, 86, 68, 0.16);
  border-radius: 999px;
  background: #f5eddf;
  color: #313c36;
  font-size: 0.86rem;
  font-weight: 700;
}

.inline-note {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0.86rem;
  color: #5d6962;
}

.subproperty-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(91, 86, 72, 0.14);
}

.subproperty-links .text-link,
.compact-property-card > .card-body > .text-link,
.compact-property-card .button {
  margin-top: 4px;
}

.arcen-group-card .property-media {
  display: block;
}

.arcen-group-card h3 {
  font-size: 1.65rem;
}

@media (max-width: 640px) {
  .compact-property-card h3 {
    font-size: 1.34rem;
  }

  .subproperty-links {
    display: grid;
    gap: 8px;
  }
}

/* Miva visual refinement 2026-07-06 */
:root {
  --surface: #fffdf8;
  --surface-warm: #f7f0e6;
  --surface-soft: #eef5f1;
  --line-soft: rgba(55, 75, 67, 0.13);
  --shadow-soft: 0 12px 34px rgba(31, 47, 41, 0.09);
  --shadow-lift: 0 22px 52px rgba(31, 47, 41, 0.16);
}

body {
  background:
    linear-gradient(180deg, rgba(247, 240, 230, 0.65) 0, rgba(251, 251, 248, 0) 360px),
    var(--paper);
}

.site-header {
  border-bottom-color: rgba(36, 71, 63, 0.12);
  box-shadow: 0 10px 28px rgba(28, 43, 38, 0.05);
}

.nav-links a:not(.button),
.text-link {
  position: relative;
  text-decoration: none;
}

.nav-links a:not(.button)::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.16em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.62;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button)[aria-current="page"]::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.button,
button.button {
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(30, 49, 43, 0.07);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(30, 49, 43, 0.12);
}

.button.primary {
  background: #254c42;
  border-color: rgba(255, 255, 255, 0.08);
}

.button.primary:hover {
  background: #2f5f54;
}

.button.secondary,
.button.ghost {
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(36, 71, 63, 0.18);
}

.hero-premium {
  min-height: clamp(520px, 72vh, 720px);
}

.hero-premium::after {
  background:
    linear-gradient(90deg, rgba(20, 34, 30, 0.66) 0%, rgba(20, 34, 30, 0.42) 42%, rgba(20, 34, 30, 0.16) 78%),
    linear-gradient(0deg, rgba(20, 34, 30, 0.25) 0%, rgba(20, 34, 30, 0) 42%);
}

.hero-content {
  max-width: 760px;
  padding: clamp(112px, 16vh, 148px) 0 clamp(72px, 12vh, 104px);
}

.hero-premium h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  line-height: 0.98;
  font-weight: 700;
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 540px;
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 26px;
  gap: 12px;
}

.section {
  padding-block: clamp(58px, 7.5vw, 96px);
}

.section.soft,
.listing-group:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(238, 245, 241, 0.54), rgba(247, 240, 230, 0.34));
}

.page-hero {
  background: linear-gradient(145deg, rgba(238, 245, 241, 0.86), rgba(247, 240, 230, 0.72));
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1,
.section-head h2 {
  text-wrap: balance;
}

.section-head {
  align-items: end;
}

.section-head p,
.meta {
  color: #68766f;
}

.card,
.property-card,
.route-cards article,
.summary-panel,
.booking-panel,
.filter-shell {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.property-card.compact-property-card {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.property-card.compact-property-card:hover,
.property-card.compact-property-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(36, 71, 63, 0.2);
  box-shadow: var(--shadow-lift);
}

.compact-property-card .property-media {
  overflow: hidden;
  background: var(--surface-soft);
}

.compact-property-card .property-media img,
.compact-property-card .property-media > img {
  aspect-ratio: 16 / 10;
  transform: scale(1.001);
  transition: transform 500ms ease, filter 500ms ease;
}

.compact-property-card:hover .property-media img,
.compact-property-card:focus-within .property-media img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.compact-property-card .card-body {
  min-height: 214px;
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
}

.compact-property-card .card-kicker {
  color: #8b634b;
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.compact-property-card h3 {
  margin-top: 1px;
  color: var(--ink);
  font-size: clamp(1.36rem, 2vw, 1.58rem);
  line-height: 1.04;
}

.compact-property-card h3 a {
  color: inherit;
  text-decoration: none;
}

.compact-property-card .meta {
  max-width: 31ch;
  color: #6a746e;
  font-size: 0.9rem;
}

.compact-card-bottom {
  margin-top: auto;
  padding-top: 9px;
}

.guest-pill {
  min-height: 31px;
  border-color: rgba(143, 73, 45, 0.18);
  background: #f7eddf;
  color: #344139;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.compact-property-card > .card-body > .text-link {
  align-self: flex-start;
  margin-top: 9px;
  font-weight: 750;
}

.filter-shell {
  margin: 22px 0 42px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.filter-shell summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 20px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 1px solid var(--line-soft);
}

.filter-shell summary::-webkit-details-marker {
  display: none;
}

.filter-shell summary::after {
  content: "+";
  float: right;
  color: #8b634b;
  font-weight: 800;
}

.filter-shell[open] summary::after {
  content: "-";
}

.filter-shell .filters {
  margin: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 18px;
}

.filters label {
  color: #4f5f58;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filters select,
.filters input {
  margin-top: 6px;
  border-color: rgba(36, 71, 63, 0.16);
  background: #fffefb;
  color: var(--ink);
}

.route-cards {
  margin-bottom: 22px;
}

.route-cards article {
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-cards article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.gallery {
  gap: 12px;
}

.gallery button,
.gallery img {
  border-radius: 8px;
}

.gallery button {
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

@media (max-width: 920px) {
  .hero-premium {
    min-height: 580px;
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 70px;
  }

  .section-head {
    align-items: start;
    gap: 18px;
  }

  .filter-shell:not([open]) {
    margin-bottom: 28px;
  }

  .filter-shell .filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand-logo {
    width: 128px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-premium {
    min-height: 510px;
  }

  .hero-premium h1 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .section {
    padding-block: 44px;
  }

  .compact-property-card .card-body {
    min-height: 0;
    padding: 18px;
  }

  .compact-property-card .property-media img,
  .compact-property-card .property-media > img {
    aspect-ratio: 4 / 3;
  }

  .filter-shell {
    margin: 16px 0 30px;
  }

  .filter-shell .filters {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .filters .button {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .property-card.compact-property-card,
  .compact-property-card .property-media img,
  .button,
  .text-link::after,
  .nav-links a:not(.button)::after {
    transition: none;
  }
}
/* Miva header simplification 2026-07-06 */
.site-header {
  background: rgba(252, 249, 243, 0.9);
  border-bottom: 1px solid rgba(36, 71, 63, 0.1);
  box-shadow: 0 8px 24px rgba(28, 43, 38, 0.045);
}

.nav-wrap {
  min-height: 72px;
}

.brand {
  gap: 0;
}

.brand-logo {
  width: clamp(124px, 12vw, 158px);
  max-height: 52px;
  filter: saturate(0.96) contrast(1.01);
}

.brand-subtitle {
  display: none;
}

.nav-links {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(36, 71, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 20px rgba(30, 49, 43, 0.045);
}

.nav-links a:not(.button) {
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  color: #2b4039;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1;
}

.nav-links a:not(.button)::after {
  display: none;
}

.nav-links a:not(.button):hover {
  color: var(--forest);
  background: rgba(244, 239, 230, 0.72);
}

.nav-links a[aria-current="page"] {
  color: var(--forest);
  background: #f2eadc;
}

.nav-links .button {
  display: none;
}

.nav-toggle {
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(36, 71, 63, 0.14);
}

@media (max-width: 920px) {
  .nav-wrap {
    min-height: 68px;
  }

  .brand-logo {
    width: 126px;
    max-height: 46px;
  }

  .nav-links {
    inset: 68px 14px auto;
    gap: 4px;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(252, 249, 243, 0.98);
    box-shadow: 0 18px 44px rgba(28, 43, 38, 0.14);
  }

  .nav-links a:not(.button) {
    padding: 0.86rem 0.95rem;
    border-radius: 7px;
    font-size: 0.96rem;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(252, 249, 243, 0.96);
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand-logo {
    width: 116px;
  }

  .nav-links {
    inset: 64px 14px auto;
  }
}
/* Miva woningen listing balance 2026-07-06 */
.page-hero:has(+ .listings-section) {
  padding-bottom: 24px;
}

.listings-section {
  padding-top: 34px;
}

.listings-section .filter-shell {
  margin-top: 0;
  margin-bottom: 18px;
}

.listings-section [data-result-count] {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.listings-section .listing-group {
  margin-top: 14px;
  padding-top: 22px;
}

.listing-cards {
  grid-auto-rows: 1fr;
}

.listing-cards .compact-property-card {
  height: 100%;
}

.section-head.compact > p {
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .page-hero:has(+ .listings-section) {
    padding-bottom: 18px;
  }

  .listings-section {
    padding-top: 24px;
  }

  .listings-section .filter-shell {
    margin-bottom: 14px;
  }

  .listings-section .listing-group {
    margin-top: 12px;
    padding-top: 18px;
  }

  .listing-cards {
    grid-template-columns: 1fr;
  }
}
/* Miva property detail refresh 2026-07-06 */
.property-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.54fr);
  gap: 28px;
  padding-top: 22px;
}

.property-slideshow {
  display: grid;
  gap: 10px;
}

.slideshow-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e9eee9;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.slide.is-active {
  display: block;
}

.slide img,
.slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.slideshow-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #536159;
  font-size: 0.9rem;
}

.slide-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(36, 71, 63, 0.16);
  background: #fffdf8;
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.slide-nav:hover {
  background: #f2eadc;
}

.slideshow-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 8px;
}

.slide-thumb {
  height: 68px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  background: #e8ece8;
  cursor: pointer;
  opacity: 0.72;
}

.slide-thumb.is-active {
  border-color: #b98257;
  opacity: 1;
}

.property-hero .summary-panel {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 42, 36, 0.08);
}

.property-hero .summary-panel .status {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 0.68rem;
  line-height: 1;
  vertical-align: top;
}

.property-hero .summary-panel h2 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.property-hero .summary-list {
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 14px;
}

.property-hero .summary-item {
  display: grid;
  grid-template-columns: minmax(86px, 0.78fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 9px 10px;
  border-radius: 7px;
}

.property-hero .summary-item strong {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.property-hero .summary-item,
.property-hero .tag {
  font-size: 0.88rem;
}

.property-hero .tag-list {
  gap: 7px;
}

.map-section {
  padding-top: 0;
  padding-bottom: 52px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(24, 42, 36, 0.07);
}

.map-card h2 {
  font-size: clamp(1.42rem, 2.2vw, 2rem);
}

.map-card p:last-child {
  margin: 10px 0 0;
  color: #536159;
  font-size: 0.95rem;
}

.map-card iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 7px;
  filter: saturate(0.92) contrast(0.98);
}

.property-content-section {
  padding-top: 58px;
}

@media (max-width: 920px) {
  .property-hero,
  .map-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .property-hero {
    padding-top: 10px;
  }

  .slideshow-frame {
    aspect-ratio: 4 / 3;
  }

  .slideshow-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .slide-thumb {
    height: 54px;
  }

  .property-hero .summary-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
/* Miva property side map 2026-07-06 */
.property-side {
  display: grid;
  gap: 16px;
  align-self: start;
}

.property-side .map-card {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 42, 36, 0.07);
}

.property-side .map-card .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.property-side .map-card h2 {
  font-size: 1.1rem;
}

.property-side .map-card p:last-child {
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.property-side .map-card iframe {
  min-height: 210px;
  aspect-ratio: 4 / 3;
}

@media (max-width: 920px) {
  .property-side .map-card iframe {
    min-height: 240px;
  }
}
/* Miva property content alignment 2026-07-06 */
.property-content-section {
  padding-top: 30px;
}

.property-content-section .content-layout {
  align-items: start;
}

.property-content-section .prose h2:first-child {
  margin-top: 0;
}

.property-content-section .sidebar {
  top: 96px;
}

.property-content-section .booking-panel {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 42, 36, 0.08);
}

.property-content-section .booking-panel .status {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 0.68rem;
  line-height: 1;
  vertical-align: top;
}

.property-content-section .booking-panel h2 {
  font-size: 1.08rem;
  margin: 0 0 10px;
}

.property-content-section .booking-panel p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.property-content-section .booking-panel p + p,
.property-content-section .booking-panel p + .button,
.property-content-section .booking-panel .button + p {
  margin-top: 10px;
}

.property-content-section .booking-panel .button {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.property-content-section .booking-panel .notice {
  margin-top: 12px;
  padding: 13px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .property-content-section {
    padding-top: 24px;
  }
}
/* Miva property text under slideshow 2026-07-06 */
.property-main {
  min-width: 0;
  display: grid;
  gap: 24px;
}

.property-prose {
  max-width: 820px;
  padding-top: 2px;
}

.property-prose h2:first-child {
  margin-top: 0;
}

.property-prose h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.property-side .booking-panel {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 42, 36, 0.08);
}

.property-side .booking-panel .status {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 0.68rem;
  line-height: 1;
  vertical-align: top;
}

.property-side .booking-panel h2 {
  font-size: 1.08rem;
  margin: 0 0 10px;
}

.property-side .booking-panel p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.property-side .booking-panel p + p,
.property-side .booking-panel p + .button,
.property-side .booking-panel .button + p {
  margin-top: 10px;
}

.property-side .booking-panel .button {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.property-side .booking-panel .notice {
  margin-top: 12px;
  padding: 13px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .property-main {
    gap: 20px;
  }
}
/* Miva slideshow overlay controls 2026-07-06 */
.property-slideshow {
  gap: 0;
}

.slideshow-frame {
  isolation: isolate;
}

.slideshow-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: 38px max-content 38px;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slideshow-controls span {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #20352f;
  box-shadow: 0 8px 22px rgba(22, 38, 34, 0.16);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
}

.slideshow-controls .slide-nav {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 22px rgba(22, 38, 34, 0.16);
}

.slideshow-thumbs,
.slide-thumb {
  display: none;
}

@media (max-width: 640px) {
  .slideshow-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 34px max-content 34px;
  }

  .slideshow-controls .slide-nav {
    width: 34px;
    height: 34px;
  }
}
/* Gewoon Ariena footer credit 2026-07-06 */
.footer-credit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.footer-credit img {
  width: 132px;
  max-height: 34px;
  object-fit: contain;
  opacity: 0.92;
}

@media (max-width: 720px) {
  .footer-credit {
    width: 100%;
    margin-left: 0;
    padding-top: 4px;
  }
}
/* Miva Huurkalender embed 2026-07-06 */
.huurkalender-section {
  padding-top: 0;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.huurkalender-card {
  background: #fffdf8;
  border: 1px solid rgba(32, 47, 41, 0.12);
  border-radius: 8px;
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: 0 18px 46px rgba(24, 42, 36, 0.08);
}

.huurkalender-card .section-head {
  margin-bottom: 14px;
}

.huurkalender-card .section-head .eyebrow {
  margin-bottom: 6px;
}

.huurkalender-card .section-head h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.huurkalender-card .section-head p:last-child {
  max-width: 380px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.huurkalender-card .huurkalender-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.huurkalender-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.huurkalender-card-calendar iframe {
  min-height: 520px;
}

.huurkalender-card-booking iframe {
  min-height: 760px;
}

@media (max-width: 760px) {
  .huurkalender-card-calendar iframe {
    min-height: 560px;
  }

  .huurkalender-card-booking iframe {
    min-height: 860px;
  }
}


/* Property content and accessible gallery refinements 2026-07-09 */
.property-policy {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(169, 102, 72, 0.07);
}

body.lightbox-open { overflow: hidden; }

.lightbox figure {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  max-width: min(1120px, calc(100vw - 150px));
}

.lightbox figcaption {
  color: #fff;
  font: 600 0.84rem/1.2 Inter, sans-serif;
}

.lightbox .lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
}

.lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox .lightbox-prev { left: 22px; }
.lightbox .lightbox-next { right: 22px; }
.legal-placeholder .status { margin-bottom: 12px; }

@media (max-width: 640px) {
  .lightbox figure { max-width: calc(100vw - 32px); }
  .lightbox .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox .lightbox-prev { left: calc(50% - 58px); }
  .lightbox .lightbox-next { right: calc(50% - 58px); }
}
/* Miva visual finetune 2026-07-13 */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --surface: rgba(255, 253, 248, 0.94);
  --surface-soft: #f1eadf;
  --line-soft: rgba(36, 71, 63, 0.13);
  --accent: #a8643f;
  --shadow-soft: 0 14px 34px rgba(28, 43, 38, 0.08);
  --shadow-lift: 0 22px 52px rgba(28, 43, 38, 0.14);
}

body {
  font-family: var(--font-sans);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.38), rgba(246, 241, 232, 0.12) 42%),
    var(--paper);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.hero-premium h1,
.page-hero h1,
.footer-column h2,
.property-card h3,
.detail-card h2,
.summary-panel h2,
.booking-panel h2,
.map-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.site-header {
  background: rgba(252, 249, 243, 0.88);
  backdrop-filter: blur(18px) saturate(1.08);
}

.nav-links a:not(.button) {
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:not(.button):hover {
  transform: translateY(-1px);
}

.button,
button.button {
  border-radius: 999px;
  min-height: 44px;
  padding: 0.72rem 1.08rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(28, 43, 38, 0.11);
}

.button.primary {
  background: #19342e;
}

.button.primary:hover {
  background: #274f45;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(36, 71, 63, 0.2);
  color: #1f352f;
}

.hero-premium {
  min-height: clamp(500px, 68vh, 690px);
}

.hero-premium::after {
  background:
    linear-gradient(90deg, rgba(20, 34, 30, 0.72) 0%, rgba(20, 34, 30, 0.44) 48%, rgba(20, 34, 30, 0.13) 82%),
    linear-gradient(0deg, rgba(20, 34, 30, 0.26) 0%, rgba(20, 34, 30, 0) 45%);
}

.hero-content {
  padding-top: clamp(118px, 14vw, 168px);
  padding-bottom: clamp(72px, 10vw, 112px);
}

.hero-premium h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 0.99;
}

.page-hero {
  padding: clamp(54px, 7vw, 84px) 0 clamp(30px, 4.5vw, 52px);
  background:
    linear-gradient(135deg, rgba(238, 245, 241, 0.82), rgba(247, 240, 230, 0.72)),
    var(--paper);
}

.page-hero .lead {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section {
  padding-block: clamp(54px, 7vw, 90px);
}

.grid.cards,
.grid.two,
.listing-cards {
  gap: clamp(18px, 2.4vw, 28px);
}

.card,
.property-card,
.summary-panel,
.booking-panel,
.form-panel,
.filter-shell,
.huurkalender-card,
.detail-card,
.map-card {
  border-color: var(--line-soft);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.property-card.compact-property-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

.property-card.compact-property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.property-card.compact-property-card:hover,
.property-card.compact-property-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(36, 71, 63, 0.2);
}

.compact-property-card .property-media img,
.compact-property-card .property-media > img {
  aspect-ratio: 16 / 11;
  object-position: var(--image-position, center center);
}

.compact-property-card .card-body {
  min-height: 250px;
  padding: clamp(18px, 2vw, 24px);
  gap: 12px;
}

.card-title-block {
  display: grid;
  gap: 5px;
}

.compact-property-card h3 {
  font-size: clamp(1.34rem, 2vw, 1.68rem);
  line-height: 1.02;
}

.compact-property-card .meta {
  font-size: 0.9rem;
  line-height: 1.35;
}

.card-summary {
  margin: 0;
  color: #5c6962;
  font-size: 0.94rem;
  line-height: 1.45;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.mini-badges span,
.guest-pill,
.tag,
.specs span {
  min-height: 29px;
  border-radius: 999px;
  border: 1px solid rgba(36, 71, 63, 0.12);
  background: #f6edde;
  color: #33413a;
  padding: 0.28rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
}

.card-button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
  font-size: 0.9rem;
}

.filter-shell {
  margin: 14px 0 30px;
  border-radius: 8px;
}

.filter-shell summary {
  padding: 14px 18px;
}

.filter-shell .filters {
  grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(110px, 0.7fr);
  gap: 12px;
  padding: 14px 16px 16px;
}

.filters select,
.filters input {
  min-height: 42px;
  padding-block: 0.58rem;
}

.listings-section {
  padding-top: 26px;
}

.listings-section [data-result-count] {
  margin-bottom: 8px;
}

.listing-group {
  padding-top: 24px;
  margin-top: 20px;
}

.section-head.compact {
  margin-bottom: 22px;
}

.section-head.compact > p {
  max-width: 340px;
  font-size: 0.86rem;
  color: #64716a;
}

.route-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-cards article {
  border-radius: 8px;
  border-left: 0;
  padding: 18px 20px;
}

.property-detail-section {
  padding-top: clamp(32px, 5vw, 56px);
}

.property-hero {
  grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.48fr);
  gap: clamp(22px, 3vw, 34px);
}

.property-main {
  gap: clamp(20px, 3vw, 30px);
}

.slideshow-frame {
  aspect-ratio: 16 / 9.8;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(24, 42, 36, 0.12);
}

.slide img {
  filter: saturate(1.02) contrast(1.01);
}

.slideshow-controls {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.slideshow-controls span,
.slideshow-controls .slide-nav {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
}

.property-story {
  display: grid;
  gap: 22px;
}

.property-intro-text {
  margin: 0;
  max-width: 760px;
  color: #3e4a44;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.68;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 24px);
}

.detail-card .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.detail-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.detail-card p,
.detail-card li {
  color: #4f5e57;
  font-size: 0.95rem;
  line-height: 1.55;
}

.detail-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.detail-card li + li {
  margin-top: 6px;
}

.property-side {
  gap: 14px;
}

.property-side .summary-panel,
.property-side .booking-panel,
.property-side .map-card {
  border-radius: 8px;
}

.property-side .summary-panel,
.property-side .booking-panel {
  padding: 18px;
}

.property-side .summary-panel h2,
.property-side .booking-panel h2 {
  font-size: 1.16rem;
}

.property-hero .summary-list {
  gap: 6px;
}

.property-hero .summary-item {
  padding: 8px 9px;
  background: rgba(246, 241, 232, 0.62);
  font-size: 0.84rem;
}

.property-hero .summary-item strong {
  color: #67736c;
}

.property-side .tag-list {
  margin-top: 14px;
  gap: 7px;
}

.property-side .map-card iframe {
  min-height: 190px;
}

.property-policy {
  border-radius: 8px;
  border-left-color: var(--accent);
  background: rgba(168, 100, 63, 0.08);
  color: #4e3a2c;
}

.huurkalender-section {
  padding-top: 10px;
}

.huurkalender-card .section-head {
  gap: 22px;
}

.footer-premium {
  gap: 34px;
}

.footer-bottom {
  gap: 12px 22px;
}

@media (max-width: 980px) {
  .filter-shell .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-hero,
  .detail-card-grid {
    grid-template-columns: 1fr;
  }

  .property-side {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .property-side .summary-panel {
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  .hero-premium {
    min-height: 500px;
  }

  .hero-premium h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .page-hero {
    padding-top: 44px;
  }

  .filter-shell .filters,
  .property-side,
  .route-cards {
    grid-template-columns: 1fr;
  }

  .compact-property-card .card-body {
    min-height: 0;
  }

  .compact-property-card .property-media img,
  .compact-property-card .property-media > img {
    aspect-ratio: 4 / 3;
  }

  .slideshow-frame {
    aspect-ratio: 4 / 3;
  }

  .property-intro-text,
  .detail-card p,
  .detail-card li {
    font-size: 0.94rem;
  }
}



/* Privacyvriendelijke externe embeds */
.external-embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(246, 242, 234, 0.92);
  border: 1px solid rgba(32, 47, 41, 0.11);
}

.external-embed-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.external-embed-placeholder h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.external-embed-placeholder p {
  margin: 0;
  color: #536159;
  font-size: 0.92rem;
  line-height: 1.5;
}

.external-embed-placeholder .button {
  margin-top: 4px;
}

.external-embed-placeholder .meta {
  font-size: 0.78rem;
  color: #6b746e;
}

.map-card .external-embed-placeholder {
  min-height: 210px;
  aspect-ratio: 4 / 3;
}

.huurkalender-card-calendar .external-embed-placeholder {
  min-height: 360px;
}

.huurkalender-card-booking .external-embed-placeholder {
  min-height: 420px;
}

/* High-end homepage hero */
.hero-home {
  min-height: clamp(540px, 72svh, 700px);
  align-items: center;
  isolation: isolate;
  background: #172d2a;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 24, 22, 0.08) 0%, rgba(12, 24, 22, 0) 38%, rgba(12, 24, 22, 0.5) 100%),
    radial-gradient(circle at 18% 38%, rgba(240, 138, 24, 0.14), transparent 30%);
}

.hero-home::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 26, 24, 0.78) 0%, rgba(13, 26, 24, 0.56) 36%, rgba(13, 26, 24, 0.18) 74%, rgba(13, 26, 24, 0.04) 100%);
}

.hero-home img {
  transform: scale(1.01);
  object-position: center center;
  filter: saturate(0.96) contrast(1.03) brightness(0.94);
}

.hero-home-content {
  z-index: 2;
  max-width: 1180px;
  padding-top: clamp(112px, 15vh, 154px);
  padding-bottom: clamp(74px, 10vh, 104px);
}

.hero-copy {
  max-width: 780px;
}

.hero-home .eyebrow {
  margin-bottom: 18px;
  color: #efb46f;
  letter-spacing: 0.15em;
}

.hero-home h1 {
  max-width: 860px;
  margin: 0;
  color: #fffaf1;
  font-size: clamp(3.45rem, 6.8vw, 6.6rem);
  line-height: 0.95;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.hero-subline {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

.hero-home .hero-actions {
  margin-top: 28px;
  gap: 12px;
}

.hero-home .button {
  min-height: 50px;
  padding-inline: 1.28rem;
  border-radius: 999px;
}

.hero-home .button.primary {
  background: #f08a18;
  border-color: rgba(255, 255, 255, 0.16);
  color: #22170f;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.hero-home .button.primary:hover {
  background: #ff9a26;
}

.hero-home .button.secondary {
  background: rgba(255, 250, 241, 0.10);
  border-color: rgba(255, 250, 241, 0.28);
  color: #fffaf1;
  backdrop-filter: blur(12px);
}

.home-listing-section {
  padding-top: clamp(44px, 5.2vw, 72px);
}

@media (max-width: 760px) {
  .hero-home {
    min-height: 560px;
  }

  .hero-home::after {
    background:
      linear-gradient(90deg, rgba(13, 26, 24, 0.84) 0%, rgba(13, 26, 24, 0.62) 66%, rgba(13, 26, 24, 0.22) 100%),
      linear-gradient(0deg, rgba(13, 26, 24, 0.62) 0%, rgba(13, 26, 24, 0) 52%);
  }

  .hero-home img {
    object-position: 55% center;
  }

  .hero-home-content {
    padding-top: 102px;
    padding-bottom: 64px;
  }

  .hero-home h1 {
    max-width: 9.8ch;
    font-size: clamp(2.48rem, 10.4vw, 3.12rem);
    line-height: 1;
  }

  .hero-subline {
    max-width: 300px;
    margin-top: 18px;
    font-size: 0.98rem;
  }
}

@media (max-width: 420px) {
  .hero-home {
    min-height: 555px;
  }

  .hero-home .hero-actions {
    width: min(100%, 330px);
    flex-direction: column;
    align-items: stretch;
  }

  .hero-home .button {
    width: 100%;
    justify-content: center;
  }
}


/* Privacyvriendelijke kaartpreview 2026-07-13 */
.map-preview-embed {
  background: #e9eee8;
  border-color: rgba(32, 47, 41, 0.14);
}

.map-preview {
  min-height: 210px;
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(213, 225, 219, 0.92), rgba(241, 235, 223, 0.95));
}

.map-preview-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 38px 38px,
    radial-gradient(circle at 72% 22%, rgba(168, 100, 63, 0.14), transparent 30%),
    linear-gradient(135deg, #dbe5dd, #f3ede2);
}

.map-road {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 1px rgba(32, 47, 41, 0.06);
}

.map-road.road-a {
  width: 130%;
  left: -16%;
  top: 54%;
  transform: rotate(-18deg);
}

.map-road.road-b {
  width: 100%;
  left: 8%;
  top: 28%;
  transform: rotate(38deg);
  opacity: 0.82;
}

.map-road.road-c {
  width: 78%;
  left: 45%;
  top: 72%;
  transform: rotate(-48deg);
  opacity: 0.7;
}

.map-water {
  position: absolute;
  right: -24%;
  bottom: -18%;
  width: 62%;
  height: 48%;
  border-radius: 52% 48% 0 0;
  background: rgba(79, 129, 141, 0.16);
  border: 1px solid rgba(79, 129, 141, 0.18);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-radius: 50% 50% 50% 8px;
  background: var(--accent);
  box-shadow: 0 12px 22px rgba(75, 44, 27, 0.24);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: #fffdf8;
}

.map-preview-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(32, 47, 41, 0.1);
  box-shadow: 0 16px 34px rgba(24, 42, 36, 0.13);
  backdrop-filter: blur(8px);
}

.map-preview-panel h3 {
  margin: 2px 0 5px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.map-preview-panel p {
  margin: 0;
  color: #536159;
  font-size: 0.84rem;
  line-height: 1.4;
}

.map-preview-panel .button {
  margin-top: 10px;
  min-height: 40px;
  padding: 10px 14px;
}

.map-preview-panel .meta {
  margin-top: 8px;
  font-size: 0.74rem;
  color: #6b746e;
}

.property-side .map-preview {
  min-height: 210px;
}

@media (max-width: 920px) {
  .map-preview,
  .property-side .map-preview {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .map-preview-panel {
    margin: 10px;
    padding: 12px;
  }

  .map-preview-panel .button {
    width: 100%;
  }
}

/* Compacte juridische boekingsroute 2026-07-13 */
.role-panel.legal-note {
  border: 1px solid rgba(32, 47, 41, 0.1);
  border-left: 3px solid rgba(168, 100, 63, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 13px 14px;
  box-shadow: none;
}

.role-panel.legal-note .eyebrow {
  margin-bottom: 6px;
  color: #8b5a3c;
  font-size: 0.64rem;
}

.role-panel.legal-note p {
  margin: 0;
  color: #59655f;
  font-size: 0.79rem;
  line-height: 1.45;
}

.role-panel.legal-note details {
  margin-top: 9px;
}

.role-panel.legal-note summary {
  cursor: pointer;
  color: #3f4c46;
  font-weight: 700;
  font-size: 0.78rem;
}

.role-panel.legal-note dl {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
}

.role-panel.legal-note dl > div {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10px;
  padding-top: 7px;
  border-top: 1px solid rgba(32, 47, 41, 0.08);
}

.role-panel.legal-note dt,
.role-panel.legal-note dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
}

.role-panel.legal-note dt {
  color: #78827c;
  font-weight: 700;
}

.role-panel.legal-note dd {
  color: #4d5953;
}

@media (max-width: 520px) {
  .role-panel.legal-note dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* Kaart in woningtekst 2026-07-13 */
.property-story > .map-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 42, 36, 0.08);
}

.property-story > .map-card .map-card-copy {
  margin-bottom: 12px;
}

.property-story > .map-card h2 {
  font-size: 1.18rem;
}

.property-story > .map-card .map-preview {
  min-height: 260px;
}

/* Compactere footergegevens 2026-07-13 */
.site-footer .footer-brand p,
.site-footer .footer-column p {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.62);
}

.site-footer .footer-column a {
  font-size: 0.86rem;
}
