/* ============================================================
   SAGE ENSCHEDE, Design system
   Donkere basis, goud accent. Aziatisch fine dining.
   ============================================================ */

@font-face {
  font-family: "Birdrockers";
  src: url("../fonts/birdrockers.woff") format("woff"),
       url("../fonts/birdrockers.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-sans: "Open Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: "DM Serif Display", ui-serif, Georgia, serif;
  --font-script: "Birdrockers", "Brush Script MT", cursive;

  --bg-deep: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: rgba(255, 255, 255, 0.03);
  --gold: #b59968;
  --gold-light: #c4b892;
  --gold-dark: #8f7a52;
  --gold-soft: rgba(181, 153, 104, 0.6);
  --gold-muted: rgba(181, 153, 104, 0.15);
  --text-heading: #ffffff;
  --text-body: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border-subtle: rgba(181, 153, 104, 0.2);

  --header-h: 100px;
  --radius: 4px;

  color-scheme: dark;
}

@media (min-width: 1024px) {
  :root { --header-h: 130px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--bg-deep); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--bg-deep); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sage-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
}
.sage-skip:focus { left: 12px; top: 12px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.container--narrow { max-width: 1100px; }
.container--tight  { max-width: 900px; }
.container--text   { max-width: 760px; }

.section {
  position: relative;
  padding-block: clamp(72px, 10vw, 120px);
}
.section--soft { background: var(--bg-soft); }
.section--deep { background: var(--bg-deep); }
.section--compact { padding-block: clamp(64px, 9vw, 100px); }
.section--flush-bottom { padding-bottom: 0; }

.swirl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../img/swirl-pattern-goud.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow--center { justify-content: center; }
.gold-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
  margin-top: 20px;
}
.subsection-title {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}
.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: center;
  display: inline-block;
}
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.is-hidden { display: none !important; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--primary:hover { background: var(--gold); color: var(--bg-deep); }

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: transparent; color: var(--gold); }

.btn--ghost {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--small { padding: 12px 20px; font-size: 12px; }

/* Een knoppenrij houdt altijd minimaal 32px afstand tot de tekst erboven. */
.btn-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  margin-top: 32px;
}
.btn-row:first-child { margin-top: 0; }
@media (min-width: 640px) {
  .btn-row { flex-direction: row; align-items: center; flex-wrap: wrap; }
}
.btn-row--center { justify-content: center; }

.sage-mt { margin-top: 32px; }

.gold-link {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gold-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.gold-link:hover::after { transform: scaleX(1); transform-origin: left; }
.gold-link svg { transition: transform .3s ease; }
.gold-link:hover svg { transform: translateX(4px); }

/* ---------- Kaarten ---------- */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transform: translateZ(0);
  transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}
a.card:hover, .card--hover:hover {
  border-color: var(--gold-soft);
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 20px 50px -20px rgba(181, 153, 104, .25);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    filter .8s cubic-bezier(.16,1,.3,1),
    transform .8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}
.reveal.in-view { opacity: 1; filter: blur(0); transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; filter: none; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; filter: none; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 10, 10, .92);
  border-bottom-color: var(--border-subtle);
}
.site-header.is-scrolled::before,
.site-header.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.site-header__logo img,
.site-header__logo svg { height: 90px; width: auto; }
@media (min-width: 1024px) {
  .site-header__logo img,
  .site-header__logo svg { height: 110px; }
}

.nav-primary { display: none; }
@media (min-width: 1024px) {
  .nav-primary { display: flex; align-items: center; gap: 40px; }
}
.nav-primary ul { list-style: none; display: flex; align-items: center; gap: 40px; }
.nav-primary li { position: relative; }
.nav-primary a {
  font-size: 14px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .7);
  transition: color .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary .current-menu-ancestor > a,
.nav-primary .current_page_item > a { color: var(--gold); }

.nav-primary .sub-menu {
  position: absolute;
  left: 0; top: 100%;
  margin-top: 12px;
  min-width: 200px;
  padding: 8px 0;
  display: block;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 50;
}
.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-primary .sub-menu li { width: 100%; }
.nav-primary .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-body);
  transition: background-color .2s ease, color .2s ease;
}
.nav-primary .sub-menu a:hover { background: rgba(255, 255, 255, .05); color: var(--gold); }

.site-header__actions { display: flex; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .site-header__actions { gap: 24px; } }
.site-header__cta { display: none; }
@media (min-width: 1024px) { .site-header__cta { display: inline-flex; padding: 12px 20px; font-size: 12px; } }

.nav-toggle { color: var(--gold); display: inline-flex; padding: 4px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle .icon-close { display: none; }
.site-header.is-open .nav-toggle .icon-open { display: none; }
.site-header.is-open .nav-toggle .icon-close { display: block; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 10, 10, .97);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.site-header.is-open .nav-mobile { display: block; }
@media (min-width: 1024px) { .site-header.is-open .nav-mobile { display: none; } }
.nav-mobile ul { list-style: none; }
.nav-mobile > .container > ul { padding-block: 24px; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  color: rgba(255, 255, 255, .9);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .sub-menu { padding-left: 18px; border-left: 1px solid var(--border-subtle); }
.nav-mobile .sub-menu a { font-size: 16px; font-family: var(--font-sans); color: var(--text-body); }
.nav-mobile__cta { margin-top: 16px; width: 100%; }

/* Taalkiezer */
.lang-switch { position: relative; }
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  transition: opacity .3s ease;
}
.lang-switch__toggle:hover { opacity: .8; }
.lang-switch__list {
  position: absolute;
  right: 0; top: 100%;
  margin-top: 12px;
  min-width: 200px;
  padding: 8px 0;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  list-style: none;
  z-index: 50;
  display: none;
}
.lang-switch.is-open .lang-switch__list { display: block; }
.lang-switch__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-body);
  transition: background-color .2s ease, color .2s ease;
}
.lang-switch__list a:hover { background: rgba(255, 255, 255, .05); }
.lang-switch__list .is-active a { color: var(--gold); }
.lang-switch__label { display: inline-flex; align-items: center; gap: 8px; }
.lang-switch__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) - 4px);
  background: var(--bg-deep);
  isolation: isolate;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(.85);
  transition: opacity .6s ease;
  z-index: 0;
}
.hero.has-video.is-video-ready .hero__poster { opacity: 0; }
.hero__media {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, calc(100svh * 16 / 9));
  height: max(100svh, calc(100vw * 9 / 16));
  transform: translate3d(-50%, -50%, 0) scale(1.04);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero.is-video-ready .hero__media { opacity: 1; }
.hero__media iframe,
.hero__media video {
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.60) 45%, rgba(10,10,10,.70) 75%, rgba(10,10,10,.90) 100%);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 160px rgba(0,0,0,.65), inset 0 0 0 1px rgba(181,153,104,.08);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding-block: 96px;
}
.hero__title {
  font-family: var(--font-serif);
  color: #fff;
  line-height: 1.05;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__text {
  margin: 28px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero__text { font-size: 18px; } }
.hero__buttons { margin-top: 40px; justify-content: center; }
.hero__rating { margin-top: 40px; }
.hero__rating .rating { align-items: center; justify-content: center; }
.hero__rating .rating__stars { padding-top: 0; }
.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
  z-index: 2;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: var(--gold);
  transform-origin: top;
  animation: sage-pulse 2.4s ease-in-out infinite;
}
.hero__scroll span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes sage-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

.rating {
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .65);
  transition: color .3s ease;
}
.rating > span:last-child { min-width: 0; }
a.rating:hover { color: var(--gold); }
.rating__stars { display: inline-flex; color: var(--gold); flex-shrink: 0; padding-top: 2px; }
.rating__stars svg { fill: currentColor; stroke: currentColor; }

/* ============================================================
   PAGINAKOP (subpagina's)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 45vh;
  min-height: 340px;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
@media (min-width: 640px)  { .page-hero { height: 50vh; } }
@media (min-width: 1024px) { .page-hero { height: 55vh; } }
.page-hero__image {
  position: absolute;
  inset: -6% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.75) 50%, rgba(10,10,10,.95) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}
@media (min-width: 640px) { .page-hero__content { padding: 0 32px; } }
.page-hero__breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(181, 153, 104, .85);
  margin-bottom: 32px;
}
.page-hero__breadcrumb a { transition: color .25s ease; }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb .sep { margin: 0 12px; color: rgba(181, 153, 104, .5); }
.page-hero__title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 40px;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 24px;
}
@media (min-width: 640px)  { .page-hero__title { font-size: 48px; } }
@media (min-width: 1024px) { .page-hero__title { font-size: 64px; } }
.page-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .page-hero__subtitle { font-size: 18px; } }

@keyframes page-hero-fade {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.page-hero__fade { opacity: 0; animation: page-hero-fade .8s cubic-bezier(.16,1,.3,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .page-hero__fade { opacity: 1; animation: none; }
}

/* ============================================================
   SECTIE: USP's / kernwaarden
   ============================================================ */
.usps__head { max-width: 800px; margin-inline: auto; text-align: center; }
.usps__head .section-subtitle { margin-inline: auto; }
.usps__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(56px, 7vw, 80px);
}
@media (min-width: 640px)  { .usps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usps__grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .usps__grid--3 { grid-template-columns: repeat(3, 1fr); } }

.usp {
  --icon-size: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(0px, 2vw, 32px) 32px;
}
@media (min-width: 1024px) { .usp { --icon-size: 64px; } }
.usp__divider-v {
  display: none;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(181, 153, 104, .2);
  transition: background .3s ease;
}
@media (min-width: 1024px) {
  .usp__divider-v { display: block; }
  .usp:hover .usp__icon { transform: scale(1.08); }
  .usp:hover .usp__divider-v,
  .usp:hover + .usp .usp__divider-v { background: rgba(181, 153, 104, .45); }
}
.usp__divider-h {
  display: block;
  width: 40px; height: 1px;
  background: rgba(181, 153, 104, .35);
  margin: 0 auto 48px;
}
@media (min-width: 640px)  { .usp__divider-h { margin-bottom: 0; } }
@media (min-width: 1024px) { .usp__divider-h { display: none; } }
.usp__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--gold);
  margin: 8px 0 32px;
  transition: transform .3s ease;
}
.usp__icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.usp__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
  white-space: pre-line;
}
.usp__body { font-size: 15px; line-height: 1.6; color: var(--text-body); max-width: 240px; }

/* Variant: kaarten */
.usps__grid--cards { gap: 24px; }
@media (min-width: 768px) { .usps__grid--cards { gap: 32px; } }
.usps__grid--cards .usp {
  align-items: flex-start;
  text-align: left;
  padding: 32px;
}
.usps__grid--cards .usp__icon { width: 32px; height: 32px; margin: 0 0 20px; }
.usps__grid--cards .usp__icon svg { stroke-width: 1.5; }
.usps__grid--cards .usp__title { font-size: 1.4rem; margin-bottom: 12px; }
.usps__grid--cards .usp__body { max-width: none; }
.usps__grid--cards .usp__divider-v,
.usps__grid--cards .usp__divider-h { display: none; }

/* Variant: kernwaarden met lijnen */
.usps__grid--values {
  border-top: 1px solid rgba(181, 153, 104, .2);
  margin-top: 56px;
}
@media (min-width: 768px) { .usps__grid--values { grid-template-columns: repeat(4, 1fr); } }
.usps__grid--values .usp {
  align-items: flex-start;
  text-align: left;
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(181, 153, 104, .2);
}
@media (min-width: 768px) {
  .usps__grid--values .usp { border-bottom: 0; border-right: 1px solid rgba(181, 153, 104, .2); padding-inline: 32px; }
  .usps__grid--values .usp:first-child { padding-left: 0; }
  .usps__grid--values .usp:last-child  { padding-right: 0; border-right: 0; }
}
.usps__grid--values .usp__icon { width: 24px; height: 24px; margin: 0 0 56px; }
.usps__grid--values .usp__icon svg { stroke-width: 1.5; }
.usps__grid--values .usp__title { font-size: clamp(1.5rem, 2.5vw, 1.75rem); margin-bottom: 16px; }
.usps__grid--values .usp__body { font-size: 14px; max-width: none; }
.usps__grid--values .usp__divider-v,
.usps__grid--values .usp__divider-h { display: none; }

/* ============================================================
   SECTIE: grote kaarten (twee concepten)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .cards-grid { gap: 32px; }
  .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.big-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.big-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.big-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.big-card:hover .big-card__media img { transform: scale(1.05); }
.big-card__wash {
  position: absolute; inset: 0;
  mix-blend-mode: overlay;
  opacity: .4;
  background: linear-gradient(180deg, transparent 0%, rgba(181,153,104,.35) 100%);
}
.big-card__pill {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, .35);
}
.big-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 32px;
}
@media (min-width: 768px) { .big-card__body { padding: 40px; } }
.big-card__title { margin-bottom: 16px; }
.big-card__text { color: rgba(255, 255, 255, .65); font-size: 15.5px; line-height: 1.7; }
.big-card__price {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.big-card__link { margin-top: auto; padding-top: 32px; }

/* Kleine linkkaart (zonder beeld) */
.link-card { display: block; padding: 32px; }
@media (min-width: 768px) { .link-card { padding: 40px; } }
.link-card__rule { display: block; width: 60px; height: 1px; background: var(--gold); }
.link-card .eyebrow { margin-top: 24px; margin-bottom: 0; }
.link-card__title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-top: 16px;
}
.link-card__text { margin-top: 16px; color: var(--text-body); }
.link-card .gold-link { margin-top: 32px; }

/* ============================================================
   SECTIE: beeld + tekst
   ============================================================ */
.media-text__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .media-text__grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
}
.media-text--wide .media-text__grid { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .media-text--3-2 .media-text__grid { grid-template-columns: 3fr 2fr; gap: 80px; }
}
.media-text__media.is-first { order: -1; }
.media-text__image { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border-subtle); }
.media-text__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-text__body p + p { margin-top: 20px; }
.media-text__body { color: rgba(255, 255, 255, .75); line-height: 1.8; }
.media-text__body h2, .media-text__body h3 { margin-bottom: 24px; }

/* Portret met gouden kader */
.framed { position: relative; aspect-ratio: 4 / 5; }
.framed img.framed__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.framed img.framed__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Grote parallax-sectie (This is how we roll) */
.showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  min-height: min(90svh, 880px);
  height: 90svh;
  display: flex;
  align-items: center;
}
.showcase__bg {
  position: absolute; inset: 0;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
}
.showcase__bg img,
.showcase__bg video { width: 100%; height: 100%; object-fit: cover; }
.showcase__overlay { position: absolute; inset: 0; pointer-events: none; }
@media (max-width: 767px) {
  .showcase__overlay {
    background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.80) 100%);
  }
}
@media (min-width: 768px) {
  .showcase__overlay {
    background: linear-gradient(90deg, rgba(10,10,10,.10) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.80) 100%);
  }
  .showcase--left .showcase__overlay {
    background: linear-gradient(270deg, rgba(10,10,10,.10) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.80) 100%);
  }
}
.showcase__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 80px;
}
@media (min-width: 768px) {
  .showcase__inner { justify-content: flex-end; }
  .showcase--left .showcase__inner { justify-content: flex-start; }
}
.showcase__content { max-width: 520px; width: 100%; text-align: center; }
@media (min-width: 768px) { .showcase__content { text-align: left; } }
.showcase__label {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 18px;
  letter-spacing: .02em;
}
@media (min-width: 768px) { .showcase__label { font-size: 19px; } }
.showcase__script {
  display: block;
  margin-top: 16px;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
}
.showcase__text { margin-top: 24px; color: rgba(255, 255, 255, .8); line-height: 1.85; font-size: 16px; }
.showcase__cta { margin-top: 36px; display: inline-flex; }

/* ============================================================
   SECTIE: Instagram
   ============================================================ */
.instagram__head { text-align: center; margin-bottom: 56px; }
.instagram__head .section-subtitle { margin-inline: auto; }
.instagram__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}
@media (min-width: 640px)  { .instagram__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .instagram__grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.ig-tile__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.9);
  transition: transform .7s ease;
}
.ig-tile__media {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100%, calc(100% * 16 / 9 * 5 / 4));
  height: max(100%, calc(100% * 9 / 16 * 4 / 5));
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  transition: transform .7s ease;
}
.ig-tile__media iframe,
.ig-tile__media video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.ig-tile:hover .ig-tile__media { transform: translate3d(-50%, -50%, 0) scale(1.1); }
.ig-tile:hover .ig-tile__poster { transform: scale(1.06); }
.ig-tile__wash {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color .3s ease;
}
.ig-tile:hover .ig-tile__wash { background: rgba(0, 0, 0, .4); }
.ig-tile__icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .3s ease, transform .3s ease;
  color: #fff;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .55));
}
.ig-tile:hover .ig-tile__icon { opacity: 1; transform: scale(1); }
.ig-tile__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(0deg, rgba(10,10,10,.85), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-tile:hover .ig-tile__caption { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ig-tile__media, .ig-tile__poster, .ig-tile__wash, .ig-tile__icon { transition: none; }
}
.ig-tile--hide-mobile { display: none; }
@media (min-width: 640px) { .ig-tile--hide-mobile { display: block; } }

/* ============================================================
   SECTIE: videobanner
   ============================================================ */
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
  height: 40vh;
  min-height: 280px;
}
.video-banner__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: opacity .6s ease;
}
.video-banner.has-video.is-video-ready .video-banner__poster { opacity: 0; }
.video-banner__media {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, calc(40vh * 16 / 9));
  height: max(40vh, calc(100vw * 9 / 16));
  min-height: 280px;
  transform: translate3d(-50%, -50%, 0) scale(1.08);
  will-change: transform;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
}
.video-banner.is-video-ready .video-banner__media { opacity: 1; }
.video-banner__media iframe,
.video-banner__media video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-banner__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.15) 30%, rgba(10,10,10,.15) 70%, rgba(10,10,10,.65) 100%);
}
.video-banner__vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0,0,0,.55), inset 0 0 0 1px rgba(181,153,104,.08);
}
.video-banner__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.video-banner__script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.video-banner__sub {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

/* Losse video in de tekstflow */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.video-embed iframe,
.video-embed video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-embed__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.video-embed__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, .55);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s ease, color .3s ease, transform .3s ease;
}
.video-embed__play:hover { background: var(--gold); color: var(--bg-deep); transform: translate(-50%, -50%) scale(1.05); }

/* ============================================================
   SECTIE: reserveren-CTA met gouden kader
   ============================================================ */
.cta-frame { position: relative; max-width: 820px; margin-inline: auto; padding-block: 80px; text-align: center; }
@media (min-width: 1024px) { .cta-frame { padding-block: 112px; } }
.cta-frame__border {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: fill;
  pointer-events: none;
  opacity: .4;
}
.cta-frame__inner { position: relative; padding-inline: 24px; }
@media (min-width: 768px) { .cta-frame__inner { padding-inline: 48px; } }
.cta-frame .section-subtitle { margin-inline: auto; }
.cta-facts {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  font-size: 14px;
  list-style: none;
}
@media (min-width: 640px) { .cta-facts { grid-template-columns: repeat(3, 1fr); } }
.cta-facts li {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255, 255, 255, .65);
}
.cta-facts svg { color: var(--gold); flex-shrink: 0; }
.cta-facts a:hover { color: var(--gold); }

.cta-section { position: relative; overflow: hidden; }
.cta-section__ornament {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 820px;
  opacity: .2;
  pointer-events: none;
}
.cta-section__ornament--corner-right { left: auto; right: -80px; top: auto; bottom: -80px; transform: none; width: 480px; max-width: none; opacity: .08; }
.cta-section__ornament--corner-left  { left: -128px; top: -80px; transform: rotate(180deg); width: 420px; max-width: none; opacity: .06; }
.cta-section__phone { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.cta-section__phone svg { color: var(--gold); }
.phone-big {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(2.25rem, 5vw, 3rem);
  display: inline-block;
  margin-top: 32px;
}

/* ============================================================
   SECTIE: contactblokken, kaart, reviews, stappen, notitie
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  grid-auto-rows: 1fr;
}
@media (min-width: 768px)  { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-block { display: flex; flex-direction: column; height: 100%; padding: 24px; }
@media (min-width: 768px) { .info-block { padding: 28px; } }
.info-block__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.info-block__head svg { color: var(--gold); flex-shrink: 0; }
.info-block__head h3 { font-family: var(--font-serif); color: #fff; font-size: 20px; }
.info-block__body { display: flex; flex-direction: column; flex: 1 1 auto; }
.info-block__body p { color: rgba(255, 255, 255, .75); }
.info-block__body .gold-link { margin-top: auto; padding-top: 32px; font-size: 14px; }
.info-block__note { font-size: 14px; color: rgba(255, 255, 255, .45); margin-top: 4px; }
.info-block__big {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 24px;
  display: block;
}
.hours-list { font-size: 14px; display: grid; gap: 6px; }
.hours-list > div { display: flex; justify-content: space-between; gap: 16px; }
.hours-list dt { color: rgba(255, 255, 255, .65); }
.hours-list dd { color: #fff; margin: 0; }
.info-block__accent { font-style: italic; color: var(--gold); font-size: 12px; margin-top: 16px; }

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: invert(.92) hue-rotate(180deg) saturate(.8);
}
@media (min-width: 768px) { .map-frame iframe { height: 500px; } }
.map-note {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
}
.map-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.map-note strong { color: #fff; font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { padding: 32px; }
.review__stars { display: flex; gap: 4px; color: var(--gold); }
.review__stars svg { fill: currentColor; stroke: currentColor; }
.review__quote {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  line-height: 1.6;
}
.review__name { margin-top: 24px; color: #fff; font-size: 14px; }
.review__source { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step__number { font-family: var(--font-serif); color: var(--gold); font-size: 3.5rem; line-height: 1; }
.step__rule { margin-top: 12px; width: 48px; height: 1px; background: var(--gold); }
.step__title { margin-top: 20px; font-family: var(--font-serif); color: #fff; font-size: 24px; }
.step__body { margin-top: 12px; color: var(--text-body); }

.note-box {
  padding: 20px;
  background: rgba(181, 153, 104, .08);
  border: 1px solid var(--border-subtle);
  text-align: center;
}
.note-box p { font-style: italic; color: var(--gold); font-size: 14px; }
.note-band { padding-block: 48px; background: rgba(181, 153, 104, .06); }
.note-band__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.note-band svg { color: var(--gold); margin-inline: auto; }
.note-band p { margin-top: 16px; color: rgba(255, 255, 255, .75); }
.note-band em { display: block; margin-top: 4px; color: rgba(255, 255, 255, .5); font-size: 14px; }

/* ============================================================
   MENUKAART
   ============================================================ */
.menu-subnav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, .92);
  border-bottom: 1px solid var(--border-subtle);
}
.menu-subnav::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.menu-subnav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  list-style: none;
}
.menu-subnav__list::-webkit-scrollbar { display: none; }
.menu-subnav__list a {
  position: relative;
  white-space: nowrap;
  padding-block: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
  transition: color .3s ease;
}
.menu-subnav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.menu-subnav__list a:hover { color: rgba(255, 255, 255, .85); }
.menu-subnav__list a.is-active { color: var(--gold); }
.menu-subnav__list a.is-active::after { transform: scaleX(1); }

.menu-section { position: relative; scroll-margin-top: 64px; padding-block: 120px 100px; }
.menu-section__title { font-family: var(--font-serif); color: #fff; font-size: clamp(2.25rem, 5vw, 3rem); }
.menu-section__intro { margin-top: 24px; color: var(--text-body); max-width: 640px; }

.menu-group { margin-top: 80px; }
.menu-group:first-of-type { margin-top: 0; }
.menu-group__intro { margin-top: 12px; color: rgba(255, 255, 255, .65); max-width: 640px; }
.menu-group__items { margin-top: 32px; }

.dish {
  padding-block: 24px;
  padding-inline: 8px;
  margin-inline: -8px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color .3s ease;
}
.dish:hover { background: rgba(181, 153, 104, .04); }
.dish__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.dish__name {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) { .dish__name { font-size: 24px; } }
.dish__name svg { color: var(--gold); flex-shrink: 0; }
.dish__price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  font-size: 16px;
  transition: transform .3s ease;
}
@media (min-width: 768px) { .dish__price { font-size: 18px; } }
.dish:hover .dish__price { transform: scale(1.05); }
.dish__desc { margin-top: 8px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.6; }
.dish__desc-alt { margin-top: 4px; color: rgba(255, 255, 255, .4); font-size: 13px; font-style: italic; line-height: 1.6; }
.dish__prices { display: flex; align-items: center; gap: 16px; color: var(--gold); font-weight: 600; font-size: 14px; }
.dish__prices .label { color: rgba(255, 255, 255, .4); text-transform: uppercase; letter-spacing: .06em; font-size: 11px; margin-right: 4px; font-weight: 400; }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 768px) { .tiles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  min-width: 0;
}
@media (min-width: 480px) { .tile { padding: 12px 16px; gap: 12px; } }
.tile__name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (min-width: 480px) { .tile__name { font-size: 15px; } }
.tile__price { color: var(--gold); font-size: 14px; font-weight: 600; flex-shrink: 0; }

.price-hero { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .price-hero { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
.price-hero__amount {
  font-family: var(--font-serif);
  color: var(--gold);
  line-height: 1;
  font-size: clamp(3.5rem, 8vw, 5rem);
}
.price-hero__unit { margin-top: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255, 255, 255, .5); }
.price-hero__text { margin-top: 32px; color: rgba(255, 255, 255, .75); line-height: 1.7; }
.price-hero__text + .price-hero__text { margin-top: 16px; }

/* stagger */
.dish.reveal:nth-child(2) { transition-delay: 60ms; }
.dish.reveal:nth-child(3) { transition-delay: 120ms; }
.dish.reveal:nth-child(4) { transition-delay: 180ms; }
.dish.reveal:nth-child(5) { transition-delay: 240ms; }
.dish.reveal:nth-child(6) { transition-delay: 300ms; }
.dish.reveal:nth-child(7) { transition-delay: 360ms; }
.dish.reveal:nth-child(8) { transition-delay: 420ms; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-head { max-width: 640px; margin-bottom: clamp(56px, 7vw, 80px); }
.blog-head--center { margin-inline: auto; text-align: center; }
.blog-head--center .section-subtitle { margin-inline: auto; }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.blog-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--bg-soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease-out; }
.post-card:hover .post-card__media img { transform: scale(1.03); }
.post-card__body { display: flex; flex-direction: column; flex: 1 1 auto; }
.post-card__meta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  color: #fff;
  margin-top: 8px;
}
.post-card__excerpt {
  flex: 1 1 auto;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.post-card__more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card__more svg { transition: transform .3s ease; }
.post-card:hover .post-card__more svg { transform: translateX(4px); }

/* Boxed variant (blogoverzicht) */
.post-card--boxed {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.post-card--boxed:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.post-card--boxed .post-card__media { aspect-ratio: 16 / 9; border-radius: 0; }
.post-card--boxed .post-card__body { padding: 24px; }
.post-card--boxed .post-card__meta { margin-top: 0; }
.post-card--boxed .post-card__more { margin-top: auto; padding-top: 24px; }

/* Uitgelicht artikel */
.post-feature {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color .3s ease;
}
.post-feature:hover { border-color: var(--gold-soft); }
@media (min-width: 768px) { .post-feature { grid-template-columns: repeat(2, 1fr); } }
.post-feature__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.post-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.post-feature:hover .post-feature__media img { transform: scale(1.04); }
.post-feature__flag {
  position: absolute; top: 20px; left: 20px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  background: var(--gold); color: var(--bg-deep);
  padding: 6px 12px;
}
.post-feature__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .post-feature__body { padding: 64px; } }
.post-feature__meta { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.post-feature__title { margin-top: 16px; font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.15; }
.post-feature__excerpt { margin-top: 20px; color: rgba(255, 255, 255, .8); }
.post-feature__more { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 14px; }

/* Categoriefilters */
.blog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.blog-filters a {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(181, 153, 104, .5);
  color: var(--gold);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.blog-filters a:hover { background: rgba(181, 153, 104, .1); }
.blog-filters a.is-active { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }

/* Artikelpagina */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 50;
  pointer-events: none;
}
.reading-progress__bar { height: 100%; width: 0; background: var(--gold); transition: width .15s linear; }

.breadcrumb-bar { border-bottom: 1px solid var(--border-subtle); background: var(--bg-deep); }
.breadcrumb-bar__inner {
  padding-block: 16px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  max-width: 1100px;
  margin-inline: auto;
}
.breadcrumb-bar a { color: var(--gold); transition: opacity .2s ease; }
.breadcrumb-bar a:hover { opacity: .7; }
.breadcrumb-bar .sep { margin-inline: 12px; color: var(--border-subtle); }
.breadcrumb-bar .current { color: var(--text-muted); }

.article-body { max-width: 720px; margin-inline: auto; }
.article-body > * + * { margin-top: 24px; }
.article-body p { font-size: 18px; line-height: 1.75; color: var(--text-body); }
.article-body h2 { margin-top: 64px; font-size: clamp(1.625rem, 3vw, 2.25rem); }
.article-body h3 { margin-top: 48px; font-size: 1.625rem; }
.article-body h2 + *, .article-body h3 + * { margin-top: 16px; }
.article-body strong { color: #fff; font-weight: 600; }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.article-body blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.5;
}
.article-body ul, .article-body ol { margin-block: 24px; padding-left: 0; list-style: none; }
.article-body ol { counter-reset: sage-ol; }
.article-body li { position: relative; padding-left: 24px; font-size: 18px; line-height: 1.75; }
.article-body li + li { margin-top: 12px; }
.article-body ul > li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
}
.article-body ol > li { counter-increment: sage-ol; }
.article-body ol > li::before {
  content: counter(sage-ol) ".";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 600;
}
.article-body img, .article-body figure { border-radius: var(--radius); overflow: hidden; }
.article-body figcaption { margin-top: 8px; font-size: 13px; color: var(--text-muted); text-align: center; }
.article-body hr { border: 0; border-top: 1px solid var(--border-subtle); margin-block: 48px; }
.article-body table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td { padding: 12px; border-bottom: 1px solid var(--border-subtle); text-align: left; }
.article-body th { color: #fff; font-weight: 600; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}
.article-meta__avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
}
.article-meta__author { color: #fff; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding-inline: 12px;
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  font-size: 14px;
  transition: border-color .3s ease, color .3s ease, background-color .3s ease;
}
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--bg-deep); }

/* ============================================================
   JURIDISCHE PAGINA'S
   ============================================================ */
.legal-layout { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1120px; margin-inline: auto; }
@media (min-width: 1024px) { .legal-layout { grid-template-columns: 240px 1fr; } }
.legal-toc { display: none; }
@media (min-width: 1024px) { .legal-toc { display: block; } }
.legal-toc__sticky { position: sticky; top: 120px; }
.legal-toc__label {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.legal-toc ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.legal-toc a {
  display: block;
  color: rgba(255, 255, 255, .55);
  border-left: 1px solid transparent;
  padding-left: 12px;
  transition: color .2s ease, border-color .2s ease;
}
.legal-toc a:hover { color: rgba(255, 255, 255, .85); }
.legal-toc a.is-active { color: var(--gold); border-left-color: var(--gold); }
.legal-body { max-width: 760px; }
.legal-body h2 { margin-top: 56px; font-size: clamp(1.5rem, 2.5vw, 1.875rem); scroll-margin-top: 120px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { margin-top: 32px; font-size: 1.25rem; }
.legal-body > * + * { margin-top: 20px; }
.legal-body p, .legal-body li { color: var(--text-body); line-height: 1.8; }
.legal-body a { color: var(--gold); text-underline-offset: 4px; }
.legal-body a:hover { text-decoration: underline; }
.legal-body ul { list-style: none; margin-block: 20px; }
.legal-body li { position: relative; padding-left: 20px; }
.legal-body li + li { margin-top: 10px; }
.legal-body ul > li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 5px; height: 5px; border-radius: 999px; background: var(--gold);
}
.legal-body strong { color: #fff; font-weight: 600; }

/* ============================================================
   FORMULIEREN
   ============================================================ */
.sage-form { display: grid; gap: 20px; }
.sage-form__row { display: grid; gap: 20px; }
@media (min-width: 640px) { .sage-form__row--2 { grid-template-columns: repeat(2, 1fr); } }
.sage-form label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.sage-form .required { color: var(--gold); }
.sage-input,
.sage-form input[type="text"],
.sage-form input[type="email"],
.sage-form input[type="tel"],
.sage-form input[type="date"],
.sage-form input[type="time"],
.sage-form input[type="number"],
.sage-form select,
.sage-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  appearance: none;
  transition: border-color .3s ease, background-color .3s ease;
}
.sage-form textarea { min-height: 160px; resize: vertical; }
.sage-input::placeholder,
.sage-form ::placeholder { color: rgba(255, 255, 255, .35); }
.sage-input:focus,
.sage-form :is(input, select, textarea):focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .06);
}
.sage-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b59968' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.sage-form select option { background: var(--bg-soft); color: #fff; }
.sage-form__consent { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-body); }
.sage-form__consent input { margin-top: 4px; accent-color: var(--gold); width: 18px; height: 18px; }
.sage-form__consent label { text-transform: none; letter-spacing: 0; color: var(--text-body); font-size: 14px; font-weight: 400; margin: 0; }
.sage-form__consent a { color: var(--gold); text-underline-offset: 3px; }
.sage-form__consent a:hover { text-decoration: underline; }
.sage-form__hp { position: absolute; left: -9999px; }
.sage-form__message { padding: 16px; border: 1px solid var(--border-subtle); border-radius: var(--radius); font-size: 15px; }
.sage-form__message--ok { border-color: var(--gold); color: var(--gold); background: rgba(181, 153, 104, .08); }
.sage-form__message--error { border-color: #c1432b; color: #f0a99b; background: rgba(193, 67, 43, .1); }
.sage-form__error { color: #f0a99b; font-size: 13px; margin-top: 6px; }

.embed-frame {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
}
.embed-frame iframe { width: 100%; border: 0; display: block; min-height: 700px; }
.embed-fallback { margin-top: 24px; text-align: center; font-size: 14px; color: rgba(255, 255, 255, .55); }
.embed-fallback a { color: var(--gold); }
.embed-fallback a:hover { text-decoration: underline; }

/* ============================================================
   RESERVERINGSVENSTER
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  transform: scale(.95);
  transition: transform .2s ease;
}
.modal.is-open .modal__dialog { transform: scale(1); }
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
@media (min-width: 768px) { .modal__head { padding-inline: 32px; } }
.modal__title { font-family: var(--font-serif); color: #fff; font-size: 24px; }
@media (min-width: 768px) { .modal__title { font-size: 30px; } }
.modal__note { margin-top: 4px; font-size: 12px; color: rgba(255, 255, 255, .55); }
.modal__close { color: var(--gold); flex-shrink: 0; transition: opacity .2s ease; }
.modal__close:hover { opacity: .8; }
.modal__body { flex: 1 1 auto; overflow: auto; padding: 16px; }
@media (min-width: 768px) { .modal__body { padding: 24px; } }
.modal__alt { margin-top: 16px; text-align: center; font-size: 12px; color: rgba(255, 255, 255, .5); }
.modal__alt a { color: var(--gold); }
.modal__alt a:hover { text-decoration: underline; }
body.has-modal { overflow: hidden; }

/* ============================================================
   COOKIEBANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(10, 10, 10, .96);
  border-top: 1px solid var(--gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; gap: 24px; }
}
.cookie-banner__text { flex: 1 1 auto; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .75); }
.cookie-banner__text a { color: var(--gold); text-underline-offset: 4px; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
@media (min-width: 640px) { .cookie-banner__actions { flex-direction: row; } }
.cookie-banner .btn { font-size: 12px; padding: 12px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  padding-top: 80px;
  padding-bottom: 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__logo { height: 120px; width: auto; margin-bottom: 20px; }
.site-footer__tagline {
  font-family: var(--font-serif);
  font-size: 20px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.35;
  margin-bottom: 20px;
}
.site-footer h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; display: grid; gap: 12px; font-size: 15px; }
.site-footer a { color: rgba(255, 255, 255, .7); transition: color .3s ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer__contact li a { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-bottom: 8px;
}
.site-footer__hours .day { color: rgba(255, 255, 255, .55); }
.site-footer__hours .time { color: rgba(255, 255, 255, .85); }
.site-footer__hours-note { margin-top: 16px; font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, .4); }
.site-footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}
.site-footer__bottom > * { margin: 0; }
@media (min-width: 900px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
  }
  .site-footer__bottom > p:first-child { flex: 1 1 0; }
  .site-footer__bottom .site-footer__credit { flex: 1 1 0; text-align: right; }
}
.site-footer ul.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  list-style: none;
  font-size: 12px;
}
@media (min-width: 900px) { .site-footer ul.site-footer__legal { justify-content: center; } }
.site-footer__credit a { color: rgba(255, 255, 255, .4); }
.site-footer__credit a:hover { color: var(--gold); }

/* ============================================================
   404 & zoeken
   ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  text-align: center;
}
.page-404__code { font-family: var(--font-serif); font-size: clamp(4rem, 12vw, 7rem); color: var(--gold); line-height: 1; }
.page-404__title { margin-top: 24px; font-size: clamp(1.5rem, 3vw, 2rem); }
.page-404__text { margin-top: 12px; font-size: 15px; color: rgba(255, 255, 255, .6); max-width: 420px; margin-inline: auto; }
.page-404 .btn-row { margin-top: 32px; }

.search-form { display: flex; gap: 12px; max-width: 480px; margin-inline: auto; }
.search-form input { flex: 1 1 auto; }

/* ============================================================
   ALGEMENE TEKSTSECTIE
   ============================================================ */
.rich-text > * + * { margin-top: 20px; }
.rich-text p, .rich-text li { color: var(--text-body); line-height: 1.8; }
.rich-text h2 { margin-top: 40px; }
.rich-text h3 { margin-top: 32px; }
.rich-text a { color: var(--gold); text-underline-offset: 4px; }
.rich-text a:hover { text-decoration: underline; }
.rich-text ul, .rich-text ol { padding-left: 20px; margin-block: 20px; }
.rich-text li + li { margin-top: 8px; }
.rich-text strong { color: #fff; }
.rich-text img { border-radius: var(--radius); }
.rich-text .wp-caption-text, .rich-text figcaption { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.text-columns { display: grid; grid-template-columns: 1fr; gap: 20px; }
.text-columns--left { text-align: left; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .menu-subnav, .cookie-banner, .modal, .hero__scroll { display: none !important; }
  html, body { background: #fff !important; color: #000 !important; }
  .section, .menu-section { padding-block: 24px !important; page-break-inside: avoid; }
  .swirl, .cta-frame__border, .cta-section__ornament { display: none !important; }
  h1, h2, h3, h4 { color: #000 !important; }
  p, span, li, dd, dt { color: #222 !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  a { color: #000 !important; text-decoration: none !important; }
  .card, .dish { background: #fff !important; border-color: #ccc !important; }
  .dish__price, .dish__prices { color: #000 !important; }
}
