/* ============================================================
   HAPPY-STAY hs26 — Design System
   Kust-luxe. Teal-verankerd (#0E6D8D uit hs25). Mobile-first.
   Geen Bootstrap, geen Porto — puur eigen CSS.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Kleuren */
  --sea:       #0E6D8D;
  --sea-deep:  #0A4D63;
  --sea-soft:  #E4EEF1;
  --ink:       #16262B;
  --chalk:     #FAF7F1;
  --shell:     #FFFFFF;
  --brass:     #BE8A3D;
  --brass-deep:#9E7130;
  --mist:      #E7E0D4;
  --slate:     #5B6B71;

  /* Typografie */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type scale (mobile) */
  --t-hero: clamp(2.4rem, 9vw, 4.5rem);
  --t-h2:   clamp(1.6rem, 5.5vw, 2.6rem);
  --t-h3:   clamp(1.25rem, 4vw, 1.6rem);
  --t-lead: clamp(1.05rem, 3vw, 1.2rem);
  --t-body: 1rem;
  --t-small: 0.82rem;

  /* Ruimte */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;

  /* Vorm */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Schaduw */
  --shadow-sm: 0 2px 10px rgba(22, 38, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 38, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 77, 99, 0.16);

  /* Layout */
  --container: 1200px;
  --header-h: 68px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sea-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 var(--sp-2);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}
p { margin: 0 0 var(--sp-2); }
hr { border: 0; height: 1px; background: var(--mist); margin: var(--sp-4) 0; }
ul { margin: 0; padding: 0; }

/* ---------- 3. Layout ---------- */
.hs-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.hs-main { display: block; }
.hs-section { padding-block: var(--sp-5); }

.hs-eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-small);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--sp-1);
}
.hs-lead { font-size: var(--t-lead); color: var(--slate); }

/* Signature: horizon-lijn */
.hs-horizon {
  border: 0;
  height: 1px;
  margin: var(--sp-4) 0;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--sea) 18%,
    var(--sea) 82%,
    transparent 100%);
  opacity: .55;
}

/* ---------- 4. Buttons ---------- */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
}
.hs-btn:active { transform: translateY(1px); }
.hs-btn-brass {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 8px 22px rgba(190, 138, 61, 0.32);
}
.hs-btn-brass:hover { background: var(--brass-deep); color: #fff; box-shadow: 0 10px 26px rgba(190,138,61,.4); }
.hs-btn-sea { background: var(--sea); color: #fff; }
.hs-btn-sea:hover { background: var(--sea-deep); color: #fff; }
.hs-btn-ghost {
  background: transparent;
  color: var(--sea);
  border-color: var(--sea);
}
.hs-btn-ghost:hover { background: var(--sea); color: #fff; }
.hs-btn-block { width: 100%; }

/* ---------- 5. Header / nav ---------- */
.hs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--mist);
}
/* Kleine schermen: blur weghalen zodat de vaste menu-lade niet in de
   header vastklemt (backdrop-filter maakt anders een containing block).
   Desktop (>=992px) behoudt de matglas-look ongewijzigd. */
@media (max-width: 991.98px) {
  .hs-header {
    background: var(--chalk);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  /* Off-screen menu-lade afknippen zodat ze geen horizontale scroll maakt.
     overflow-x: clip is sticky-veilig (i.t.t. hidden). */
  html { overflow-x: clip; }
}
.hs-topbar {
  background: var(--sea-deep);
  color: #fff;
  font-size: var(--t-small);
}
.hs-topbar .hs-container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: var(--sp-2);
}
.hs-topbar a { color: #fff; }
.hs-topbar-info { display: flex; gap: var(--sp-3); align-items: center; }
.hs-topbar-info span { display: inline-flex; align-items: center; gap: .4em; opacity: .92; }
.hs-topbar-social { display: flex; gap: var(--sp-2); }
.d-none-mobile { display: none; }
@media (min-width: 768px) { .d-none-mobile { display: inline-flex; } }

.hs-navbar {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h);
}
.hs-logo img { max-height: 42px; width: auto; }

.hs-nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hs-nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.hs-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hs-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hs-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hs-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  background: var(--shell);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: calc(var(--header-h) + var(--sp-3)) var(--sp-3) var(--sp-3);
  overflow-y: auto;
  z-index: 90;
}
.hs-nav.is-open { transform: translateX(0); }
.hs-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.hs-nav > ul > li > a,
.hs-nav .hs-dropdown > button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); background: none; border: 0; text-align: left;
  padding: 0.9em 0.4em; border-radius: 10px; cursor: pointer;
}
.hs-nav > ul > li > a.is-active { color: var(--sea); }
.hs-nav > ul > li > a:hover,
.hs-nav .hs-dropdown > button:hover { background: var(--sea-soft); color: var(--sea); }

.hs-dropdown-menu {
  list-style: none; overflow: hidden; max-height: 0;
  transition: max-height .3s ease; padding-left: var(--sp-2);
}
.hs-dropdown.is-open .hs-dropdown-menu { max-height: 400px; }
.hs-dropdown-menu a { display: block; padding: 0.6em 0.4em; color: var(--slate); font-weight: 500; }
.hs-dropdown-menu a:hover { color: var(--sea); }
.hs-dropdown > button .hs-caret { transition: transform .25s; }
.hs-dropdown.is-open > button .hs-caret { transform: rotate(180deg); }

.hs-nav-reserve { margin-top: var(--sp-3); }
.hs-lang { display: flex; gap: var(--sp-1); margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--mist); }
.hs-lang a { display: inline-flex; align-items: center; gap: .3em; padding: .4em .6em; border-radius: 8px; font-size: .9rem; text-transform: uppercase; }
.hs-lang a.is-active { background: var(--sea); color: #fff; }
.hs-lang img { width: 22px; height: auto; border-radius: 3px; }

.hs-nav-backdrop {
  position: fixed; inset: 0; background: rgba(22,38,43,.4);
  opacity: 0; visibility: hidden; transition: .3s; z-index: 80;
}
.hs-nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- 6. Hero (detail) ---------- */
.hs-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--sea-deep);
}
.hs-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,77,99,.15) 0%, rgba(10,77,99,.15) 45%, rgba(16,38,43,.82) 100%);
}
.hs-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: var(--sp-4); }
.hs-hero-eyebrow { color: #fff; opacity: .85; letter-spacing: .2em; }
.hs-hero h1 { color: #fff; font-size: var(--t-hero); margin: 0 0 .2em; }
.hs-hero-place { display: inline-flex; align-items: center; gap: .5em; font-size: var(--t-lead); opacity: .92; }
.hs-hero-place a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 7. Detail layout ---------- */
.hs-detail { padding-block: var(--sp-5); }
.hs-detail-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }

/* ---------- 8. Gallery ---------- */
.hs-gallery { margin-bottom: var(--sp-4); }
.hs-gallery-main {
  display: flex; gap: var(--sp-2);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: var(--sp-1);
}
.hs-gallery-main::-webkit-scrollbar { display: none; }
.hs-gallery-main figure {
  flex: 0 0 88%; scroll-snap-align: center; margin: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); cursor: zoom-in;
}
.hs-gallery-main img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hs-gallery-thumbs { display: none; gap: var(--sp-1); margin-top: var(--sp-2); }
.hs-gallery-thumbs img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px;
  cursor: pointer; opacity: .7; transition: opacity .2s, outline .2s; outline: 2px solid transparent;
}
.hs-gallery-thumbs img:hover, .hs-gallery-thumbs img.is-active { opacity: 1; outline-color: var(--brass); }

/* Lightbox */
.hs-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16,38,43,.94);
  display: none; align-items: center; justify-content: center;
}
.hs-lightbox.is-open { display: flex; }
.hs-lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; }
.hs-lightbox-close, .hs-lightbox-nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff;
  border: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hs-lightbox-close:hover, .hs-lightbox-nav:hover { background: rgba(255,255,255,.25); }
.hs-lightbox-close { top: 20px; right: 20px; }
.hs-lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.hs-lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- 9. Article / content ---------- */
.hs-article h3 { font-size: var(--t-h3); margin-top: var(--sp-4); }
.hs-article p { color: #2c3d43; }
.hs-article ul.list { list-style: none; }
.hs-article a { text-decoration: underline; text-underline-offset: 2px; }

/* Features */
.hs-features { list-style: none; display: grid; grid-template-columns: 1fr; gap: .5em 1.5em; margin: 0; }
.hs-features li { display: flex; align-items: flex-start; gap: .6em; color: var(--ink); }
.hs-features li .fa-check, .hs-features li svg { color: var(--sea); flex-shrink: 0; margin-top: .25em; }
.hs-check { width: 1em; height: 1em; }

/* ---------- 10. Accordion (native details) ---------- */
.hs-accordion { display: flex; flex-direction: column; gap: var(--sp-1); }
.hs-acc {
  border: 1px solid var(--mist); border-radius: var(--radius);
  background: var(--shell); overflow: hidden;
}
.hs-acc summary {
  list-style: none; cursor: pointer; padding: 1em 1.2em;
  display: flex; align-items: center; gap: .8em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); background: var(--shell); transition: background .2s;
}
.hs-acc summary::-webkit-details-marker { display: none; }
.hs-acc summary:hover { background: var(--sea-soft); }
.hs-acc-num {
  flex-shrink: 0; width: 1.9em; height: 1.9em; border-radius: 50%;
  background: var(--sea); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-size: .85rem;
  font-family: var(--font-body); font-weight: 700;
}
.hs-acc[open] summary { background: var(--sea); color: #fff; }
.hs-acc[open] summary .hs-acc-num { background: #fff; color: var(--sea); }
.hs-acc[open] summary .hs-acc-arrow { transform: rotate(180deg); }
.hs-acc-arrow { margin-left: auto; transition: transform .25s; }
.hs-acc-body { padding: 1.2em; border-top: 1px solid var(--mist); }
.hs-acc-body a { color: var(--sea); }
.hs-faq-list { list-style: none; margin: .5em 0; }
.hs-faq-list li { display: flex; gap: .6em; align-items: flex-start; margin-bottom: .35em; }
.hs-faq-list li::before { content: "\2713"; color: var(--sea); font-weight: 700; flex-shrink: 0; }

/* Guides */
.hs-guides { display: grid; grid-template-columns: 1fr; gap: var(--sp-2); }
.hs-guide-card {
  background: var(--shell); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.hs-guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hs-guide-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.hs-guide-card h4 { padding: .8em 1em; margin: 0; font-size: 1.05rem; }
.hs-guide-list { list-style: none; margin-top: var(--sp-2); }
.hs-guide-list li a { display: inline-flex; align-items: center; gap: .5em; padding: .35em 0; color: var(--sea); }

/* ---------- 11. Map ---------- */
#map { height: 380px; width: 100%; border-radius: var(--radius); overflow: hidden; z-index: 1; }

/* ---------- 12. Sidebar widgets ---------- */
.hs-side { display: flex; flex-direction: column; gap: var(--sp-3); }
.hs-card {
  background: var(--shell); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.hs-card-pad { padding: var(--sp-3); }

/* Boek-CTA */
.hs-book-cta {
  background: linear-gradient(155deg, var(--sea) 0%, var(--sea-deep) 100%);
  color: #fff; text-align: center; padding: var(--sp-4) var(--sp-3);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.hs-book-cta h3 { color: #fff; font-size: var(--t-h3); margin-bottom: .4em; }
.hs-book-cta p { opacity: .9; font-size: .95rem; margin-bottom: var(--sp-3); }

/* Mini-carousels (discover / activities) */
.hs-widget-title { font-size: var(--t-h3); margin-bottom: var(--sp-2); }
.hs-strip { display: flex; gap: var(--sp-2); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hs-strip::-webkit-scrollbar { display: none; }
.hs-strip > * { flex: 0 0 78%; scroll-snap-align: center; }
.hs-mini {
  background: var(--shell); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); text-align: center;
}
.hs-mini img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hs-mini strong { display: block; padding: .7em 1em .1em; font-family: var(--font-display); }
.hs-mini span { display: block; padding: 0 1em .9em; color: var(--slate); font-size: .9rem; }

/* Contact form */
.hs-form { display: flex; flex-direction: column; gap: var(--sp-2); }
.hs-form input, .hs-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: .85em 1em; border: 1.5px solid var(--mist); border-radius: 10px;
  background: var(--chalk); color: var(--ink); transition: border-color .2s;
}
.hs-form input:focus, .hs-form textarea:focus { outline: 0; border-color: var(--sea); }
.hs-alert { padding: .8em 1em; border-radius: 10px; font-size: .9rem; }
.hs-alert-success { background: #e6f4ea; color: #1e6b3a; }
.hs-alert-error { background: #fbe9e9; color: #a12626; }
.d-none { display: none; }

/* ============================================================
   HOME-componenten
   ============================================================ */

/* Sectiekop met horizon-lijn eronder */
.hs-section-head { text-align: center; margin-bottom: var(--sp-4); }
.hs-section-head h2 { font-size: var(--t-h2); margin-bottom: var(--sp-2); }
.hs-section-head .hs-horizon { width: 120px; margin: 0 auto; opacity: .7; }
.hs-section-head p { color: var(--slate); max-width: 560px; margin: var(--sp-2) auto 0; }

/* Compacte pagina-hero (subpaginas: faq, toerisme, shopping, gids) */
.hs-pagehead {
  position: relative; min-height: 34vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: var(--sea-deep);
}
.hs-pagehead-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-pagehead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,77,99,.5) 0%, rgba(16,38,43,.72) 100%); }
.hs-pagehead-inner { position: relative; z-index: 2; padding: var(--sp-5) var(--sp-3); }
.hs-pagehead h1 { color: #fff; font-size: var(--t-h2); margin: 0; }
.hs-pagehead .hs-eyebrow { color: var(--brass); }

/* Landings-hero */
.hs-home-hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--sea-deep); text-align: center;
}
.hs-home-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-home-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,77,99,.55) 0%, rgba(16,38,43,.72) 100%);
}
.hs-home-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: var(--sp-6); }
.hs-home-hero h1 { color: #fff; font-size: var(--t-hero); margin-bottom: var(--sp-2); }
.hs-home-hero .hs-eyebrow { color: var(--brass); }
.hs-home-hero p { font-size: var(--t-lead); opacity: .94; max-width: 620px; margin-inline: auto; margin-bottom: var(--sp-3); }
.hs-hero-actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

/* Pandkaarten (hoofdcontent home) */
.hs-properties { display: flex; flex-direction: column; gap: var(--sp-4); }
.hs-property-card {
  display: grid; grid-template-columns: 1fr; background: var(--shell);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hs-property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hs-property-media { position: relative; overflow: hidden; }
.hs-property-media img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.hs-property-card:hover .hs-property-media img { transform: scale(1.04); }
.hs-property-body { padding: var(--sp-3); display: flex; flex-direction: column; }
.hs-property-body h3 { font-size: var(--t-h3); margin-bottom: .2em; }
.hs-property-sub { font-family: var(--font-body); font-weight: 600; color: var(--sea); margin-bottom: .2em; }
.hs-property-addr { color: var(--slate); font-size: .9rem; margin-bottom: var(--sp-2); }
.hs-property-excerpt { color: #2c3d43; margin-bottom: var(--sp-2); }
.hs-property-excerpt ul { list-style: none; }
.hs-property-excerpt li { display: flex; gap: .5em; align-items: flex-start; }
.hs-property-excerpt li::before { content: "\2713"; color: var(--sea); font-weight: 700; }
.hs-property-more {
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  font-size: .85rem; display: inline-flex; align-items: center; gap: .4em;
}
.hs-property-more i { transition: transform .2s; }
.hs-property-card:hover .hs-property-more i { transform: translateX(4px); }
.hs-property-actions {
  margin-top: auto; padding-top: var(--sp-2);
  display: flex; gap: var(--sp-2); align-items: center; flex-wrap: wrap;
}

/* Sfeerband (vervangt parallax) */
.hs-atmosphere {
  position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; margin-block: var(--sp-5);
}
.hs-atmosphere-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hs-atmosphere::after { content: ""; position: absolute; inset: 0; background: rgba(10,77,99,.55); }
.hs-atmosphere-inner { position: relative; z-index: 2; padding: var(--sp-4); max-width: 700px; }
.hs-atmosphere h2 { color: #fff; font-size: var(--t-h2); }
.hs-atmosphere p { opacity: .95; font-size: var(--t-lead); margin: 0; }

/* Generieke kaartroosters (activiteiten / gidsen) */
.hs-card-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.hs-center { text-align: center; margin-top: var(--sp-4); }

/* ============================================================
   STAPPEN-TIJDLIJN (gids / parcours / quick)
   ============================================================ */
.hs-tl-intro { max-width: 780px; margin: 0 auto var(--sp-4); }
.hs-tl-intro p { color: #2c3d43; }

.hs-timeline { position: relative; max-width: 820px; margin: 0 auto; }
.hs-tl-step { position: relative; padding-left: 3.4rem; padding-bottom: var(--sp-4); }
.hs-tl-step:last-child { padding-bottom: 0; }
/* verbindingslijn */
.hs-tl-step::before {
  content: ""; position: absolute; left: 1.15rem; top: 2.6rem; bottom: -.2rem;
  width: 2px; background: var(--mist);
}
.hs-tl-step:last-child::before { display: none; }
.hs-tl-num {
  position: absolute; left: 0; top: 0; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--sea); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; z-index: 1; box-shadow: 0 0 0 5px var(--chalk);
}
.hs-tl-body h4 { font-size: var(--t-h3); margin-bottom: .3em; }
.hs-tl-body p { color: #2c3d43; margin-bottom: 0; }
.hs-tl-cols { display: grid; grid-template-columns: 1fr; gap: var(--sp-2); align-items: start; }
.hs-tl-media img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow-sm); }
.hs-tl-nav { margin-top: var(--sp-2); }
.hs-btn-sm { padding: .5em 1.1em; font-size: .85rem; }
.hs-post-img { border-radius: var(--radius-lg); margin-bottom: var(--sp-3); width: 100%; box-shadow: var(--shadow-sm); }

/* ============================================================
   INFO-KAARTEN + LINK-LIJSTEN (toerisme / shopping)
   ============================================================ */
.hs-info-card {
  background: var(--shell); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: var(--sp-4);
}
.hs-info-grid { display: grid; grid-template-columns: 1fr; }
.hs-info-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hs-info-body { padding: var(--sp-3); }
.hs-info-body > h3 { font-size: var(--t-h3); margin-bottom: .3em; }
.hs-info-body .hs-intro-text { color: #2c3d43; }

.hs-linklist { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: var(--sp-2); }
.hs-linkrow {
  display: flex; gap: var(--sp-2); align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; padding: .75em 0; border-bottom: 1px solid var(--mist);
}
.hs-linkrow:last-child { border-bottom: 0; }
.hs-linkrow-main { flex: 1 1 60%; min-width: 0; }
.hs-linkrow-main > a { font-weight: 600; display: inline-flex; gap: .5em; align-items: baseline; }
.hs-linkrow-main > a i { color: var(--sea); }
.hs-linkrow-detail {
  margin-top: .6em; background: var(--sea-soft); border-radius: 10px;
  padding: .7em 1em; font-size: .92rem; color: var(--ink);
}
.hs-linkrow-detail ul { list-style: none; }
.hs-linkrow-detail li { display: flex; gap: .5em; align-items: flex-start; }
.hs-linkrow-detail li::before { content: "\2713"; color: var(--sea); font-weight: 700; flex-shrink: 0; }

.hs-city-head {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--sea-deep);
  margin: var(--sp-3) 0 .3em; border-left: 3px solid var(--brass); padding-left: .6em;
}

/* ============================================================
   ENQUÊTE-FORMULIER
   ============================================================ */
.hs-form-card {
  background: var(--shell); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--sp-4); max-width: 760px; margin: 0 auto;
}
.hs-q { padding: var(--sp-3) 0; border-bottom: 1px solid var(--mist); }
.hs-q:first-child { padding-top: 0; }
.hs-q:last-of-type { border-bottom: 0; }
.hs-q-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.08rem; margin-bottom: var(--sp-2); color: var(--ink);
}
.hs-q-num { color: var(--brass); margin-right: .4em; }

/* Sterren-rating (pure CSS, geen JS) */
.hs-stars { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; }
.hs-stars input { position: absolute; opacity: 0; width: 0; height: 0; }
.hs-stars label {
  font-size: 2rem; line-height: 1; color: var(--mist); cursor: pointer;
  padding: 0 .06em; transition: color .12s ease;
}
.hs-stars label:hover,
.hs-stars label:hover ~ label,
.hs-stars input:checked ~ label { color: var(--brass); }
.hs-stars input:focus-visible ~ label { outline: 2px solid var(--sea); }

/* Radio-pillen */
.hs-radio-group { display: flex; flex-wrap: wrap; gap: .6em; }
.hs-radio { display: inline-flex; }
.hs-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.hs-radio span {
  display: inline-flex; padding: .55em 1.2em; border: 1.5px solid var(--mist);
  border-radius: var(--radius-pill); cursor: pointer; transition: .15s; font-weight: 500;
}
.hs-radio input:checked + span { background: var(--sea); color: #fff; border-color: var(--sea); }
.hs-radio input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }

.hs-form-note {
  background: var(--sea-soft); border-radius: 10px; padding: .8em 1em;
  font-size: .9rem; color: var(--sea-deep); margin-bottom: var(--sp-3);
}

@media (min-width: 680px) {
  .hs-info-grid.has-media { grid-template-columns: 300px 1fr; }
  .hs-info-media.has-media img { aspect-ratio: auto; min-height: 240px; }
}

@media (min-width: 680px) {
  .hs-tl-cols { grid-template-columns: 300px 1fr; }
}

/* ---------- 13. Placeholder ---------- */
.hs-placeholder { padding-block: var(--sp-6); text-align: center; }
.hs-placeholder-title { font-size: var(--t-h2); }

/* ---------- 14. Footer ---------- */
.hs-footer { background: var(--ink); color: #fff; padding-block: var(--sp-5) var(--sp-4); margin-top: var(--sp-6); }
.hs-footer a { color: #fff; }
.hs-footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); align-items: center; }
.hs-footer-logo img { max-width: 130px; filter: brightness(0) invert(1); opacity: .95; }
.hs-footer-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.hs-footer-item { display: flex; gap: .8em; align-items: flex-start; }
.hs-footer-item i { color: var(--brass); font-size: 1.3rem; margin-top: .15em; }
.hs-footer-item label { display: block; font-size: var(--t-small); opacity: .6; letter-spacing: .1em; text-transform: uppercase; }
.hs-footer-item strong { font-size: 1.05rem; }
.hs-footer-social { display: flex; gap: var(--sp-2); }
.hs-footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s;
}
.hs-footer-social a:hover { background: var(--brass); }

/* ---------- 15. Accessibility ---------- */
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Scroll-reveal */
.hs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.hs-reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   16. RESPONSIVE — tablet & desktop
   ============================================================ */
@media (min-width: 680px) {
  .hs-features { grid-template-columns: 1fr 1fr; }
  .hs-guides { grid-template-columns: 1fr 1fr; }
  .hs-gallery-main figure { flex-basis: 60%; }
  .hs-strip > * { flex-basis: 46%; }
  .hs-card-grid { grid-template-columns: 1fr 1fr 1fr; }
  /* Pandkaart: foto links, tekst rechts */
  .hs-property-card { grid-template-columns: 42% 1fr; }
  .hs-property-media img { height: 100%; aspect-ratio: auto; min-height: 280px; }
  .hs-property-body { padding: var(--sp-4); }
}

@media (min-width: 992px) {
  :root { --header-h: 76px; }

  /* Desktop nav: horizontaal, geen drawer */
  .hs-nav-toggle { display: none; }
  .hs-nav {
    position: static; width: auto; transform: none; box-shadow: none;
    background: none; padding: 0; overflow: visible; display: flex; align-items: center;
  }
  .hs-nav > ul { flex-direction: row; align-items: center; gap: var(--sp-1); }
  .hs-nav > ul > li > a,
  .hs-nav .hs-dropdown > button { padding: .6em .9em; font-size: .98rem; white-space: nowrap; }
  .hs-nav-backdrop { display: none; }

  /* Desktop dropdown = hover-flyout */
  .hs-dropdown { position: relative; }
  .hs-dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--shell); border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: var(--sp-1); max-height: none; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: .2s; padding-left: var(--sp-1);
  }
  .hs-dropdown:hover .hs-dropdown-menu,
  .hs-dropdown.is-open .hs-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
  .hs-dropdown-menu a { border-radius: 8px; }
  .hs-dropdown-menu a:hover { background: var(--sea-soft); }
  .hs-nav-reserve { margin-top: 0; margin-left: var(--sp-1); }
  .hs-nav-reserve a { color: #fff; }
  .hs-lang { margin-top: 0; padding-top: 0; border: 0; margin-left: var(--sp-1); }

  /* Detail: content + sticky sidebar */
  .hs-detail-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--sp-5); align-items: start; }
  .hs-side { position: sticky; top: calc(var(--header-h) + var(--sp-2)); }

  .hs-gallery-main figure { flex-basis: 48%; }
  .hs-gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); }

  .hs-hero { min-height: 68vh; }

  .hs-footer-grid { grid-template-columns: auto 1fr auto; }
  .hs-footer-info { flex-direction: row; gap: var(--sp-5); }
}

@media (min-width: 1200px) {
  .hs-gallery-main figure { flex-basis: 40%; }
}

/* ============================================================
   HORIZONTALE OVERFLOW VOORKOMEN (kleine schermen)
   Veilig op desktop: grijpt enkel in wanneer inhoud zou overlopen.
   ============================================================ */
.hs-main { overflow-wrap: break-word; }
.hs-detail-grid > *,
.hs-info-grid > *,
.hs-property-card > *,
.hs-tl-cols > * { min-width: 0; }
.hs-side > *,
.hs-strip { min-width: 0; }
.hs-linkrow-main { min-width: 0; }
.hs-linkrow-main a { overflow-wrap: anywhere; }
input, textarea, select { max-width: 100%; }
