/*
Theme Name: Huis de Wiers
Theme URI: https://www.huisdewiers.nl
Author: Huis de Wiers Restaurant
Description: Premium Apple-stijl restaurant theme voor Huis de Wiers, Nieuwegein.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: huis-de-wiers
*/

/* =============================================
   DESIGN TOKENS â€” Warme kleurpalette HDW
   ============================================= */
:root {
  --hdw-warm-white:  #faf8f5;   /* paginaachtergrond: ivoorwit */
  --hdw-warm-light:  #f4f1ec;   /* secties: licht perkament */
  --hdw-warm-mid:    #ede8e0;   /* borders, dividers */
  --hdw-warm-card:   #ffffff;   /* kaarten: zuiver wit voor contrast */
  --hdw-ink:         #1a1a18;   /* tekst: bijna-zwart met warmte */
  --hdw-ink-muted:   #5c5a55;   /* subtekst */
  --hdw-ink-faint:   #9e9b93;   /* labels, supertitels */
  --hdw-accent:      #111827;   /* knoppen, donker */
}

:where(section[id], div[id]) { scroll-margin-top: 88px; }
/* Shared content gutters also cover portrait tablets, not just phones. */
@media (max-width:1023px) {
  section.px-6:not(.hdw-menu-sheet),
  section.px-5:not(.hdw-menu-sheet) { padding-inline:clamp(32px, 6vw, 60px) !important; }
  .hdw-rtl-inner { padding-inline:clamp(32px, 6vw, 60px) !important; }
}

/* Keep the page on its vertical axis; nested galleries retain their own swipe. */
html { overflow-x:clip; overscroll-behavior-x:none; }
body.hdw-body { overflow-x:clip; overscroll-behavior-x:none; }
@supports not (overflow:clip) {
  html, body.hdw-body { overflow-x:hidden; }
}

/* Pagina-body warm wit */
body,
body.hdw-body {
  background-color: var(--hdw-warm-white) !important;
  color: var(--hdw-ink);
}

/* Tailwind bg-white overrides â€” warm wit voor pagina-secties */
.bg-white { background-color: var(--hdw-warm-white) !important; }
.bg-gray-50 { background-color: var(--hdw-warm-light) !important; }

/* Kaarten houden zuiver wit voor contrast op warme achtergrond */
.hdw-vacature-card,
.hdw-person-modal-sheet,
.hdw-card-hover,
.hdw-interior-slider ~ * .bg-white,
.rounded-2xl.bg-white,
.rounded-3xl.bg-white {
  background-color: #ffffff !important;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--hdw-warm-light); }
::-webkit-scrollbar-thumb { background: var(--hdw-warm-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b0aa9f; }

/* =============================================
   NAVIGATIE â€” ACTIVE STATE
   ============================================= */
.hdw-nav-link {
  position: relative;
  padding-bottom: 3px;
}
.hdw-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: left 0.35s cubic-bezier(0.22,1,.36,1), right 0.35s cubic-bezier(0.22,1,.36,1);
}
.hdw-nav-link:hover::after,
.hdw-nav-link.hdw-nav-active::after {
  left: 0;
  right: 0;
}

/* =============================================
   LIQUID GLASS TAB ANIMATIES
   ============================================= */
@keyframes hdw-glass-in {
  0%   { opacity:0; filter:blur(10px); transform:translateY(8px) scale(0.97); }
  55%  { filter:blur(1px); }
  100% { opacity:1; filter:blur(0);    transform:translateY(0)   scale(1); }
}
@keyframes hdw-glass-out {
  0%   { opacity:1; filter:blur(0);    transform:scale(1); }
  100% { opacity:0; filter:blur(6px);  transform:scale(0.98); }
}

.hdw-tab-content { display:none; }
.hdw-tab-content.active { display: block; }

/* Per-item fade+slide â€” elke rij in het menu animeert los */
.hdw-will-animate .hdw-menu-row,
.hdw-will-animate .hdw-menu-item {
  opacity: 0 !important;
  filter: blur(7px);
  transform: translateY(18px) scale(.992) !important;
  /* Forceer transitie over Tailwind-override (die zet het op 1e-05s) */
  transition: opacity .62s cubic-bezier(.22,1,.36,1) !important,
              filter .62s cubic-bezier(.22,1,.36,1) !important,
              transform .68s cubic-bezier(.16,1,.3,1) !important;
}
.hdw-menu-row.hdw-item-visible,
.hdw-menu-item.hdw-item-visible {
  opacity: 1 !important;
  filter: blur(0);
  transform: translateY(0) scale(1) !important;
}
.hdw-menu-row.hdw-item-visible > *,
.hdw-menu-item.hdw-item-visible > * {
  animation: hdw-menu-row-in .68s cubic-bezier(.16,1,.3,1) var(--hdw-item-delay, 0s) both;
}
@keyframes hdw-menu-row-in {
  from { opacity: 0; filter: blur(7px); transform: translateY(18px) scale(.992); }
  to   { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

/* Tab sliding pill */
.hdw-tab-bar {
  position: relative;
  display: inline-flex;
  gap: 4px;
  background: var(--hdw-warm-mid);
  padding: 6px;
  border-radius: 9999px;
}
#hdw-tab-pill {
  position: absolute;
  top: 6px;
  bottom: 6px;
  background: #111827;
  border-radius: 9999px;
  transition: left 0.4s cubic-bezier(0.34,1.56,.64,1),
              width 0.4s cubic-bezier(0.34,1.56,.64,1);
  pointer-events: none;
  will-change: left, width;
}
.hdw-tab-btn {
  position: relative;
  z-index: 1;
  padding: 8px 22px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #6b7280;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.hdw-tab-btn.active { color: #fff; }

/* High Tea / High Wine tabs â€” gouden accent */
.hdw-tab-highlight {
  color: #c9a96e !important;
  font-style: italic;
}
.hdw-tab-highlight.active {
  color: #fff !important;
  background: transparent;
}
/* Tab-balk op mobiel: horizontaal scrollend, groot genoeg om aan te tikken */
@media (max-width: 767px) {
  .flex.justify-center.mb-12 {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 0 16px 4px !important;
    margin-bottom: 28px !important;
  }
  .flex.justify-center.mb-12::-webkit-scrollbar { display: none; }
  .hdw-tab-bar {
    flex-wrap: nowrap !important;
    min-width: max-content !important;
  }
  .hdw-tab-btn {
    padding: 10px 18px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }
}

/* =============================================
   CAROUSEL
   ============================================= */
/* ==============================================
   CAROUSEL â€” transform-gebaseerd, infinite loop
   ============================================== */
#hdw-carousel-wrapper {
  overflow: hidden;
  padding-block:40px 36px;
  margin-block:-40px -36px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
#hdw-carousel-prev,
#hdw-carousel-next {
  display:flex;
  opacity:1;
  width:44px;
  height:44px;
  padding:12px;
  background:rgba(255,255,255,.94);
  box-shadow:0 4px 18px rgba(25,22,18,.14);
}
#hdw-carousel-prev { left:12px; }
#hdw-carousel-next { right:12px; }
#hdw-carousel-wrapper.is-dragging { cursor: grabbing; }

.hdw-carousel-track {
  display: flex;
  will-change: transform;
}

.hdw-carousel-slide,
.hdw-carousel-slide.hdw-clone {
  flex-shrink: 0;
}

/* Desktop: soepele spring easing */
.hdw-carousel-track.hdw-animating {
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hdw-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.hdw-carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.35s ease,
              transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              width 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.hdw-carousel-dot.active {
  background: #111827;
  transform: scale(1.5);
}

/* =============================================
   FADE-UP â€” Apple iOS spring easing
   ============================================= */
/* Elementen starten zichtbaar (editor-safe); JS voegt .hdw-will-animate toe */
.hdw-fade-up { opacity: 1; transform: none; }
.hdw-fade-up.hdw-will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hdw-fade-up.hdw-will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger-klassen â€” JS zet transition-delay */
.hdw-fade-up.hdw-delay-1 { transition-delay: 0.08s; }
.hdw-fade-up.hdw-delay-2 { transition-delay: 0.16s; }
.hdw-fade-up.hdw-delay-3 { transition-delay: 0.24s; }
.hdw-fade-up.hdw-delay-4 { transition-delay: 0.32s; }

/* =============================================
   HERO SCROLL BOUNCE
   ============================================= */
@keyframes hdw-bounce {
  0%,100% { transform: translateY(0) rotate(90deg); }
  50%      { transform: translateY(8px) rotate(90deg); }
}
.hdw-bounce { animation: hdw-bounce 1.5s ease-in-out infinite; }

/* =============================================
   NAVIGATIE MOBIEL
   ============================================= */
#hdw-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,.36,1),
              opacity 0.35s ease;
  opacity: 0;
}
#hdw-mobile-menu.open {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  opacity: 1;
}

/* Zichtbare, consistente toetsenbordfocus over alle templates. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: 3px;
}

/* =============================================
   FORMULIEREN â€” inputs, labels
   ============================================= */
.hdw-label {
  display: block;
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #374151;
  margin-bottom: 6px;
}
.hdw-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: 'Jura', sans-serif;
  font-size: 0.9375rem;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
}
.hdw-input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17,24,39,0.08);
}

/* =============================================
   FORMULIEREN FEEDBACK
   ============================================= */
.hdw-form-success {
  background: #16a34a; color:#fff;
  padding:10px 16px; border-radius:8px; font-size:.875rem; margin-bottom:12px;
}
.hdw-form-error {
  background: #dc2626; color:#fff;
  padding:10px 16px; border-radius:8px; font-size:.875rem; margin-bottom:12px;
}

/* =============================================
   APPLE-STIJL HOVER/PRESS STATES â€” buttons, links, cards
   ============================================= */
.hdw-btn, a.hdw-btn {
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.hdw-btn:hover  { transform: scale(1.04); }
.hdw-btn:active { transform: scale(0.97); transition-duration: 0.12s; }

/* Zachte hover-lift voor alle kaarten */
.hdw-card-hover {
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}
.hdw-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
}

/* =============================================
   TIJDLIJN â€” Apple vertical timeline
   ============================================= */
.hdw-timeline {
  position: relative;
  padding-left: 0;
}
.hdw-timeline-item {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: flex-start;
  padding-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.hdw-timeline-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.hdw-timeline-year {
  flex-shrink: 0;
  width: clamp(72px,12vw,120px);
  text-align: right;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem,3vw,1.75rem);
  color: #111827;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.hdw-timeline-item:hover .hdw-timeline-year { color: #6b7280; }
.hdw-timeline-line {
  border-left: 2px solid #e5e7eb;
  padding-left: clamp(1rem,3vw,1.75rem);
  padding-bottom: 1.5rem;
  flex: 1;
}
.hdw-timeline-line p {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.65;
}

/* =============================================
   INTERIEUR SLIDESHOW (Over Ons)
   ============================================= */
.hdw-interior-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 16/9;
  background: #111;
}
/* Alle slides liggen gestapeld, standaard rechts buiten beeld */
.hdw-interior-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  will-change: transform;
  /* Geen transition hier â€” JS stuurt dit volledig */
}
/* De actieve slide staat op zijn plek */
.hdw-interior-slide.hdw-sl-current {
  transform: translateX(0);
}
.hdw-interior-slide img { width:100%; height:100%; object-fit:cover; display:block; }

/* Pill dots â€” Figma stijl */
.hdw-pill-dots { display:flex; justify-content:center; align-items:center; gap:6px; margin-top:1.5rem; }
.hdw-pill-dot {
  height: 6px;
  border-radius: 9999px;
  background: #d1d5db;
  transition: width 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease;
  width: 6px; cursor: pointer; border: none; padding: 0;
}
.hdw-pill-dot.active { width: 28px; background: #111827; }

/* Slider nav knoppen */
.hdw-interior-nav {
  position: absolute; top:50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border: none; border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
}
.hdw-interior-nav:hover { transform: translateY(-50%) scale(1.1); }
.hdw-interior-slider:hover .hdw-interior-nav { opacity: 1; }
.hdw-interior-nav.prev { left: 1.25rem; }
.hdw-interior-nav.next { right: 1.25rem; }

/* =============================================
   RESTAURANT TIJDLIJN â€” Apple scroll-driven
   ============================================= */
.hdw-history-copy { width: min(100%, 760px); }
.hdw-restaurant-timeline-section {
  --hdw-timeline-glow-y: 8%;
  background:
    radial-gradient(circle at 50% var(--hdw-timeline-glow-y), rgba(201,169,110,.16), transparent 24rem),
    linear-gradient(180deg, #050505, #000 48%, #070604);
  padding: clamp(5rem,10vw,9rem) 0;
  overflow: hidden;
  position: relative;
  transition: background-position .2s linear;
}
.hdw-rtl-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,3rem);
}

/* Header */
.hdw-rtl-header { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.hdw-rtl-super {
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.hdw-rtl-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem,5vw,3.25rem);
  color: #fff;
  line-height: 1.15;
}

/* Track + doorlopende lijn */
.hdw-rtl-track {
  position: relative;
  padding: 0 0 2rem;
}
.hdw-rtl-ambient-year {
  position: sticky;
  z-index: 0;
  top: 34vh;
  height: 0;
  overflow: visible;
  color: rgba(255,255,255,.055);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(6rem, 18vw, 13rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color .45s ease, filter .45s ease;
}
.hdw-rtl-ambient-year.hdw-year-tick { animation: hdw-year-tick .72s cubic-bezier(.16,1,.3,1); }
@keyframes hdw-year-tick {
  0% { opacity: .25; filter: blur(12px); transform: translateY(-44%) scale(.965); }
  100% { opacity: 1; filter: blur(0); transform: translateY(-50%) scale(1); }
}
.hdw-rtl-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.hdw-rtl-line-fill {
  width: 100%;
  height: 0%;
  background: rgba(255,255,255,0.35);
  transition: height 0.1s linear;
}
@media (max-width: 639px) {
  .hdw-rtl-line { left: 20px; transform: none; }
}

/* Item */
.hdw-rtl-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  margin-bottom: clamp(2.5rem,5vw,4rem);
  /* Start onzichtbaar; JS maakt zichtbaar */
  opacity: 0;
}
.hdw-rtl-item.hdw-rtl-visible { opacity: 1; }

/* De gloeiende dot */
.hdw-rtl-dot {
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.hdw-rtl-dot span {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.5s ease;
}
.hdw-rtl-item.hdw-rtl-visible .hdw-rtl-dot span {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}

/* Kaart â€” links (even) en rechts (oneven) */
.hdw-rtl-card {
  grid-column: 1;
  text-align: right;
  padding: clamp(1rem,2.5vw,1.4rem);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 24px 70px rgba(0,0,0,.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hdw-rtl-right .hdw-rtl-card {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  padding: clamp(1rem,2.5vw,1.4rem);
  transform: translateX(32px);
}
.hdw-rtl-item.hdw-rtl-visible .hdw-rtl-card {
  transform: translateX(0);
}

/* Jaar */
.hdw-rtl-year {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem,3vw,2rem);
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.hdw-rtl-item:hover .hdw-rtl-year { color: #fff; }

/* Titel */
.hdw-rtl-card-title {
  font-family: 'Jura', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

/* Tekst */
.hdw-rtl-card-text {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem,1.5vw,0.9375rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Mobiel: alles links van de lijn */
@media (max-width: 639px) {
  .hdw-rtl-item,
  .hdw-rtl-item.hdw-rtl-right {
    grid-template-columns: 32px 1fr;
    margin-bottom: 2.5rem;
  }
  .hdw-rtl-dot { grid-column: 1; padding-top: 2px; }
  .hdw-rtl-card,
  .hdw-rtl-right .hdw-rtl-card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 1rem 1.05rem;
    transform: translateX(20px);
  }
  .hdw-rtl-item.hdw-rtl-visible .hdw-rtl-card { transform: translateX(0); }
}

/* =============================================
   VALUES GRID â€” iconen met hover
   ============================================= */
.hdw-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .hdw-values-grid { grid-template-columns: repeat(4, 1fr); } }
.hdw-value-item {
  text-align: center;
}
.hdw-value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #111827; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.hdw-value-item:hover .hdw-value-icon { transform: scale(1.12); }

/* Over ons: waarden krijgen dezelfde heldere kaarttaal als Werken bij. */
.hdw-values-section { background:var(--hdw-warm-light,#f4f1ec); }
.hdw-values-card-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.hdw-values-card-grid .hdw-value-item {
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
  min-height:260px;
  padding:32px 24px 28px;
  border:1px solid rgba(128,103,67,.12);
  border-radius:24px;
  background:#fffefb;
  box-shadow:0 2px 4px rgba(28,24,18,.025),0 14px 38px rgba(61,48,29,.045);
  transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s cubic-bezier(.22,1,.36,1),border-color .4s ease;
}
.hdw-values-card-grid .hdw-value-icon { margin-bottom:0; }
.hdw-values-card-grid .hdw-value-item p { max-width:26ch; }
@media (min-width:560px) {
  .hdw-values-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (min-width:900px) {
  .hdw-values-card-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:22px; }
}
@media (hover:hover) {
  .hdw-values-card-grid .hdw-value-item:hover {
    transform:translateY(-5px);
    border-color:rgba(128,103,67,.24);
    box-shadow:0 4px 8px rgba(28,24,18,.035),0 22px 48px rgba(61,48,29,.08);
  }
}
@media (prefers-reduced-motion:reduce) {
  .hdw-values-card-grid .hdw-value-item { transition:none; }
}

/* =============================================
   EVENTS / AGENDA KAARTEN
   ============================================= */
.hdw-event-card {
  transition: transform 0.4s cubic-bezier(0.22,1,.36,1),
              box-shadow 0.4s ease;
}
.hdw-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}

/* =============================================
   FOTO GALERIJ
   ============================================= */
.hdw-gallery-grid {
  columns: 3 300px;
  column-gap: 16px;
}
@media (max-width:640px) { .hdw-gallery-grid { columns: 2 150px; column-gap:10px; } }

.hdw-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.hdw-gallery-item img {
  width:100%; height:auto; display:block;
  transition: transform 0.5s cubic-bezier(0.22,1,.36,1);
}
.hdw-gallery-item:hover img { transform:scale(1.04); }

/* Lightbox */
#hdw-lightbox {
  position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.92);
  display:none; align-items:center; justify-content:center;
  backdrop-filter:blur(12px);
  animation:hdw-lightbox-in .3s ease;
}
#hdw-lightbox.open { display:flex; }
@keyframes hdw-lightbox-in {
  from { opacity:0; } to { opacity:1; }
}
#hdw-lightbox img {
  max-width:90vw; max-height:90vh;
  border-radius:8px;
  box-shadow:0 40px 120px rgba(0,0,0,.6);
  animation: hdw-glass-in .4s cubic-bezier(0.22,1,.36,1) both;
}
#hdw-lightbox-close {
  position:absolute; top:24px; right:28px;
  color:#fff; font-size:28px; cursor:pointer; background:none; border:none;
  transition:transform .25s ease;
}
#hdw-lightbox-close:hover { transform:rotate(90deg); }

/* =============================================
   SECTIE SCHEIDINGSLIJNEN
   ============================================= */
.hdw-divider {
  border:none; border-top:1px solid #e5e7eb; margin:40px 0;
}

/* =============================================
   MENU SECTIE BLOKKEN (Belevingsmenu etc.)
   ============================================= */
.hdw-highlight-block {
  background:linear-gradient(135deg,#f9f9f9 0%,#f3f4f6 100%);
  border-radius:20px; padding:32px;
  border:1px solid #e5e7eb;
}

/* =============================================
   TIJDLIJN
   ============================================= */
.hdw-timeline { position:relative; }
.hdw-timeline::before {
  content:''; position:absolute;
  left:15px; top:0; bottom:0;
  width:2px; background:#e5e7eb;
}
@media(min-width:768px) {
  .hdw-timeline::before { left:50%; transform:translateX(-50%); }
}

/* =============================================
   RESPONSIVE HULPKLASSEN
   ============================================= */
@media(max-width:640px) {
  .hdw-hide-mobile { display:none !important; }
  .hdw-tab-btn { padding:8px 14px; font-size:.8rem; }
}

/* =============================================
   VLOEIENDE TYPOGRAFIE â€” ALLE PAGINA'S
   ============================================= */

/* Pagina hero h1 â€” vloeiend van 1.75rem (mobiel) naar 3.5rem (desktop) */
.hdw-page-h1 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  line-height: 1.15;
}

/* Pagina sectie h2 */
.hdw-page-h2 {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  line-height: 1.2;
}

/* Subtitel / lead tekst */
.hdw-page-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

/* Superscript label boven titels */
.hdw-sr-super {
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* =============================================
   MOBIEL TYPOGRAFIE & SPACING FIXES
   ============================================= */

/* Hero logo iets kleiner op zeer kleine schermen */
@media(max-width:390px) {
  .hdw-hero-logo { height: 10rem !important; }
}

/* Features sectie: minder padding op mobiel */
@media(max-width:767px) {
  /* Sectie padding */
  section.py-24 { padding-top: 64px; padding-bottom: 64px; }

  /* Section intro header minder ondermarge */
  .hdw-section-intro { margin-bottom: 40px !important; }

  /* Carousel slide titel groter dan h2 base op mobiel */
  .hdw-slide-title { font-size: 1.1rem !important; }
  .hdw-slide-desc  { font-size: 0.95rem !important; }

  /* CTA sectie minder padding */
  section.py-40 { padding-top: 80px !important; padding-bottom: 80px !important; }

  /* CTA knoppen: volledige breedte op klein scherm */
  .hdw-cta-btn { width: 100%; justify-content: center; }

  /* Carousel dots groter klikgebied op touch */
  .hdw-carousel-dot { width: 8px; height: 8px; }
}

/* Vloeiende tekst scaling voor sectie-titels */
.hdw-section-h2 {
  font-size: clamp(1.6rem, 5vw, 3rem);
  line-height: 1.2;
}

/* CTA heading vloeiend */
.hdw-cta-h2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1.15;
}

/* Footer grid op mobiel: stapelen + minder gap */
@media(max-width:767px) {
  .hdw-footer { padding-top:3rem !important; }
  .hdw-footer .hdw-footer-grid { gap:2.25rem; margin-bottom:2.75rem; }
  .hdw-footer-column > h3 { margin-bottom:1.15rem !important; }
  .hdw-footer .space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top:.75rem; }
  footer .space-y-3 > * { font-size: 0.9rem; }
}

/* Een iPad/smal venster heeft genoeg breedte voor twee kolommen. */
@media(min-width:600px) and (max-width:767px) {
  .hdw-footer .hdw-footer-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:3rem;
    row-gap:2.5rem;
  }
  .hdw-footer-links { grid-column:1 / -1; }
  .hdw-footer-links nav {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:.7rem 1.5rem;
  }
  .hdw-footer-links nav > :not([hidden]) ~ :not([hidden]) { margin-top:0; }
}

/* iPad-portret: alle hoofdonderdelen naast elkaar, zonder een lege tussenrij. */
@media(min-width:700px) and (max-width:767px) {
  .hdw-footer .hdw-footer-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
    column-gap:1.75rem;
    row-gap:0;
  }
  .hdw-footer-links { grid-column:auto; }
  .hdw-footer-links nav {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:.55rem;
  }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
/* =============================================
   VACATURE ACCORDION
   ============================================= */
.hdw-vacature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hdw-vacature-card:hover,
.hdw-vacature-card.hdw-vac-open {
  border-color: #111827;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.hdw-vacature-header {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.hdw-vacature-meta { flex: 1; min-width: 0; }
.hdw-vacature-afd {
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: 6px;
}
.hdw-vacature-titel {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #111827;
  margin: 0 0 10px;
}
.hdw-vacature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hdw-tag-outline {
  font-family: 'Jura', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  color: #6b7280;
}
.hdw-tag-dark {
  font-family: 'Jura', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #111827;
  color: #fff;
}
.hdw-vacature-chevron {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
}
.hdw-vac-open .hdw-vacature-chevron { transform: rotate(180deg); }
.hdw-vacature-body {
  padding: 0 28px;
  overflow: hidden;
  max-height: 0;
  /* Geen display:none â€” we gebruiken max-height voor de animatie */
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1),
              padding-bottom 0.4s ease;
}
.hdw-vacature-body.hdw-vac-expanded {
  max-height: 800px;
  padding-bottom: 24px;
}
.hdw-vacature-omsch {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 20px;
  padding-top: 4px;
  border-top: 1px solid #f3f4f6;
  padding-top: 20px;
}
.hdw-solliciteer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jura', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #111827;
  border-bottom: 2px solid #111827;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.hdw-solliciteer-btn:hover { opacity: 0.55; }

/* =============================================
   EIGENAREN â€” klikbare kaart
   ============================================= */
.hdw-owner-card {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hdw-owner-photo {
  position: relative;
  width: clamp(11rem, 20vw, 14rem);
  height: clamp(11rem, 20vw, 14rem);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  ring: 1px solid #e5e7eb;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}
.hdw-owner-card:hover .hdw-owner-photo,
.hdw-owner-card:focus-visible .hdw-owner-photo {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
/* play-hint badge */
.hdw-owner-play-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}
.hdw-owner-card:hover .hdw-owner-play-hint,
.hdw-owner-card:focus-visible .hdw-owner-play-hint {
  opacity: 1;
  background: rgba(0,0,0,0.28);
}
.hdw-owner-play-hint svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  width: 40px;
  height: 40px;
}

/* =============================================
   EIGENAREN MODAL
   ============================================= */
.hdw-person-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hdw-person-modal[hidden] { display: none; }
.hdw-person-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.hdw-person-modal.hdw-modal-open .hdw-person-modal-backdrop {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}
.hdw-person-modal-sheet {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  -webkit-overflow-scrolling: touch;
}
.hdw-person-modal.hdw-modal-open .hdw-person-modal-sheet {
  transform: translateY(0);
}
/* Desktop: centered card ipv bottom sheet */
@media (min-width: 640px) {
  .hdw-person-modal {
    align-items: center;
  }
  .hdw-person-modal-sheet {
    border-radius: 24px;
    max-height: 85vh;
    transform: scale(0.9) translateY(24px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
                opacity 0.4s ease;
  }
  .hdw-person-modal.hdw-modal-open .hdw-person-modal-sheet {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.hdw-person-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 2;
}
.hdw-person-modal-close:hover { background: #e5e7eb; transform: rotate(90deg); }
.hdw-person-modal-inner {
  padding: 36px 28px 40px;
}
.hdw-person-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hdw-person-modal-avatar {
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hdw-person-modal-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hdw-person-modal-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #111827;
  margin: 0 0 4px;
}
.hdw-person-modal-role {
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0;
}
/* Video blok */
.hdw-person-modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  margin-bottom: 24px;
}
.hdw-person-modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.hdw-person-modal-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  background: #111827;
}
.hdw-person-modal-video-placeholder p {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.hdw-person-modal-video-placeholder span {
  font-family: 'Jura', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
}
/* Bio tekst */
.hdw-person-modal-bio {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hdw-fade-up,
  .hdw-fade-up.hdw-will-animate { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hdw-timeline-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hdw-interior-slide { transition: none !important; }
  .hdw-pill-dot { transition: none !important; }
  .hdw-bounce { animation: none !important; }
  .hdw-carousel-track { transition: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =============================================
   DIRECTE MOTION, UNIFIED CONTROLS & ARCHIEFBEELD
   ============================================= */
.hdw-fade-up.hdw-delay-1 { transition-delay: .02s !important; }
.hdw-fade-up.hdw-delay-2 { transition-delay: .04s !important; }
.hdw-fade-up.hdw-delay-3 { transition-delay: .06s !important; }
.hdw-fade-up.hdw-delay-4 { transition-delay: .08s !important; }
.hdw-motion-ready .hdw-fade-up.hdw-will-animate {
  filter: none;
  transform: translate3d(0,14px,0);
  transition: opacity .42s cubic-bezier(.22,1,.36,1), transform .46s cubic-bezier(.22,1,.36,1);
}
.hdw-motion-ready .hdw-fade-up.hdw-will-animate.is-visible { transform: translate3d(0,0,0); }

.hdw-hero-button,
.hdw-mobile-reserve { border: 0 !important; border-radius: 999px !important; }
.hdw-hero-button--primary { box-shadow: 0 7px 24px rgba(0,0,0,.15); }
.hdw-hero-button--secondary {
  color: #fff;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 7px 24px rgba(0,0,0,.11);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}
.hdw-hero-button--secondary:hover { color:#fff; background:rgba(255,255,255,.24); }

.hdw-mobile-main-links a {
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: none;
}
.hdw-mobile-sub-links a { border-radius: 999px; }
.hdw-mobile-main-links a:active,
.hdw-mobile-sub-links a:active { transform: scale(.985); }

.hdw-menu-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 18px;
}
.hdw-menu-bars i {
  position: absolute;
  left: 1px;
  width: 20px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top .25s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1), opacity .16s ease;
}
.hdw-menu-bars i:nth-child(1) { top: 2px; }
.hdw-menu-bars i:nth-child(2) { top: 8px; }
.hdw-menu-bars i:nth-child(3) { top: 14px; }
.hdw-nav-toggle.is-open .hdw-menu-bars i:nth-child(1) { top: 8px; transform: rotate(45deg); }
.hdw-nav-toggle.is-open .hdw-menu-bars i:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.hdw-nav-toggle.is-open .hdw-menu-bars i:nth-child(3) { top: 8px; transform: rotate(-45deg); }

.hdw-restaurant-timeline-section {
  --hdw-timeline-glow-y: 8%;
  background:
    radial-gradient(circle at 76% var(--hdw-timeline-glow-y), rgba(201,169,110,.105), transparent 22rem),
    #050505;
  overflow: clip;
}
.hdw-rtl-inner { max-width: 1220px; padding-inline: clamp(1.25rem,4vw,3.5rem); }
.hdw-rtl-header { max-width: 760px; margin-inline:auto; }
.hdw-rtl-track {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.82fr);
  align-items: start;
  gap: clamp(3rem,7vw,7rem);
}
.hdw-rtl-visual-stage {
  position: sticky;
  top: 105px;
  height: min(70vh, 720px);
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.hdw-rtl-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.045);
  clip-path: inset(100% 0 0 0 round 30px);
  transition: opacity .42s ease, transform .85s cubic-bezier(.22,1,.36,1), clip-path .62s cubic-bezier(.22,1,.36,1);
}
.hdw-rtl-visual.is-active { opacity: 1; transform: scale(1); clip-path: inset(0 0 0 0 round 30px); }
.hdw-rtl-visual img { width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.12) brightness(.72); }
.hdw-rtl-visual.is-archive {
  background:
    radial-gradient(circle at 50% 42%, rgba(201,169,110,.12), transparent 46%),
    #101010;
}
.hdw-rtl-visual.is-archive img {
  position:absolute;
  top:45%;
  left:50%;
  width:min(74%,440px);
  height:auto;
  aspect-ratio:3/2;
  object-fit:contain;
  transform:translate(-50%,-50%);
  box-shadow:0 22px 55px rgba(0,0,0,.48),0 0 0 1px rgba(255,255,255,.12);
}
.hdw-rtl-visual::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.08) 50%,rgba(0,0,0,.82));
}
.hdw-rtl-visual figcaption {
  position:absolute;
  z-index:2;
  inset:auto 28px 26px;
  color:rgba(255,255,255,.9);
  font-family:'Jura',sans-serif;
  font-size:.92rem;
  font-weight:600;
}
.hdw-rtl-visual figcaption span {
  display:block;
  margin-bottom:7px;
  color:#c9a96e;
  font-family:'Orbitron',sans-serif;
  font-size:.7rem;
  letter-spacing:.16em;
}
.hdw-rtl-visual-grid {
  position:absolute;
  z-index:3;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size:52px 52px;
  -webkit-mask-image:linear-gradient(180deg,#000,transparent 70%);
  mask-image:linear-gradient(180deg,#000,transparent 70%);
}
.hdw-rtl-story { position:relative; padding-left:34px; }
.hdw-rtl-story .hdw-rtl-line { left:0; transform:none; }
.hdw-rtl-ambient-year { display:none !important; }
.hdw-rtl-item,
.hdw-rtl-item.hdw-rtl-right {
  display:block;
  min-height:190px;
  margin:0 0 clamp(7rem,17vh,11rem);
  opacity:0;
}
.hdw-rtl-dot,
.hdw-rtl-right .hdw-rtl-dot {
  position:absolute;
  left:-40px;
  top:4px;
  width:14px;
  padding:0;
}
.hdw-rtl-card,
.hdw-rtl-right .hdw-rtl-card {
  width:100%;
  padding:24px 0 0 2px;
  border:0;
  border-top:1px solid rgba(255,255,255,.16);
  border-radius:0;
  background:none;
  box-shadow:none;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
  text-align:left;
  transform:translateY(28px);
  transition:opacity .44s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.hdw-rtl-item.hdw-rtl-visible .hdw-rtl-card { transform:translateY(0); }
.hdw-rtl-year { color:#c9a96e; font-size:clamp(2rem,4vw,3.2rem); letter-spacing:-.045em; }
.hdw-rtl-card-title { margin-top:.8rem; color:rgba(255,255,255,.9); font-size:.78rem; }
.hdw-rtl-card-text { max-width:38ch; color:rgba(255,255,255,.62); font-size:1rem; }

@media (max-width: 767px) {
  .hdw-rtl-track { display:block; }
  .hdw-rtl-visual-stage { display:none; }
  .hdw-rtl-story { padding-left:28px; }
  .hdw-rtl-item,
  .hdw-rtl-item.hdw-rtl-right { min-height:0; margin-bottom:5.5rem; }
  .hdw-rtl-item::before {
    content:'';
    display:block;
    height:165px;
    margin-bottom:22px;
    border-radius:20px;
    background-image:linear-gradient(180deg,transparent,rgba(0,0,0,.42)),var(--hdw-era-image);
    background-position:center;
    background-size:cover;
    filter:grayscale(1) contrast(1.1);
  }
  .hdw-rtl-dot,
  .hdw-rtl-right .hdw-rtl-dot { left:-34px; }
  .hdw-rtl-card,
  .hdw-rtl-right .hdw-rtl-card { padding:20px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hdw-rtl-visual { transition:none; }
  .hdw-menu-bars i { transition:none; }
}

/* ==============================================
   GLOBALE VERFIJNINGEN â€” warme coherentie
   ============================================== */

/* Kaarten: warme rand ipv hard grijs */
.border-gray-100 { border-color: var(--hdw-warm-mid) !important; }
.border-gray-200 { border-color: var(--hdw-warm-mid) !important; }

/* Tekst-kleuren: iets warmer */
.text-gray-900 { color: var(--hdw-ink) !important; }
.text-gray-700 { color: #3d3b36 !important; }
.text-gray-600 { color: var(--hdw-ink-muted) !important; }
.text-gray-500 { color: #7a776f !important; }
.text-gray-400 { color: var(--hdw-ink-faint) !important; }

/* Formulier inputs: warmere achtergrond en rand */
.hdw-input {
  background: #fffefb !important;
  border-color: var(--hdw-warm-mid) !important;
}
.hdw-input:focus {
  border-color: var(--hdw-ink) !important;
  box-shadow: 0 0 0 3px rgba(26,26,24,0.07) !important;
}

/* Vacature kaarten: warme achtergrond */
.hdw-vacature-card {
  background: #fffefb !important;
  border-color: var(--hdw-warm-mid) !important;
}
.hdw-vacature-card:hover,
.hdw-vacature-card.hdw-vac-open {
  border-color: var(--hdw-ink) !important;
}
.hdw-tag-outline {
  border-color: var(--hdw-warm-mid) !important;
  color: var(--hdw-ink-muted) !important;
  background: #fffefb !important;
}

/* Value icoon: donkere achtergrond zodat icoon leesbaar is */
.hdw-value-icon {
  background: var(--hdw-ink) !important;
  color: var(--hdw-warm-white) !important;
}

/* Carousel dots: warm */
.hdw-carousel-dot { background: var(--hdw-warm-mid) !important; }
.hdw-carousel-dot.active { background: var(--hdw-ink) !important; }

/* Ruimte kaarten op Ons Restaurant: warme rand */
.rounded-2xl.border.border-gray-100 {
  background: #fffefb !important;
}

/* Footer: iets donkerder warm antraciet (was neutral-800) */
footer.bg-neutral-800 {
  background-color: #1a1a18 !important;
}

/* Superscript kleur op lichte secties */
section .hdw-sr-super,
div .hdw-sr-super {
  color: var(--hdw-ink-faint) !important;
}
/* Superscript op donkere/foto-achtergrond blijft wit */
.hdw-restaurant-timeline-section .hdw-sr-super,
.hdw-rtl-super,
[style*="background:#000"] .hdw-sr-super {
  color: rgba(255,255,255,0.45) !important;
}

/* Dividers: warm */
.border-gray-100, .border-gray-200 { border-color: var(--hdw-warm-mid) !important; }

/* bg-gray-900 knoppen: iets warmer zwart */
.bg-gray-900 { background-color: var(--hdw-ink) !important; }
.hover\:bg-gray-700:hover { background-color: #2d2d2a !important; }

/* Pill-dots interieur slideshow */
.hdw-pill-dot { background: var(--hdw-warm-mid) !important; }
.hdw-pill-dot.active { background: var(--hdw-ink) !important; }

/* Scrollbar: warm */
::-webkit-scrollbar-track { background: var(--hdw-warm-light) !important; }
::-webkit-scrollbar-thumb { background: var(--hdw-warm-mid) !important; }

/* Over Ons timeline-item achtergrond: warm */
.hdw-timeline-item .hdw-timeline-line { background: var(--hdw-warm-light) !important; }

/* Person modal: warm wit */
.hdw-person-modal-sheet { background: #faf8f5 !important; }
.hdw-person-modal-close { background: var(--hdw-warm-light) !important; }
.hdw-person-modal-close:hover { background: var(--hdw-warm-mid) !important; }

/* bg-gray-50 sections: warm perkament */
section.bg-gray-50,
[class*="bg-gray-50"] { background-color: var(--hdw-warm-light) !important; }

/* pt-20 wrapper warm */
.hdw-menu-page.pt-20 {
  padding-top: 72px !important;
}
.bg-white.pt-20,
.bg-white.pt-24 {
  padding-top: 72px !important;
  background-color: var(--hdw-warm-white) !important;
}

/* Ruimte voor Robuust floating widget zodat het de content niet overlapt */
body { padding-bottom: env(safe-area-inset-bottom, 0); }
@media (max-width: 639px) {
  footer { padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0)) !important; }
}

/* =============================================
   CADEAUBON SECTIE
   ============================================= */
.hdw-cadeau-section {
  background: #1a1a18;
  padding: 64px 24px;
}
.hdw-cadeau-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.hdw-cadeau-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(201,169,110,0.10);
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdw-cadeau-text {
  flex: 1;
}
.hdw-cadeau-super {
  font-family: 'Jura', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9a96e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hdw-cadeau-h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.hdw-cadeau-body {
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  line-height: 1.75;
}
.hdw-cadeau-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c9a96e;
  color: #1a1a18;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: 'Jura', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s cubic-bezier(0.22,1,0.36,1), transform 0.2s cubic-bezier(0.22,1,0.36,1);
}
.hdw-cadeau-btn:hover {
  background: #b8935a;
  transform: scale(1.04);
}
@media (max-width: 720px) {
  .hdw-cadeau-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .hdw-cadeau-icon { width: 72px; height: 72px; }
}

/* =============================================
   QUICK LINKS BALK
   ============================================= */
/* =============================================
   QUICKLINKS â€” Apple-stijl navigatiekaarten
   ============================================= */
/* ============================================
   QUICKLINKS â€” 2 grote hero-kaarten + 2 compact
   ============================================ */
.hdw-ql-section { background: var(--hdw-warm-white,#faf8f5); }

/* Rij 1: 2 grote hero-kaarten naast elkaar */
.hdw-ql-hero-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

/* Hero-kaart met foto-achtergrond */
.hdw-ql-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.hdw-ql-hero:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }

/* Gradient overlay */
.hdw-ql-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
  transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1);
}
.hdw-ql-hero:hover .hdw-ql-hero-overlay { opacity: 0.85; }

/* Hero-kaart content */
.hdw-ql-hero-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
}
.hdw-ql-hero-super {
  font-family: 'Jura', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 7px;
}
.hdw-ql-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.hdw-ql-hero-desc {
  font-family: 'Jura', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
  line-height: 1.55;
  max-width: 30ch;
}
.hdw-ql-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jura', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9a96e;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s, gap 0.3s;
}
.hdw-ql-hero:hover .hdw-ql-hero-cta {
  background: rgba(201,169,110,0.25);
  border-color: rgba(201,169,110,0.7);
  gap: 10px;
}

/* Rij 2: 2 compacte kaarten */
.hdw-ql-compact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hdw-ql-compact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(237,232,224,0.9);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.hdw-ql-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07), 0 16px 32px rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.35);
}
.hdw-ql-compact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201,169,110,0.1);
  border-radius: 10px;
  color: #c9a96e;
  transition: background 0.28s cubic-bezier(0.22,1,0.36,1), transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.hdw-ql-compact:hover .hdw-ql-compact-icon { background: rgba(201,169,110,0.18); transform: scale(1.08); }
.hdw-ql-compact-text { flex: 1; min-width: 0; }
/* Share text tracks between the two photo cards, even when labels wrap. */
@media (min-width:641px) {
  .hdw-ql-hero-row { grid-template-rows: auto auto 1fr auto; row-gap:0; }
  .hdw-ql-hero-row > .hdw-ql-hero {
    display:grid;
    grid-row:1 / 5;
    grid-template-rows:subgrid;
    align-items:stretch;
    min-width:0;
    padding:28px;
  }
  .hdw-ql-hero-row > .hdw-ql-hero:first-child { grid-column:1; }
  .hdw-ql-hero-row > .hdw-ql-hero:nth-child(2) { grid-column:2; }
  .hdw-ql-hero-row .hdw-ql-hero-body {
    display:grid;
    grid-row:1 / 5;
    grid-template-rows:subgrid;
    padding:0;
    min-width:0;
  }
  .hdw-ql-hero-cta { justify-self:stretch; justify-content:center; text-align:center; }
}
.hdw-ql-compact-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hdw-ink,#1a1a18);
  margin-bottom: 3px;
}
.hdw-ql-compact-sub {
  display: block;
  font-family: 'Jura', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--hdw-ink-faint,#9e9b93);
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: break-word;
}
.hdw-ql-compact-arrow {
  font-size: 1rem;
  color: #c9a96e;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.hdw-ql-compact:hover .hdw-ql-compact-arrow { transform: translateX(4px); }

/* Responsive */
@media (max-width: 680px) {
  .hdw-ql-hero-row { grid-template-columns: 1fr; }
  .hdw-ql-hero { min-height: 220px; }
  .hdw-ql-compact-row { grid-template-columns: 1fr; gap: 10px; }
  .hdw-ql-compact-sub { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  .hdw-ql-hero, .hdw-ql-compact { transition: none; }
}

/* =============================================
   GROEPSBOEKINGEN SECTIE
   ============================================= */
.hdw-groep-section { background: var(--hdw-warm-white, #faf8f5); }
.hdw-groep-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hdw-groep-text {}
.hdw-groep-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hdw-groep-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jura', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: #374151;
}
.hdw-groep-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a96e;
  flex-shrink: 0;
}
.hdw-groep-btns {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 32px !important;
  align-items: center !important;
  width: 100% !important;
}
/* Zorg dat de knoppen nooit column worden door Tailwind sm:flex-row */
div.hdw-groep-btns > a { flex: 0 0 auto !important; }
.hdw-groep-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a1a18 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 9999px !important;
  font-family: 'Jura', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.28s cubic-bezier(0.22,1,0.36,1),
              transform 0.28s cubic-bezier(0.22,1,0.36,1) !important;
}
.hdw-groep-btn-primary:hover { background: #333 !important; transform: scale(1.04) !important; }
.hdw-groep-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: #1a1a18 !important;
  border: 2px solid #1a1a18 !important;
  padding: 14px 28px !important;
  border-radius: 9999px !important;
  font-family: 'Jura', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.28s cubic-bezier(0.22,1,0.36,1),
              color 0.28s cubic-bezier(0.22,1,0.36,1),
              transform 0.28s cubic-bezier(0.22,1,0.36,1) !important;
}
.hdw-groep-btn-secondary:hover { background: #1a1a18 !important; color: #fff !important; transform: scale(1.04) !important; }
.hdw-groep-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hdw-groep-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.hdw-groep-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #c9a96e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.hdw-groep-badge-num {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
.hdw-groep-badge-lbl {
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .hdw-groep-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hdw-groep-img-wrap { order: -1; }
  .hdw-groep-badge { bottom: -14px; left: 12px; }
}

/* =============================================
   BLOG POSTS OP HOMEPAGE
   ============================================= */
.hdw-cinema-hero.h-screen {
  height:100vh;
  padding-bottom:0;
}
.hdw-cinema-hero .hdw-hero-scroll { bottom:20px; }
.home .hdw-home-proof {
  margin-top:0;
  padding-top:32px;
}
.hdw-home-proof {
  position:relative;
  z-index:35;
  margin-top:-28px;
  padding:0 24px;
}
.hdw-home-proof-inner {
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  width:min(100%,1020px);
  margin:0 auto;
  overflow:hidden;
  border:0;
  border-bottom:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.hdw-home-proof-inner::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:rgba(83,70,51,.16); transform-origin:left;
  pointer-events:none;
}
.hdw-home-proof-inner.is-visible::after { animation:hdw-line-arrive .9s cubic-bezier(.22,1,.36,1) both; }
@keyframes hdw-line-arrive { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@media(prefers-reduced-motion:reduce) { .hdw-home-proof-inner.is-visible::after { animation:none; } }
.hdw-home-proof-item {
  display:flex;
  min-width:0;
  min-height:72px;
  align-items:center;
  gap:13px;
  padding:12px 26px 24px;
  justify-content:center;
  text-align:center;
  color:#292722;
  text-decoration:none;
}
.hdw-home-proof-item + .hdw-home-proof-item { border-left:0; }
.hdw-home-proof-icon {
  display:none;
  width:36px;
  height:36px;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#9a7540;
  background:#eee5d7;
  font-family:'Jura',sans-serif;
  font-size:.78rem;
  font-weight:800;
}
.hdw-home-proof-item strong,
.hdw-home-proof-item small { display:block; }
.hdw-home-proof-item strong { font-size:.84rem; font-weight:700; line-height:1.25; }
.hdw-home-proof-item small { margin-top:3px; color:#827d74; font-size:.72rem; line-height:1.3; }
a.hdw-home-proof-item { transition:background .2s ease; }
a.hdw-home-proof-item:hover { background:rgba(255,255,255,.72); }

.hdw-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
/* =============================================
   BLOG CARDS â€” editorial magazine stijl
   ============================================= */
.hdw-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(237,232,224,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition:
    transform 0.5s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.hdw-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(201,169,110,0.1);
}
/* Afbeelding */
.hdw-blog-card-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--hdw-warm-light, #f4f1ec);
}
.hdw-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.hdw-blog-card:hover .hdw-blog-card-img img { transform: scale(1.06); }
/* Mooie fallback â€” geen kaalkale rechthoek */
.hdw-blog-card-fallback {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(201,169,110,.28), transparent 28%),
    linear-gradient(145deg, #27231d 0%, #171715 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdw-blog-card-fallback::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -25%;
  opacity: .34;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1.25px);
  background-size: 11px 11px;
  transform: rotate(-12deg);
  -webkit-mask-image: linear-gradient(120deg, #000, transparent 68%);
  mask-image: linear-gradient(120deg, #000, transparent 68%);
}
.hdw-blog-card-img .hdw-blog-card-fallback-logo {
  position:relative;
  z-index:1;
  width:clamp(68px,8vw,92px);
  height:auto;
  object-fit:contain;
  opacity:.82;
  filter:invert(78%) sepia(22%) saturate(820%) hue-rotate(356deg) brightness(90%);
  transition:transform .7s cubic-bezier(.22,1,.36,1),opacity .4s ease;
}
.hdw-blog-card:hover .hdw-blog-card-fallback-logo { transform:scale(1.06); opacity:.96; }
.hdw-blog-all-button {
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 24px;
  border-radius:999px;
  color:#fff;
  background:#1d1d1f;
  box-shadow:0 12px 30px rgba(29,29,31,.14);
  font-family:'Jura',sans-serif;
  font-size:.86rem;
  font-weight:650;
  text-decoration:none;
  transition:transform .22s cubic-bezier(.22,1,.36,1),background .22s ease,box-shadow .22s ease;
}
.hdw-blog-all-button span { transition:transform .22s ease; }
.hdw-blog-all-button:hover { transform:translateY(-2px); background:#333336; box-shadow:0 16px 36px rgba(29,29,31,.2); }
.hdw-blog-all-button:hover span { transform:translateX(3px); }
/* Categorie badge */
.hdw-blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26,26,24,0.8);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  color: #fff;
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
}
/* Body */
.hdw-blog-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Meta rij: datum + leestijd */
.hdw-blog-card-date {
  font-family: 'Jura', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hdw-ink-faint, #9e9b93);
  text-transform: uppercase;
  margin: 0 0 10px;
}
/* Titel â€” HDW Orbitron */
.hdw-blog-card-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  color: var(--hdw-ink, #1a1a18);
  margin: 0 0 10px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
/* Excerpt */
.hdw-blog-card-excerpt {
  font-family: 'Jura', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hdw-ink-muted, #5c5a55);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
/* Lees meer link */
.hdw-blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jura', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-top: 18px;
  transition: gap 0.28s cubic-bezier(0.22,1,0.36,1);
}
.hdw-blog-card:hover .hdw-blog-card-cta { gap: 10px; }
@media (max-width: 1100px) {
  .hdw-blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .hdw-home-proof { margin-top:-18px; padding-inline:14px; }
  .hdw-home-proof-inner { grid-template-columns:1fr; border-radius:0; }
  .hdw-home-proof-item { min-height:52px; padding:10px 8px; text-align:left; justify-content:flex-start; }
  .hdw-home-proof-item > span:last-child { display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; }
  .hdw-home-proof-item small { margin:0; max-width:160px; text-align:right; }
  .hdw-home-proof-item + .hdw-home-proof-item { border:0; }
  .hdw-home-proof-icon { width:32px; height:32px; }
  .hdw-blog-grid { grid-template-columns: 1fr; }
  .hdw-blog-card-title { font-size: 1.15rem; }
}

/* =============================================
   SINGLE POST â€” wrapper & nav
   ============================================= */
.hdw-single-wrap { padding-top: 80px; }

.hdw-single-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background: var(--hdw-warm-white, #faf8f5);
  border-bottom: 1px solid var(--hdw-warm-mid, #ede8e0);
}
.hdw-single-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jura', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hdw-ink-muted, #5c5a55);
  text-decoration: none;
  transition: color 0.2s;
}
.hdw-single-nav-back:hover { color: var(--hdw-ink, #1a1a18); }
.hdw-single-nav-divider,
.hdw-single-nav-cat {
  font-family: 'Jura', sans-serif;
  font-size: 0.75rem;
  color: var(--hdw-ink-faint, #9e9b93);
}
.hdw-single-nav-cat { font-weight: 600; }

/* Verberg Jetpack share buttons op single posts */
.sharedaddy, .sd-social-icon, .sd-block.sd-social { display: none !important; }

/* HERO */
.hdw-single-hero { position: relative; overflow: hidden; }
.hdw-single-hero--img { height: clamp(360px, 60vh, 680px); }
.hdw-single-hero-bg { position: absolute; inset: 0; }
.hdw-single-hero-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hdw-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.78) 100%);
}
.hdw-single-hero--dark {
  background: linear-gradient(150deg, #1a1410 0%, #1a1a18 60%, #0f1117 100%);
  padding: clamp(80px,14vw,140px) 0 clamp(64px,10vw,100px);
}
.hdw-single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hdw-single-hero--img .hdw-single-hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: clamp(32px, 5vw, 56px);
}
.hdw-single-hero-cat {
  display: inline-block;
  font-family: 'Jura', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.hdw-single-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  max-width: 760px;
}
.hdw-single-hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jura', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.hdw-single-hero-dot { opacity: 0.4; }

/* ARTICLE twee-koloms */
.hdw-single-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  align-items: start;
}
/* Sidebar */
.hdw-single-sidebar { position: sticky; top: 100px; padding-right: 48px; }
.hdw-single-sidebar-label {
  font-family: 'Jura', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hdw-ink-faint, #9e9b93);
  margin: 0 0 4px;
}
.hdw-single-sidebar-val {
  font-family: 'Jura', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hdw-ink, #1a1a18);
  margin: 0;
  line-height: 1.4;
}
.hdw-single-sidebar-divider {
  height: 1px;
  background: var(--hdw-warm-mid, #ede8e0);
  margin: 28px 0;
}
.hdw-single-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jura', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a18;
  padding: 10px 16px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.22,1,0.36,1), transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.hdw-single-sidebar-cta:hover { background: #c9a96e; transform: translateY(-2px); }

/* Content */
.hdw-single-content { min-width: 0; }
.hdw-single-lead {
  font-family: 'Jura', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.7;
  color: var(--hdw-ink-muted, #5c5a55);
  margin: 0 0 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hdw-warm-mid, #ede8e0);
}
/* Prose */
.hdw-prose { font-family: 'Jura', sans-serif; font-weight: 500; font-size: 1rem; color: #374151; line-height: 1.85; }
.hdw-prose p   { margin: 0 0 1.5em; }
.hdw-prose h2  { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: clamp(0.9rem,2vw,1.1rem); letter-spacing: 0.02em; text-transform: uppercase; color: var(--hdw-ink,#1a1a18); margin: 2.2em 0 0.7em; line-height: 1.3; }
.hdw-prose h3  { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: clamp(0.8rem,1.8vw,0.95rem); letter-spacing: 0.02em; text-transform: uppercase; color: var(--hdw-ink,#1a1a18); margin: 1.8em 0 0.5em; }
.hdw-prose ul  { list-style: none; padding: 0; margin: 0 0 1.5em; }
.hdw-prose ul li { padding-left: 1.4em; position: relative; margin-bottom: 0.5em; }
.hdw-prose ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: #c9a96e; }
.hdw-prose ol  { padding-left: 1.4em; margin: 0 0 1.5em; }
.hdw-prose li  { margin-bottom: 0.5em; }
.hdw-prose a   { color: var(--hdw-ink,#1a1a18); text-decoration: underline; text-underline-offset: 3px; }
.hdw-prose blockquote { position: relative; border: none; padding: 28px 32px 28px 44px; margin: 2em 0; background: var(--hdw-warm-light,#f4f1ec); border-radius: 16px; font-family: 'Jura', sans-serif; font-size: 1rem; font-style: normal; font-weight: 600; color: var(--hdw-ink-muted,#5c5a55); line-height: 1.7; }
.hdw-prose blockquote::before { content: '\201C'; position: absolute; left: 16px; top: 12px; font-size: 3rem; line-height: 1; color: #c9a96e; opacity: 0.6; }
.hdw-prose img { width: 100%; border-radius: 16px; margin: 1.8em 0; display: block; }
.hdw-prose figure { margin: 1.8em 0; }
.hdw-prose figcaption { font-size: 0.78rem; color: var(--hdw-ink-faint,#9e9b93); text-align: center; margin-top: 8px; font-style: italic; }
.hdw-prose hr { border: none; border-top: 1px solid var(--hdw-warm-mid,#ede8e0); margin: 2.5em 0; }
/* Tags */
.hdw-single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--hdw-warm-mid,#ede8e0); }
.hdw-single-tag { font-family: 'Jura', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--hdw-ink-muted,#5c5a55); background: var(--hdw-warm-light,#f4f1ec); padding: 5px 12px; border-radius: 9999px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.hdw-single-tag:hover { background: var(--hdw-warm-mid,#ede8e0); color: var(--hdw-ink,#1a1a18); }
/* Gerelateerde verhalen */
.hdw-single-related { background: var(--hdw-warm-light,#f4f1ec); padding: 80px 0; }
.hdw-single-related-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.hdw-single-related-super { font-family: 'Jura', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c9a96e; margin: 0 0 8px; }
.hdw-single-related-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: clamp(1rem,2.5vw,1.4rem); letter-spacing: 0.02em; text-transform: uppercase; color: var(--hdw-ink,#1a1a18); margin: 0; }
/* Responsive single */
@media (max-width: 860px) {
  .hdw-single-article { grid-template-columns: 1fr; padding: 40px 24px 64px; }
  .hdw-single-sidebar { position: static; padding-right: 0; padding-bottom: 32px; border-bottom: 1px solid var(--hdw-warm-mid,#ede8e0); margin-bottom: 36px; display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
  .hdw-single-sidebar-inner { display: contents; }
  .hdw-single-nav { padding: 10px 20px; }
  .hdw-single-hero-content { padding: 0 20px; }
  .hdw-single-related-inner { padding: 0 20px; }
}
@media (max-width: 540px) {
  .hdw-single-hero--img { height: clamp(300px,55vh,460px); }
  .hdw-single-hero-title { font-size: clamp(1.4rem,6vw,2rem); }
}

/* =============================================
   ULTRA PREMIUM REFINEMENT â€” Huis de Wiers met Apple-achtige rust
   ============================================= */
:root {
  --hdw-font: 'Jura', sans-serif;
  --hdw-font-display: 'Orbitron', sans-serif;
  --hdw-radius: 24px;
  --hdw-shadow-soft: 0 18px 60px rgba(28, 25, 21, 0.10);
}

body.hdw-body,
body.hdw-body *:not(.material-icons):not(h1):not(h2):not(h3):not(h4) {
  font-family: var(--hdw-font) !important;
}

body.hdw-body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}

body.hdw-body h1,
body.hdw-body h2,
body.hdw-body h3,
body.hdw-body h4 {
  font-family: var(--hdw-font-display) !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
}

body.hdw-body h1 { font-weight: 650 !important; }
body.hdw-body h2 { font-weight: 640 !important; }
body.hdw-body h3,
body.hdw-body h4 { font-weight: 620 !important; }

.hdw-page-h1 {
  font-size: clamp(2rem, 5vw, 3.9rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
}
.hdw-page-h2,
.hdw-section-h2,
.hdw-cta-h2 {
  font-size: clamp(1.7rem, 3.8vw, 3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
}
.hdw-sr-super {
  font-size: 0.69rem !important;
  font-weight: 650 !important;
  letter-spacing: 0.19em !important;
  text-transform: uppercase !important;
}

/* Compacte, glasachtige hoofdnavigatie */
.hdw-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9000;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.hdw-nav-shell {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}
.hdw-nav-desktop {
  height: 72px;
  display: grid;
  grid-template-columns: 100px 1fr 110px;
  align-items: center;
  gap: 24px;
}
.hdw-nav-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  line-height: 0;
}
.hdw-nav-logo {
  display: block;
  width: auto;
  height: 32px;
  transition: filter .3s ease, opacity .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.hdw-nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
}
.hdw-nav-item { position: relative; }
.hdw-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 520 !important;
  letter-spacing: -0.005em;
  text-decoration: none;
  opacity: .82;
  transition: opacity .22s ease;
}
.hdw-nav-chevron {
  position: relative;
  top: -1px;
  font-size: .78rem;
  transition: transform .24s ease;
}
.hdw-has-dropdown:hover .hdw-nav-chevron,
.hdw-has-dropdown:focus-within .hdw-nav-chevron { transform: rotate(180deg); }
.hdw-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 218px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 16px;
  background: rgba(250,249,247,.94);
  box-shadow: 0 18px 48px rgba(31,27,22,.14);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  backdrop-filter: blur(28px) saturate(145%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px) scale(.98);
  transform-origin: 50% 0;
  transition: opacity .2s ease, visibility .2s ease, transform .28s cubic-bezier(.22,1,.36,1);
}
.hdw-nav-dropdown::before {
  content: '';
  position: absolute;
  inset: -14px 0 auto;
  height: 16px;
}
.hdw-has-dropdown:hover .hdw-nav-dropdown,
.hdw-has-dropdown:focus-within .hdw-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.hdw-nav-dropdown a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  border-radius: 10px;
  color: #363638 !important;
  font-size: .8rem;
  font-weight: 560 !important;
  text-decoration: none;
  transition: background .18s ease, padding .22s ease;
}
.hdw-nav-dropdown a:hover,
.hdw-nav-dropdown a:focus-visible {
  padding-left: 14px;
  background: rgba(29,29,31,.065);
  outline: none;
}
.hdw-nav-link::after { display: none !important; }
.hdw-nav-link:hover,
.hdw-nav-link.hdw-nav-active { opacity: 1; }
.hdw-nav-link.hdw-nav-active { font-weight: 650 !important; }
.hdw-nav-reserve {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #1d1d1f;
  font-size: 0.8rem;
  font-weight: 620 !important;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.hdw-nav-reserve:hover {
  background: #333336;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.17);
}
.hdw-nav-mobile { display: none; height: 72px; align-items: center; justify-content: space-between; }
.hdw-nav-mobile-actions { display:flex; align-items:center; gap:8px; }
.hdw-mobile-header-reserve {
  display:inline-flex;
  min-height:40px;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  color:#fff;
  background:#1d1d1f;
  box-shadow:0 7px 22px rgba(0,0,0,.12);
  font-size:.76rem;
  font-weight:650;
  text-decoration:none;
  transition:transform .2s cubic-bezier(.22,1,.36,1),background .25s ease,color .25s ease;
}
.hdw-mobile-header-reserve:active { transform:scale(.97); }
.hdw-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hdw-mobile-backdrop {
  position:fixed;
  z-index:1;
  inset:72px 0 0;
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:rgba(242,239,234,.74);
  -webkit-backdrop-filter:blur(38px) saturate(140%);
  backdrop-filter:blur(38px) saturate(140%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease,visibility .28s ease;
}
body.hdw-mobile-nav-open .hdw-mobile-backdrop {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.hdw-mobile-panel {
  position:relative;
  z-index:2;
  background: rgba(247, 245, 241, .86);
  -webkit-backdrop-filter: blur(34px) saturate(165%);
  backdrop-filter: blur(34px) saturate(165%);
  border-top: 1px solid rgba(0,0,0,.055);
  box-shadow: 0 28px 70px rgba(28, 24, 18, .18);
}
body.hdw-mobile-nav-open {
  overflow: hidden;
}
body.hdw-mobile-nav-open .hdw-mobile-panel {
  min-height: calc(100dvh - 72px);
}
.hdw-mobile-panel-inner {
  width: min(100% - 40px, 560px);
  margin: 0 auto;
  padding: 28px 0 max(34px, env(safe-area-inset-bottom));
}
.hdw-mobile-kicker {
  margin: 0 0 20px;
  color: #8a8781;
  font-size: .68rem;
  font-weight: 650 !important;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hdw-mobile-main-links { display: grid; gap: 8px; }
.hdw-mobile-main-links a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border: 1px solid rgba(29,29,31,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  color: #1d1d1f;
  font-size: clamp(1.12rem, 5vw, 1.35rem);
  font-weight: 580 !important;
  letter-spacing: -.045em;
  line-height: 1.12;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 7px 20px rgba(37,31,22,.035);
  transition: background .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hdw-mobile-main-links a:hover,
.hdw-mobile-main-links a:focus-visible { background:rgba(255,255,255,.92); border-color:rgba(29,29,31,.14); box-shadow:inset 0 1px 0 #fff,0 12px 28px rgba(37,31,22,.08); }
.hdw-mobile-main-links a::after { content: 'â†’'; color: #8a8781; font-size: 1rem; }
.hdw-mobile-main-links a:active { transform: scale(.985); background: #fff; border-color: rgba(29,29,31,.16); }
.hdw-mobile-sub-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin: 26px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hdw-mobile-sub-links a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  border-radius: 16px;
  background: rgba(29,29,31,.04);
  color: #6e6e73;
  font-size: .85rem;
  font-weight: 520 !important;
  text-decoration: none;
}
.hdw-mobile-sub-links a::after { content: 'â€º'; color: #a3a19c; font-size: 1rem; }
.hdw-mobile-sub-links a:active { background: rgba(29,29,31,.09); }
.hdw-mobile-reserve {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: #1d1d1f;
  font-size: .9rem;
  font-weight: 620 !important;
  text-decoration: none;
}

/* Homepage: minder elementen, meer rust en Ã©Ã©n duidelijke focus */
.hdw-hero-content { top: 0; }
.hdw-hero-mark {
  height: clamp(145px, 17vw, 220px);
  transform: translateY(-38px);
  margin-bottom: -20px;
}
.hdw-home-hero-title {
  font-size: clamp(2.15rem, 4.7vw, 4rem) !important;
  font-weight: 640 !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
  text-shadow: 0 2px 28px rgba(0,0,0,.28);
}
.hdw-home-hero-lead {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 440 !important;
  line-height: 1.55;
  letter-spacing: 0;
}
.hdw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.hdw-hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 25px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 580 !important;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.hdw-hero-button:hover { transform: translateY(-1px); }
.hdw-hero-button--primary { color: #1d1d1f; background: rgba(255,255,255,.96); }
.hdw-hero-button--primary:hover { background: #fff; }
.hdw-hero-button--secondary { color: #fff; background: rgba(0,0,0,.12); backdrop-filter: blur(14px); }
.hdw-hero-button--secondary:hover { color: #1d1d1f; background: #fff; }
.hdw-hero-scroll {
  position: absolute;
  z-index: 30;
  bottom: 22px;
  left: 50%;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: 0;
  transform: translateX(-50%);
  cursor: pointer;
}

/* Rustiger materiaalgebruik */
.rounded-2xl,
.rounded-3xl,
.hdw-blog-card,
.hdw-vacature-card { border-radius: var(--hdw-radius) !important; }
.shadow-xl,
.shadow-2xl { box-shadow: var(--hdw-shadow-soft) !important; }

@media (max-width: 979px) {
  .hdw-nav-shell { width: min(100% - 32px, 720px); }
  .hdw-nav-desktop { display: none; }
  .hdw-nav-mobile { display: flex; }
  #hdw-mobile-menu.open { max-height: calc(100vh - 72px); }
}

@media (min-width: 980px) {
  .hdw-mobile-panel,
  .hdw-mobile-backdrop { display: none !important; }
}

@media (max-width: 640px) {
  .hdw-hero-content { top: 0; }
  .hdw-hero-mark { height: 124px; transform: translateY(-24px); margin-bottom: -10px; }
  .hdw-home-hero-title { font-size: clamp(1.85rem, 9vw, 2.55rem) !important; }
  .hdw-home-hero-lead { max-width: 330px; font-size: .98rem; }
  .hdw-hero-actions { width: min(100%, 330px); margin: 24px auto 0; }
  .hdw-hero-button { width: 100%; min-height: 47px; }
  .hdw-hero-scroll { bottom: 12px; }
  .hdw-page-h1 { font-size: clamp(1.8rem, 9vw, 2.65rem) !important; }
  .hdw-page-h2,
  .hdw-section-h2,
  .hdw-cta-h2 { font-size: clamp(1.55rem, 7.5vw, 2.25rem) !important; }
}

/* =============================================
   LIQUID GLASS MOTION & 3D DEPTH
   ============================================= */
.hdw-motion-ready .hdw-fade-up.hdw-will-animate {
  opacity: 0;
  filter: blur(12px) saturate(.85);
  transform: translate3d(0, 30px, 0) scale(.982);
  transition:
    opacity .82s cubic-bezier(.22,1,.36,1),
    filter .95s cubic-bezier(.22,1,.36,1),
    transform .95s cubic-bezier(.16,1,.3,1);
}
.hdw-motion-ready .hdw-fade-up.hdw-will-animate.is-visible {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0,0,0) scale(1);
}

.hdw-tab-bar {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.82);
  background:
    linear-gradient(135deg, rgba(255,255,255,.68), rgba(235,232,227,.52)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -1px 0 rgba(30,25,20,.04);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  backdrop-filter: blur(28px) saturate(145%);
}
#hdw-tab-pill {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.72)) !important;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(75,65,52,.04),
    0 1px 4px rgba(52,43,31,.07);
  transition:
    left .46s cubic-bezier(.22,1,.36,1),
    width .46s cubic-bezier(.22,1,.36,1) !important;
}
.hdw-tab-btn { transition: color .22s ease, opacity .22s ease; }
.hdw-tab-btn:hover { color: #1d1d1f; }
.hdw-tab-btn.active,
.hdw-tab-highlight.active { color: #1d1d1f !important; }

.hdw-nav-reserve,
.hdw-mobile-reserve,
.hdw-hero-button--secondary,
.hdw-carousel-prev,
.hdw-carousel-next {
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
}

@media (prefers-reduced-motion: reduce) {
  .hdw-motion-ready .hdw-fade-up,
  .hdw-menu-row.hdw-item-visible,
  .hdw-menu-item.hdw-item-visible,
  .hdw-menu-row.hdw-item-visible > *,
  .hdw-menu-item.hdw-item-visible > *,
  #hdw-tab-pill {
    animation: none !important;
    transition-duration: .01ms !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Final cascade: snelle interacties en Ã©Ã©n consistente capsulevorm. */
.hdw-fade-up.hdw-delay-1 { transition-delay:.02s !important; }
.hdw-fade-up.hdw-delay-2 { transition-delay:.04s !important; }
.hdw-fade-up.hdw-delay-3 { transition-delay:.06s !important; }
.hdw-fade-up.hdw-delay-4 { transition-delay:.08s !important; }
.hdw-motion-ready .hdw-fade-up.hdw-will-animate {
  filter:none;
  transform:translate3d(0,14px,0);
  transition:opacity .42s cubic-bezier(.22,1,.36,1),transform .46s cubic-bezier(.22,1,.36,1);
}
.hdw-motion-ready .hdw-fade-up.hdw-will-animate.is-visible { filter:none; transform:translate3d(0,0,0); }
.hdw-hero-button,
.hdw-mobile-reserve { border:0 !important; border-radius:999px !important; }
.hdw-hero-button--primary { box-shadow:0 7px 24px rgba(0,0,0,.15); }
.hdw-hero-button--secondary {
  color:#fff;
  background:rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.24),0 7px 24px rgba(0,0,0,.11);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
  backdrop-filter:blur(16px) saturate(135%);
}
.hdw-hero-button--secondary:hover { color:#fff; background:rgba(255,255,255,.24); }
.hdw-mobile-main-links a { border:0; border-radius:999px; background:rgba(255,255,255,.68); box-shadow:none; }
.hdw-mobile-sub-links a { border-radius:999px; }

/* Eindverfijning: groot merkteken, directe diepte en grafische historie. */
.hdw-hero-mark {
  height: clamp(220px, 21vw, 282px);
  transform: translateY(-48px);
  margin-bottom: -26px;
}

.hdw-nav-item { perspective: 900px; }
.hdw-nav-link {
  cursor: pointer;
  transition: opacity .18s ease, transform .22s cubic-bezier(.22,1,.36,1);
}
.hdw-nav-link:hover,
.hdw-nav-link:focus-visible { opacity:1; transform:translateY(-1px); }
.hdw-nav-dropdown {
  transform: translate(-50%,-10px) scale(.94) rotateX(-7deg);
  transform-origin:50% 0;
}
.hdw-has-dropdown:hover .hdw-nav-dropdown,
.hdw-has-dropdown:focus-within .hdw-nav-dropdown {
  transform:translate(-50%,2px) scale(1.025) rotateX(0);
}
.hdw-nav-dropdown a:hover,
.hdw-nav-dropdown a:focus-visible { transform:translateX(3px) scale(1.015); }
.hdw-nav-reserve { transition:transform .22s cubic-bezier(.22,1,.36,1),box-shadow .22s ease,background .2s ease; }
.hdw-nav-reserve:hover,
.hdw-nav-reserve:focus-visible { transform:translateY(-2px) scale(1.035); box-shadow:0 9px 24px rgba(0,0,0,.16); }

.hdw-restaurant-timeline-section::before,
.hdw-restaurant-timeline-section::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hdw-restaurant-timeline-section::before {
  z-index:0;
  opacity:.22;
  background-image:radial-gradient(circle,rgba(255,255,255,.36) 1px,transparent 1.35px);
  background-size:11px 11px;
  -webkit-mask-image:linear-gradient(115deg,transparent 4%,#000 32%,transparent 62%);
  mask-image:linear-gradient(115deg,transparent 4%,#000 32%,transparent 62%);
}
.hdw-restaurant-timeline-section::after {
  z-index:0;
  height:42%;
  opacity:.075;
  background:url('https://res.cloudinary.com/db4jtt6gg/image/upload/v1772468655/Huis_de_Wiers_1910-643510627_xzv4ug.jpg') center 18%/cover no-repeat;
  filter:grayscale(1) contrast(1.5);
  mix-blend-mode:screen;
  -webkit-mask-image:linear-gradient(180deg,#000,transparent 92%);
  mask-image:linear-gradient(180deg,#000,transparent 92%);
}
.hdw-rtl-inner { position:relative; z-index:1; }

.hdw-history-epilogue {
  position:relative;
  overflow:hidden;
  padding-top:clamp(5rem,9vw,8rem);
  padding-bottom:clamp(5rem,9vw,8rem);
  color:#fff;
  background:#050505;
}
.hdw-history-epilogue::before {
  content:'';
  position:absolute;
  inset:0;
  opacity:.13;
  pointer-events:none;
  background-image:radial-gradient(circle,rgba(201,169,110,.55) 1px,transparent 1.2px);
  background-size:13px 13px;
  -webkit-mask-image:linear-gradient(140deg,transparent 45%,#000);
  mask-image:linear-gradient(140deg,transparent 45%,#000);
}
.hdw-history-epilogue > div { position:relative; z-index:1; }
.hdw-history-epilogue-copy { max-width:720px; margin:0 auto clamp(2.5rem,6vw,4.5rem); text-align:center; }
.hdw-history-epilogue-copy .hdw-page-h2 { color:#fff; margin:.7rem 0 1.1rem; }
.hdw-history-epilogue-copy > p:last-child { color:rgba(255,255,255,.62); font-size:1.05rem; }
.hdw-history-epilogue .hdw-interior-slider {
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 34px 90px rgba(0,0,0,.42);
}
.hdw-history-epilogue .hdw-pill-dot { background:rgba(255,255,255,.24) !important; }
.hdw-history-epilogue .hdw-pill-dot.active { background:#c9a96e !important; }

.hdw-reserve-launch {
  min-height:520px;
  display:grid;
  place-items:center;
  padding-top:clamp(5rem,9vw,8rem);
  padding-bottom:clamp(5rem,9vw,8rem);
}
.hdw-reserve-launch-card {
  width:min(100%,760px);
  padding:clamp(2rem,6vw,4.5rem);
  border-radius:32px;
  text-align:center;
  background:linear-gradient(145deg,#fff,#f2eee8);
  box-shadow:0 32px 90px rgba(36,30,22,.11),inset 0 1px 0 #fff;
}
.hdw-reserve-launch-card .hdw-sr-super { color:#8a7350 !important; }
.hdw-reserve-launch-card .hdw-page-h2 { margin:.7rem 0 1rem; color:#1a1a18; }
.hdw-reserve-launch-card > p:not(.hdw-sr-super) { max-width:540px; margin:0 auto 2rem; color:#68645d; font-size:1.02rem; line-height:1.65; }
.hdw-reserve-launch-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  color:#fff;
  background:#171715;
  border:0;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 12px 34px rgba(0,0,0,.18);
  transition:transform .24s cubic-bezier(.22,1,.36,1),box-shadow .24s ease;
}
.hdw-reserve-launch-button:hover,
.hdw-reserve-launch-button:focus-visible { transform:translateY(-3px) scale(1.035); box-shadow:0 18px 42px rgba(0,0,0,.23); }
.hdw-reserve-launch-button span { transition:transform .22s ease; }
.hdw-reserve-launch-button:hover span { transform:translateX(3px); }
.hdw-reserve-phone { display:block; width:max-content; max-width:100%; margin:1.25rem auto 0; color:#56524c; font-size:.9rem; text-underline-offset:4px; }

@media (max-width: 767px) {
  .hdw-hero-mark { height:170px; transform:translateY(-34px); margin-bottom:-10px; }
  .hdw-restaurant-timeline-section { padding-top:4.25rem; padding-bottom:4.25rem; }
  .hdw-rtl-header { margin-bottom:2.7rem; }
  .hdw-rtl-item,
  .hdw-rtl-item.hdw-rtl-right { margin-bottom:3rem; }
  .hdw-rtl-item::before { height:142px; margin-bottom:17px; border-radius:18px; }
  .hdw-rtl-card,
  .hdw-rtl-right .hdw-rtl-card { padding-top:16px; }
  .hdw-rtl-card-text { line-height:1.58; font-size:.95rem; }
  .hdw-history-epilogue { padding-top:4.5rem; padding-bottom:4.5rem; }
  .hdw-history-epilogue-copy { margin-bottom:2.25rem; }
  .hdw-history-epilogue .hdw-interior-slider { border-radius:22px; }
  .hdw-reserve-launch { min-height:430px; }
  .hdw-reserve-launch-card { border-radius:26px; }
  .hdw-reserve-launch-button { width:100%; }
}

@media (hover:hover) and (pointer:fine) {
  .hdw-tab-btn:hover { transform:translateY(-2px) scale(1.045); }
  .hdw-tab-btn:active { transform:translateY(0) scale(.98); }
}

/* Homepage-diepte: tastbaar op desktop, rustig en stabiel op touch. */
@media (hover:hover) and (pointer:fine) {
  .hdw-carousel-slide {
    position:relative;
    z-index:1;
    transition:transform .5s cubic-bezier(.22,1,.36,1),filter .4s ease;
    transform-origin:50% 58%;
  }
  .hdw-carousel-slide:hover {
    z-index:4;
    transform:perspective(1100px) translateY(-10px) scale(1.035) rotateX(1.7deg);
    filter:drop-shadow(0 24px 24px rgba(35,28,19,.16));
  }
  .hdw-carousel-slide:hover img { transform:scale(1.085) !important; }
  .hdw-ql-hero {
    transform-origin:50% 70%;
    transform-style:preserve-3d;
  }
  .hdw-ql-hero::after {
    content:'';
    position:absolute;
    z-index:1;
    inset:-45% -30%;
    pointer-events:none;
    opacity:0;
    transform:translate3d(-20%,18%,36px) rotate(-12deg);
    background:linear-gradient(110deg,transparent 38%,rgba(255,255,255,.19) 49%,transparent 60%);
    transition:opacity .35s ease,transform .7s cubic-bezier(.22,1,.36,1);
  }
  .hdw-ql-hero-body { z-index:2; transform:translateZ(28px); transition:transform .5s cubic-bezier(.22,1,.36,1); }
  .hdw-ql-hero:hover {
    transform:perspective(1100px) translateY(-11px) scale(1.035) rotateX(1.4deg) !important;
    box-shadow:0 32px 72px rgba(24,19,13,.28);
  }
  .hdw-ql-hero:hover::after { opacity:1; transform:translate3d(18%,-12%,36px) rotate(-12deg); }
  .hdw-ql-hero:hover .hdw-ql-hero-body { transform:translateZ(42px) translateY(-3px); }
  .hdw-ql-compact:hover {
    transform:perspective(900px) translateY(-7px) scale(1.025) rotateX(1.5deg) !important;
    box-shadow:0 25px 58px rgba(40,31,19,.15);
  }
  .hdw-blog-card:hover {
    transform:perspective(1000px) translateY(-8px) scale(1.018) rotateX(1deg) !important;
    box-shadow:0 28px 64px rgba(31,25,18,.16) !important;
  }
  .hdw-ev-card:hover {
    transform:perspective(1000px) translateY(-7px) scale(1.015) rotateX(1deg) !important;
    box-shadow:0 26px 60px rgba(31,25,18,.17) !important;
  }
}

.hdw-reserve-launch { display:block; min-height:0; }
.hdw-reserve-layout { width:min(100%,1120px); margin:0 auto; }
.hdw-reserve-info-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.hdw-reserve-info-grid article {
  min-height:220px;
  padding:28px;
  border:1px solid #e9e3da;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  box-shadow:inset 0 1px 0 #fff;
}
.hdw-reserve-info-label {
  margin:0 0 14px;
  color:#9a7a45;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hdw-reserve-info-grid h3 { margin:0 0 12px; color:#1a1a18; font-size:1rem; line-height:1.35; }
.hdw-reserve-info-grid article > p:not(.hdw-reserve-info-label) { margin:0 0 18px; color:#6b6760; font-size:.9rem; line-height:1.65; }
.hdw-reserve-info-grid a,
.hdw-reserve-info-grid span { color:#1a1a18; font-size:.84rem; font-weight:700; text-underline-offset:4px; }

.hdw-pagination {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:56px;
}
.hdw-pagination .page-numbers {
  min-width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border:0;
  border-radius:999px;
  color:#58544d;
  background:#fff;
  box-shadow:inset 0 0 0 1px #e8e2d9;
  font-size:.82rem;
  font-weight:650;
  text-decoration:none;
  transition:transform .2s cubic-bezier(.22,1,.36,1),background .2s ease,color .2s ease,box-shadow .2s ease;
}
.hdw-pagination a.page-numbers:hover,
.hdw-pagination a.page-numbers:focus-visible { transform:translateY(-2px); color:#171715; background:#fff; box-shadow:inset 0 0 0 1px #d6c7b0,0 10px 24px rgba(35,29,21,.1); }
.hdw-pagination .page-numbers.current { color:#fff; background:#171715; box-shadow:none; }
.hdw-pagination .prev,
.hdw-pagination .next { padding-inline:20px; }

@media (max-width:767px) {
  .hdw-reserve-info-grid { grid-template-columns:1fr; gap:10px; }
  .hdw-reserve-info-grid article { min-height:0; padding:23px; border-radius:20px; }
  .hdw-pagination { gap:6px; margin-top:42px; }
  .hdw-pagination .page-numbers { min-width:39px; height:39px; padding:0 11px; }
  .hdw-pagination .prev,
  .hdw-pagination .next { width:100%; max-width:150px; }
}

/* Reserveren: grafische achtergrond achter de direct geopende Robuust-flow. */
.hdw-reserve-launch {
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 12%,rgba(201,169,110,.13),transparent 24rem),
    linear-gradient(180deg,#faf8f5,#f1ece4);
}
.hdw-reserve-launch::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:radial-gradient(circle,rgba(68,54,36,.32) 1px,transparent 1.25px);
  background-size:12px 12px;
  -webkit-mask-image:linear-gradient(130deg,#000,transparent 42%);
  mask-image:linear-gradient(130deg,#000,transparent 42%);
}
.hdw-reserve-layout { position:relative; z-index:1; }
.hdw-reserve-scene {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,.82fr);
  min-height:460px;
  overflow:hidden;
  border-radius:34px;
  color:#fff;
  background:#11110f;
  box-shadow:0 38px 100px rgba(31,25,17,.22);
}
.hdw-reserve-scene-copy {
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:clamp(2.5rem,6vw,5rem);
}
.hdw-reserve-scene-copy .hdw-sr-super { color:#c9a96e !important; }
.hdw-reserve-scene-copy .hdw-page-h2 { margin:.8rem 0 1.2rem; color:#fff; }
.hdw-reserve-scene-copy > p:not(.hdw-sr-super) { max-width:43ch; margin:0 0 2rem; color:rgba(255,255,255,.64); font-size:1rem; line-height:1.7; }
.hdw-reserve-scene-art {
  position:relative;
  min-height:100%;
  overflow:hidden;
  background-image:linear-gradient(90deg,#11110f 0%,transparent 42%),linear-gradient(180deg,transparent,rgba(0,0,0,.48)),var(--hdw-reserve-scene-image);
  background-position:center;
  background-size:cover;
}
.hdw-reserve-scene-art::before {
  content:'';
  position:absolute;
  inset:0;
  opacity:.28;
  background-image:radial-gradient(circle,rgba(255,255,255,.55) 1px,transparent 1.2px);
  background-size:10px 10px;
  -webkit-mask-image:linear-gradient(145deg,#000,transparent 66%);
  mask-image:linear-gradient(145deg,#000,transparent 66%);
}
.hdw-reserve-scene-art span,
.hdw-reserve-scene-art strong { position:absolute; z-index:1; right:28px; color:#fff; }
.hdw-reserve-scene-art span { bottom:31px; font-size:.66rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; }
.hdw-reserve-scene-art strong { bottom:42px; color:rgba(255,255,255,.16); font-family:'Orbitron',sans-serif; font-size:clamp(5rem,9vw,8rem); letter-spacing:-.08em; }
.hdw-reserve-scene .hdw-reserve-launch-button {
  align-self:flex-start;
  min-width:220px;
  margin-top:1.25rem;
  color:#161614;
  background:#fff;
  box-shadow:0 14px 38px rgba(0,0,0,.25);
}
.hdw-reserve-launch-button[hidden] {
  display:inline-flex !important;
  visibility:hidden !important;
  pointer-events:none !important;
}
.hdw-reserve-facts {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:.2rem;
}
.hdw-reserve-facts span {
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  color:rgba(255,255,255,.72);
  background:rgba(255,255,255,.07);
  font-size:.72rem;
  font-weight:650;
  letter-spacing:.015em;
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
.hdw-reserve-good-to-know {
  display:grid;
  grid-template-columns:minmax(220px,.62fr) minmax(0,1.38fr);
  gap:clamp(2rem,5vw,5rem);
  margin-top:18px;
  padding:clamp(2rem,4vw,3.4rem);
  border:1px solid #e8e1d7;
  border-radius:28px;
  background:rgba(255,255,255,.66);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
}
.hdw-reserve-good-heading h2 {
  max-width:11ch;
  margin:0;
  color:#1a1a18;
  font-family:'Orbitron',sans-serif;
  font-size:clamp(1.25rem,2.2vw,1.85rem);
  font-weight:700;
  line-height:1.15;
  letter-spacing:-.035em;
}
.hdw-reserve-faq details {
  border-top:1px solid #e5ddd2;
  transition:border-color .35s cubic-bezier(.22,1,.36,1);
}
.hdw-reserve-faq details:last-child { border-bottom:1px solid #e5ddd2; }
.hdw-reserve-faq summary {
  display:flex;
  min-height:58px;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#25231f;
  font-size:.92rem;
  font-weight:680;
  cursor:pointer;
  list-style:none;
  transition:color .32s ease,padding-left .42s cubic-bezier(.22,1,.36,1);
}
.hdw-reserve-faq summary::-webkit-details-marker { display:none; }
.hdw-reserve-faq summary span { color:#9a7a45; font-size:1.15rem; transition:transform .24s ease; }
.hdw-reserve-faq details[open] summary span { transform:rotate(45deg); }
.hdw-reserve-faq details[open] { border-color:#cdbb9e; }
.hdw-reserve-faq details[open] > p { animation:hdw-faq-reveal .46s cubic-bezier(.22,1,.36,1) both; }
.hdw-reserve-faq details p {
  max-width:62ch;
  margin:-2px 28px 20px 0;
  color:#6b6760;
  font-size:.88rem;
  line-height:1.7;
}
.hdw-reserve-faq details p a { color:#25231f; font-weight:650; text-underline-offset:3px; }
@media (hover:hover) and (pointer:fine) {
  .hdw-reserve-faq summary:hover,
  .hdw-reserve-faq details[open] summary { color:#8a6c3d; padding-left:10px; }
}
@keyframes hdw-faq-reveal {
  from { opacity:0; transform:translateY(-7px); }
  to { opacity:1; transform:translateY(0); }
}
.hdw-reserve-info-grid { align-items:stretch; }
.hdw-reserve-info-grid article { display:flex; flex-direction:column; }
.hdw-reserve-info-grid article > a,
.hdw-reserve-info-grid article > span { margin-top:auto; }

@media (max-width:767px) {
  .hdw-reserve-scene { grid-template-columns:1fr; min-height:0; border-radius:26px; }
  .hdw-reserve-scene-copy { padding:2.1rem 1.6rem 2.25rem; }
  .hdw-reserve-scene-copy .hdw-page-h2 { max-width:100%; font-size:1.55rem !important; line-height:1.1 !important; letter-spacing:-.035em !important; }
  .hdw-reserve-scene-copy > p:not(.hdw-sr-super) { margin-bottom:1.5rem; }
  .hdw-reserve-scene-art { grid-row:1; min-height:225px; background-image:linear-gradient(180deg,transparent 45%,#11110f),var(--hdw-reserve-scene-image); }
  .hdw-reserve-scene-art strong { font-size:4.7rem; }
  .hdw-reserve-scene .hdw-reserve-launch-button { width:100%; min-width:0; min-height:50px; margin-top:1.15rem; padding-inline:20px; font-size:.82rem; }
  .hdw-reserve-facts { gap:6px; }
  .hdw-reserve-facts span { min-height:30px; padding-inline:10px; font-size:.68rem; }
  .hdw-reserve-good-to-know { grid-template-columns:1fr; gap:1.4rem; padding:1.6rem 1.35rem; border-radius:22px; }
  .hdw-reserve-good-heading h2 { max-width:14ch; }
  .hdw-reserve-faq summary { min-height:56px; font-size:.86rem; }
}

/* Menukaart: warm papier, subtiel erfgoedmerk en duidelijke horizontale tabs. */
.hdw-menu-page { background:#f3eee7; }
/* Restore the quiet, centered menu header; retain assets for recovery. */
#hdw-menu-hero .hdw-dish-scene { display:none; }
#hdw-menu-hero .hdw-menu-hero-composition { display:flex; justify-content:center; min-height:clamp(380px,55vh,640px); }
#hdw-menu-hero .hdw-menu-hero-copy { align-items:center; text-align:center; width:100%; }
#hdw-menu-hero .hdw-menu-hero-copy h1 { max-width:24ch; }
.hdw-menu-page .hdw-menu-sheet::before,
.hdw-menu-page .hdw-menu-paper::before { display:none; }

/* Editorial rhythm and architectural linework, drawn from the vaulted rooms. */
#hdw-features .hdw-section-intro h2 { max-width:24ch; margin-inline:auto; text-wrap:balance; }
#hdw-features { padding-bottom:32px; }
#hdw-carousel-dots { gap:0; }
#hdw-carousel-dots .hdw-carousel-dot { width:36px; height:44px; border:0; border-radius:0; background:transparent !important; transform:none; display:grid; place-items:center; }
#hdw-carousel-dots .hdw-carousel-dot::before { content:''; width:6px; height:6px; border-radius:999px; background:#c9c3b9; transition:width .2s ease,background .2s ease; }
#hdw-carousel-dots .hdw-carousel-dot.active::before { width:20px; background:#292721; }
.hdw-slide-link { display:table; margin:14px auto 0; color:#665034; font-size:.85rem; font-weight:700; text-underline-offset:5px; }
.hdw-slide-link span { display:inline-block; margin-left:5px; transition:transform .2s ease; }
.hdw-slide-link:hover { text-decoration:underline; }
.hdw-slide-link:hover span { transform:translate(2px,-2px); }
.hdw-film-toggle { position:absolute; z-index:12; right:clamp(18px,3vw,48px); bottom:42px; display:flex; align-items:center; gap:9px; min-height:44px; padding:10px 17px; border-radius:999px; color:#fff; background:rgba(20,20,18,.52); border:1px solid rgba(255,255,255,.22); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); cursor:pointer; font-family:'Jura',sans-serif; font-size:.75rem; }
.hdw-film-toggle[hidden] { display:none; }
.hdw-film-toggle:hover { background:rgba(20,20,18,.75); }
.hdw-film-toggle--quiet:not(:focus-visible) { clip-path:inset(50%); width:1px; height:1px; min-height:0; padding:0; overflow:hidden; white-space:nowrap; }
.hdw-menu-hero-composition { display:grid; grid-template-columns:1.1fr 1fr; align-items:center; gap:clamp(24px,5vw,80px); width:min(100% - 72px,1200px); min-height:clamp(380px,55vh,640px); margin:auto; padding:38px 0; }
.hdw-menu-hero-copy { align-items:flex-start; padding:0; text-align:left; }
.hdw-menu-hero-copy h1 { font-size:clamp(2rem,3.8vw,3.5rem) !important; line-height:1.12; text-wrap:balance; }
.hdw-dish-scene { perspective:1200px; padding:20px 12px; }
.hdw-dish-frame { position:relative; aspect-ratio:4/3; border-radius:48% 48% 22px 22px; transform:rotateY(-8deg) rotateX(3deg) rotateZ(2deg); box-shadow:12px 20px 0 -6px rgba(201,169,110,.18),0 32px 70px rgba(0,0,0,.35); }
.hdw-dish-frame::after { content:''; position:absolute; inset:0; border-radius:inherit; border:1px solid rgba(255,255,255,.4); background:linear-gradient(125deg,rgba(255,255,255,.16),transparent 40%,rgba(34,25,10,.04)); pointer-events:none; }
.hdw-dish-frame img { display:block; width:100%; height:100%; aspect-ratio:4/3; object-fit:cover; border-radius:inherit; }
.hdw-dish-signature { position:absolute; bottom:-16px; right:18px; z-index:1; padding:13px 20px; border-radius:14px; background:#eeeadf; color:#302b22; font-family:'Orbitron',sans-serif; font-size:.7rem; box-shadow:0 8px 26px rgba(0,0,0,.15); transform:translateZ(28px); }
.hdw-dish-signature span { display:block; margin-top:4px; color:#77684f; font-family:'Jura',sans-serif; font-size:.7rem; }
.hdw-dish-scene.is-visible .hdw-dish-frame { animation:hdw-dish-arrive 1.1s cubic-bezier(.16,1,.3,1) both; }
@keyframes hdw-dish-arrive { from { transform:translateY(28px) rotateY(-22deg) rotateX(12deg) rotateZ(3deg) scale(.92); } to { transform:rotateY(-8deg) rotateX(3deg) rotateZ(2deg); } }
@media(max-width:767px) {
  .hdw-menu-hero-composition { width:calc(100% - 44px); min-height:0; grid-template-columns:1fr; gap:8px; padding:34px 0 28px; }
  .hdw-menu-hero-copy { align-items:center; text-align:center; }
  .hdw-menu-hero-copy h1 { font-size:1.8rem !important; max-width:18ch; }
  .hdw-menu-hero-copy .hdw-page-lead { font-size:.86rem; }
  .hdw-dish-scene { width:min(70%,260px); margin:auto; padding:8px 8px 20px; }
  .hdw-dish-signature { bottom:-12px; right:0; padding:9px 13px; font-size:.56rem; }
  .hdw-dish-signature span { font-size:.6rem; }
}
@media(prefers-reduced-motion:reduce) { .hdw-dish-scene.is-visible .hdw-dish-frame { animation:none; transform:none; } }
.hdw-table-intro { position:relative; isolation:isolate; overflow:hidden; min-height:280px; padding:55px 0 42px; }
.hdw-table-eyebrow { display:block; margin-bottom:18px; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:#866b44; font-weight:700; }
.hdw-table-intro h2 { position:relative; z-index:1; margin:0; font-family:'Orbitron',sans-serif; font-size:clamp(2.1rem,4.4vw,3.7rem); font-weight:600; line-height:1.12; letter-spacing:-.045em; color:#22221e; }
.hdw-table-intro h2 span { color:#897653; }
.hdw-table-intro p { position:relative; z-index:1; margin-top:22px; color:#68645d; line-height:1.65; font-size:1rem; }
.hdw-vault-lines { position:absolute; z-index:0; width:48%; height:auto; right:2%; bottom:-5px; stroke:#b5a07c; stroke-width:1; opacity:.34; pointer-events:none; }
.hdw-table-intro.is-visible .hdw-vault-lines path { animation:hdw-draw-vault 1.2s cubic-bezier(.22,1,.36,1) both; stroke-dasharray:1; }
.hdw-vault-lines path:nth-child(2) { animation-delay:.08s !important; }
.hdw-vault-lines path:nth-child(3) { animation-delay:.16s !important; }
.hdw-vault-lines path:nth-child(4) { animation-delay:.24s !important; }
.hdw-vault-lines path:nth-child(5) { animation-delay:.32s !important; }
@keyframes hdw-draw-vault { from { stroke-dashoffset:1; opacity:0; } to { stroke-dashoffset:0; opacity:1; } }
:where(a,button,summary,input,textarea,select):focus-visible { outline:2px solid #a58147; outline-offset:5px; }
@media(max-width:640px) {
  .hdw-film-toggle { bottom:44px; right:16px; padding:9px 13px; }
  .hdw-film-label { display:none; }
  .hdw-film-toggle > [aria-hidden] { width:18px; text-align:center; font-size:1rem; }
  .hdw-table-intro { min-height:0; padding:24px 4px 30px; }
  .hdw-table-intro p { max-width:27ch; font-size:.92rem; }
  .hdw-vault-lines { width:70%; right:-30%; opacity:.2; }
}
@media(prefers-reduced-motion:reduce) {
  .hdw-table-intro.is-visible .hdw-vault-lines path { animation:none; }
  .hdw-slide-link span { transition:none; }
}
.hdw-menu-sheet {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(90deg,transparent calc(50% - 510px),rgba(201,169,110,.18) calc(50% - 509px),transparent calc(50% - 508px)),
    linear-gradient(90deg,transparent calc(50% + 508px),rgba(201,169,110,.18) calc(50% + 509px),transparent calc(50% + 510px)),
    radial-gradient(ellipse at 50% 0%,#555546 0,transparent 55rem),
    #34372f;
}
.hdw-menu-sheet::before {
  content:'';
  position:absolute;
  z-index:-1;
  top:8rem;
  left:50%;
  width:min(72vw,760px);
  aspect-ratio:1;
  background-image:var(--hdw-menu-mark);
  background-position:center top;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.035;
  filter:brightness(0);
  transform:translateX(-50%);
  pointer-events:none;
}
.hdw-menu-paper {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:clamp(1.4rem,4vw,3.25rem);
  border:1px solid rgba(128,103,67,.24);
  border-radius:34px;
  background:linear-gradient(115deg,#f4eadb,#ede1cf 70%,#f3e8d8);
  box-shadow:0 24px 65px rgba(12,17,12,.2),inset 0 1px 0 rgba(255,255,255,.65);
}
.hdw-menu-paper::before {
  content:'';
  position:absolute;
  z-index:0;
  top:8.5rem;
  left:50%;
  width:min(72%,620px);
  aspect-ratio:1;
  background-image:var(--hdw-menu-mark);
  background-position:center top;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.045;
  filter:brightness(0);
  transform:translateX(-50%);
  pointer-events:none;
}
.hdw-menu-paper > * { position:relative; z-index:1; }
.hdw-menu-paper .hdw-menu-row { border-color:rgba(123,105,80,.12) !important; }
.hdw-menu-paper .hdw-highlight-block,
.hdw-menu-paper .bg-gray-50 {
  border:1px solid rgba(141,111,70,.24);
  background:linear-gradient(135deg,#e6d6bb,#eaddc8) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
}
.hdw-menu-paper h3.border-b { border-color:rgba(128,103,67,.35); padding-bottom:14px; }
.hdw-menu-paper .text-gray-500,
.hdw-menu-paper .text-gray-400 { color:#726653 !important; }
.hdw-menu-paper .hdw-menu-row { transition:background-color .22s ease; }
@media (hover:hover) {
  .hdw-menu-paper .hdw-menu-row:hover { background-color:rgba(150,119,70,.065); }
}
@media (prefers-reduced-motion:reduce) {
  .hdw-menu-paper .hdw-menu-row { transition:none; }
}
.hdw-menu-tabs-scroll {
  scroll-margin-top:88px;
  scrollbar-width:none;
  overscroll-behavior-inline:contain;
}
.hdw-menu-tabs-scroll::-webkit-scrollbar { display:none; }

@media (max-width:979px) {
  .hdw-motion-ready .hdw-fade-up.hdw-will-animate {
    filter:none !important;
    transform:translate3d(0,10px,0);
    transition-duration:.32s,.36s !important;
  }
  .hdw-will-animate .hdw-menu-row,
  .hdw-will-animate .hdw-menu-item {
    filter:none !important;
    transform:translateY(9px) !important;
    transition:opacity .34s cubic-bezier(.22,1,.36,1) !important,transform .38s cubic-bezier(.22,1,.36,1) !important;
  }
  .hdw-menu-row.hdw-item-visible > *,
  .hdw-menu-item.hdw-item-visible > * {
    animation-name:hdw-menu-row-in-mobile !important;
    animation-duration:.38s !important;
  }
}
@keyframes hdw-menu-row-in-mobile {
  from { opacity:0; transform:translateY(9px); }
  to { opacity:1; transform:translateY(0); }
}
@media (max-width:640px) {
  .hdw-nav-shell { width:calc(100% - 24px); }
  .hdw-mobile-header-reserve { min-height:40px; padding-inline:14px; font-size:.72rem; }
  .hdw-nav-mobile-actions { gap:4px; }
  .hdw-menu-sheet { padding-inline:10px !important; }
  .hdw-menu-paper { padding:1.35rem 1rem 1.7rem; border-radius:24px; }
  .hdw-menu-sheet::before { top:7rem; width:115vw; opacity:.03; }
  .hdw-menu-tabs-scroll {
    justify-content:flex-start !important;
    margin-inline:-1rem;
    padding-inline:1rem 3.5rem;
    -webkit-mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 46px),transparent 100%);
    mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 46px),transparent 100%);
    scroll-snap-type:x proximity;
  }
  .hdw-menu-tabs-scroll .hdw-tab-btn { scroll-snap-align:start; }
}

/* =============================================
   COOKIE CONSENT â€” permanente heropenknop verbergen
   De Complianz-banner en voorkeurenmodal blijven beschikbaar wanneer nodig.
   ============================================= */
html body #cmplz-manage-consent,
html body #cmplz-manage-consent .cmplz-manage-consent,
html body .cmplz-manage-consent,
html body button.cmplz-manage-consent,
html body .cmplz-manage-consent-container {
  display: none !important;
}
