/* ═══════════════════════════════════════════════
   GOUDS GLAS — Stijlgids v1.0
   Concept: "Goudse Boog" — perkament, boogvorm, Playfair
   ═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg:          #EFE5C5;
  --bg-licht:    #F8F4E8;
  --donker:      #18120A;
  --goud:        #A67E0C;
  --goud-2:      #C8961E;
  --steen:       #DDD0B0;
  --tekst:       #1A1208;
  --tekst-2:     #6B5840;
  --lijn:        #D4C6A0;

  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;

  --nav-h:       72px;
  --max-w:       1340px;
  --pad-x:       clamp(24px, 5vw, 80px);
  --pad-sect:    clamp(64px, 10vw, 120px);

  --ease-out:    cubic-bezier(0.25, 0, 0, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--tekst);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ─── UTILITIES ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.sect-pad { padding: var(--pad-sect) 0; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 16px;
  display: block;
}
.label--licht { color: rgba(239,229,197,0.6); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;

  line-height: 1.1;
  color: var(--donker);
  margin-bottom: 28px;
}
.h2 em { font-style: italic; color: var(--goud); }

.body-tekst {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tekst-2);
  margin-bottom: 16px;
}

.btn-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--donker);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--goud);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn-text:hover { color: var(--goud); }

.btn-outline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--donker);
  border: 1.5px solid var(--donker);
  padding: 14px 36px;
  display: inline-block;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.btn-outline:hover { background: var(--donker); color: var(--bg); }

.btn-licht {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--donker);
  padding: 16px 40px;
  display: inline-block;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.btn-licht:hover { background: var(--steen); }

.btn-ghost-licht {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  border: 1.5px solid rgba(239,229,197,0.5);
  padding: 16px 40px;
  display: inline-block;
  transition: border-color 0.25s var(--ease-out), background 0.25s;
}
.btn-ghost-licht:hover { border-color: var(--bg); background: rgba(239,229,197,0.08); }

/* ─── ARCH FRAME ─── */
.arch-frame {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  width: 100%;
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.arch-frame:hover img { transform: scale(1.04); }

.arch-frame--groot {
  max-width: 340px;
  aspect-ratio: 3/5;
}

/* ─── SECT HEADER ─── */
.sect-header { max-width: 600px; margin-bottom: 56px; }
.sect-header-tekst { max-width: 480px; }
.sect-header--center { text-align: center; margin: 0 auto 56px; }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  gap: 32px;
  transition: background 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(239,229,197,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--lijn);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--donker);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--donker);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--goud); }
.nav-sep {
  color: var(--goud);
  font-size: 7px;
  line-height: 1;
  opacity: 0.7;
}

.btn-nav {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--donker);
  color: var(--bg);
  padding: 10px 22px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--goud); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--donker);
  transition: transform 0.25s, opacity 0.2s;
}

/* ─── MOBILE OVERLAY ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--donker);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px var(--pad-x);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-in-out);
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-bottom: 40px;
}
.nav-overlay nav a {
  font-family: var(--serif);
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 400;
  color: var(--bg);
  padding: 8px 0;
  border-bottom: 1px solid rgba(239,229,197,0.12);
  transition: color 0.2s;
}
.nav-overlay nav a:hover { color: var(--goud-2); }
.nav-overlay-close {
  position: absolute;
  top: 24px; right: var(--pad-x);
  background: none;
  border: none;
  color: var(--bg);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-overlay-close:hover { opacity: 1; }
.btn-overlay-reserveer {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(239,229,197,0.4);
  color: var(--bg);
  padding: 14px 36px;
  transition: border-color 0.2s;
}
.btn-overlay-reserveer:hover { border-color: var(--bg); }


/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero-top {
  text-align: center;
  padding: clamp(56px, 10vh, 120px) var(--pad-x) 0;
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(68px, 12.5vw, 180px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: var(--donker);
  white-space: nowrap;
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tekst-2);
}

.hero-arches {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(10px, 1.5vw, 20px);
  padding: clamp(24px, 3vw, 40px) var(--pad-x) 0;
  flex: 1;
  position: relative;
  z-index: 1;
  /* No overlap — arches sit cleanly below the heading */
}

.hero-arch {
  flex-shrink: 0;
  width: clamp(160px, 20vw, 280px);
  height: clamp(280px, 38vw, 530px);
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  align-self: flex-end;
  position: relative;
}

/* Glas-in-lood diamantpatroon over de boogfoto's */
.hero-arch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(110,78,5,0.28) 0, rgba(110,78,5,0.28) 1.5px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(110,78,5,0.28) 0, rgba(110,78,5,0.28) 1.5px, transparent 0, transparent 50%);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.hero-arch--center {
  width: clamp(185px, 23vw, 335px);
  height: clamp(335px, 46vw, 645px);
}

.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-arch:hover img { transform: scale(1.05); }

.hero-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  border-top: 1px solid var(--lijn);
  margin-top: clamp(16px, 2vw, 28px);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: var(--bg);
}

.hero-info-left,
.hero-info-right {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--tekst-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-info-loc { font-weight: 400; color: var(--tekst); }
.hero-info-sep { opacity: 0.4; }

.hero-info-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--donker);
  color: var(--bg);
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.hero-info-cta:hover { background: var(--goud); }


/* ─── RONDLEIDING ─── */
/* Slider — geen scroll-jacking meer */
/* ─── RONDLEIDING FADE SLIDER ─── */

.rondleiding-wrapper {
  position: relative;
}

.rondleiding-sticky {
  position: relative;
  height: clamp(560px, 80vh, 900px);
  overflow: hidden;
  background: var(--donker);
}

/* Elke ruimte: volledig over elkaar, fade in/uit */
.ruimte {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  z-index: 1;
}

.ruimte.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Foto: full-bleed cover */
.ruimte-foto {
  position: absolute;
  inset: 0;
}

.ruimte-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Donkere gradiënt links voor leesbaarheid */
.ruimte::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(18,10,4,0.72) 0%, rgba(18,10,4,0.40) 42%, rgba(18,10,4,0.08) 72%, transparent 100%),
    linear-gradient(to top,   rgba(18,10,4,0.50) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* Tekstoverlay links onder */
.ruimte-overlay {
  position: absolute;
  left: clamp(32px, 7vw, 100px);
  bottom: clamp(72px, 9vh, 120px);
  z-index: 2;
  color: #fff;
  max-width: 520px;
}

.ruimte-sectielabel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.ruimte-nr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--goud);
  margin-bottom: 6px;
}

.ruimte-naam {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 14px;
}

.ruimte-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.ruimte-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: 12px 24px;
  white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  text-decoration: none;
}
.ruimte-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--donker);
}

/* Pijltjes — rechtsonder, wit */
.rondleiding-pijl {
  position: absolute;
  bottom: clamp(20px, 3.5vh, 48px);
  right: var(--pad-x);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.rondleiding-pijl:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.7);
}
.rondleiding-pijl--prev { right: calc(var(--pad-x) + 56px); }
.rondleiding-pijl--next { right: var(--pad-x); }
.rondleiding-pijl:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Navigatiedots — rechtsonder boven de pijltjes */
.rondleiding-dots {
  position: absolute;
  bottom: clamp(84px, 11vh, 120px);
  right: var(--pad-x);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.rdot {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.rdot.active {
  width: 20px;
  background: #fff;
}

/* Mobile */
@media (max-width: 640px) {
  .rondleiding-sticky {
    height: clamp(480px, 88vh, 700px);
  }
  .ruimte-naam {
    font-size: clamp(32px, 10vw, 48px);
  }
  .ruimte-overlay {
    left: 24px;
    bottom: 80px;
  }
  .ruimte-cta { display: none; }
}

/* Reduced motion: kortere fade */
@media (prefers-reduced-motion: reduce) {
  .ruimte {
    transition: opacity 0.3s;
  }
  .intro-mode .hero-arch,
  .intro-mode .hero-top,
  .intro-mode .hero-info,
  .intro-mode .site-nav {
    animation: none;
    opacity: 1;
  }
}


/* ─── MARQUEE ─── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  background: var(--bg-licht);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tekst-2);
}
.m-dot { color: var(--goud) !important; font-size: 7px !important; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ─── VERHAAL ─── */
.verhaal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.verhaal-tekst { max-width: 520px; }
.verhaal-foto {
  display: flex;
  justify-content: flex-end;
}
.verhaal-foto .arch-frame {
  max-width: 340px;
  width: 100%;
  aspect-ratio: 3/5;
}


/* ─── PILLARS ─── */
.pillars {
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  background: var(--bg-licht);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  border-right: 1px solid var(--lijn);
  transition: background 0.25s var(--ease-out);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--goud);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.pillar:hover { background: rgba(166,126,12,0.06); }
.pillar:hover::after { transform: scaleX(1); }

.pillar-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--goud);
  text-transform: uppercase;
}
.pillar-naam {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;

  color: var(--donker);
  line-height: 1.2;
}
.pillar-pijl {
  font-size: 14px;
  color: var(--goud);
  margin-top: auto;
  transition: transform 0.25s var(--ease-out);
}
.pillar:hover .pillar-pijl { transform: translateX(4px); }


/* ─── ETEN ─── */
.eten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.eten-card {
  background: var(--bg-licht);
  border: 1px solid var(--lijn);
}

.eten-card-foto {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.eten-card-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.eten-card:hover .eten-card-foto img { transform: scale(1.04); }

.eten-card-tekst {
  padding: 28px 28px 32px;
}
.eten-card-naam {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;

  color: var(--donker);
  line-height: 1.2;
  margin-bottom: 12px;
}
.eten-card-tekst .label { margin-bottom: 12px; }

.eten-footer { text-align: center; }


/* ─── WIDE FOTO ─── */
.wide-foto {
  width: 100%;
  height: clamp(240px, 40vw, 580px);
  overflow: hidden;
}
.wide-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─── ARRANGEMENTEN ─── */
.arr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.arr-card {
  display: block;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.arr-card:hover { transform: translateY(-4px); }

.arr-card-arch {
  aspect-ratio: 3/5;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  margin-bottom: 20px;
}
.arr-card-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.arr-card:hover .arr-card-arch img { transform: scale(1.04); }

.arr-num {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;

  letter-spacing: 0.1em;
  color: var(--goud);
  margin-bottom: 8px;
}
.arr-naam {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;

  color: var(--donker);
  line-height: 1.2;
  margin-bottom: 12px;
}
.arr-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--tekst-2);
  margin-bottom: 16px;
}
.arr-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--goud);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--goud);
  transition: color 0.2s;
}
.arr-card:hover .arr-link { color: var(--goud-2); border-color: var(--goud-2); }

.arr-footer { text-align: center; }


/* ─── FEITEN (stats) ─── */
.feiten {
  background: var(--bg-licht);
  border-top: 1px solid var(--lijn);
  border-bottom: 1px solid var(--lijn);
  padding: clamp(56px, 8vw, 96px) 0;
}
.feiten-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feit {
  flex: 1;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 60px);
}
.feit-streep {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--goud);
  margin: 0 auto 20px;
}
.feit-num {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  color: var(--donker);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.feit-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--tekst-2);
  line-height: 1.7;
  text-transform: uppercase;
}
.feit-lijn {
  width: 1px;
  height: 80px;
  background: var(--lijn);
  flex-shrink: 0;
}


/* ─── BELEEF GOUDA ─── */
.beleef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.beleef-foto {
  display: flex;
  justify-content: flex-start;
}
.beleef-tekst { max-width: 520px; }


/* ─── REVIEWS ─── */
.reviews { background: var(--bg-licht); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--lijn);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-sterren {
  font-size: 14px;
  color: var(--goud-2);
  letter-spacing: 2px;
}
.review-tekst {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  font-style: italic;

  line-height: 1.65;
  color: var(--tekst);
  flex: 1;
}
.review-naam {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--tekst-2);
  margin-top: auto;
}


/* ─── CTA RESERVEER ─── */
.cta-reserveer {
  background: var(--donker);
  padding: clamp(80px, 12vw, 140px) 0;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;

  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(239,229,197,0.55);
  margin-bottom: 40px;
}
.cta-knoppen {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-licht);
  border-top: 2px solid var(--lijn);
  padding: clamp(56px, 8vw, 96px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--lijn);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--donker);
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tekst-2);
  margin-bottom: 20px;
}
.footer-zin {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--tekst-2);
  opacity: 0.6;
}
.footer-nav-titel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 20px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-2);
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--donker); }
.footer-vinden address,
.footer-vinden p:not(.footer-nav-titel),
.footer-openingstijden p:not(.footer-nav-titel),
.footer-contact address,
.footer-contact p:not(.footer-nav-titel) {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tekst-2);
  margin-bottom: 8px;
}
.footer-tijden-titel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud);
  margin-top: 16px;
  margin-bottom: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.btn-navigeer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 7px 14px;
  border: 1px solid var(--lijn);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--tekst-2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-navigeer:hover {
  border-color: var(--donker);
  color: var(--donker);
}

  color: rgba(26,18,8,0.35);
  margin-top: 16px;
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(26,18,8,0.35);
}
.cookie-instellingen {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(26,18,8,0.35);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.cookie-instellingen:hover { color: var(--donker); }



/* ─── CUSTOM RESERVEER FLOATING BUTTON ─── */
#custom-reserveer-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  background: #fff;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--donker);
  transition: box-shadow 0.2s, transform 0.2s;
}
#custom-reserveer-btn:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
#custom-reserveer-btn img {
  display: block;
  border-radius: 4px;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--donker);
  border-top: 1px solid rgba(239,229,197,0.15);
  padding: 20px var(--pad-x);
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-tekst-wrap { flex: 1; min-width: 220px; }
.cookie-titel {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--bg-licht);
  margin-bottom: 4px;
}
.cookie-tekst {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(239,229,197,0.65);
  line-height: 1.6;
}
.cookie-knoppen {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-btn--accept {
  background: var(--goud);
  border: 1px solid var(--goud);
  color: var(--donker);
  font-weight: 600;
}
.cookie-btn--accept:hover { opacity: 0.88; }
.cookie-btn--instellingen {
  background: transparent;
  border: 1px solid rgba(239,229,197,0.2);
  color: rgba(239,229,197,0.4);
  font-size: 11px;
}
.cookie-btn--instellingen:hover { border-color: rgba(239,229,197,0.45); color: rgba(239,229,197,0.65); }
.cookie-btn--weiger {
  background: transparent;
  border: 1px solid rgba(239,229,197,0.25);
  color: rgba(239,229,197,0.55);
}
.cookie-btn--weiger:hover { border-color: rgba(239,229,197,0.55); color: rgba(239,229,197,0.85); }


/* ─── INTRO ANIMATIE ─── */
/*
  Effect: de drie boogvensters vliegen vanuit groot formaat (alsof je er recht
  voor staat) naar hun plek. Heading en nav verschijnen daarna.
  Speelt eenmalig per browsersessie via sessionStorage.
*/

@keyframes arch-fly {
  0%   { transform: scale(4.5) translateY(4%); opacity: 0; filter: blur(8px); }
  18%  { opacity: 1; filter: blur(0); }
  100% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

/* Like arch-fly but preserves translateX(-50%) centering for .ruimte-boog */
@keyframes ruimte-fly {
  0%   { transform: translateX(-50%) scale(4.5) translateY(4%); opacity: 0; filter: blur(8px); }
  18%  { opacity: 1; filter: blur(0); }
  100% { transform: translateX(-50%) scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes intro-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes intro-nav-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* De drie hero-bogen vliegen vanuit dichtbij naar hun plek */
.intro-mode .hero-arch {
  animation: arch-fly 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center bottom;
}
.intro-mode .hero-arch:nth-child(2) { animation-delay: 0.07s; }
.intro-mode .hero-arch:nth-child(3) { animation-delay: 0.14s; }

/* Heading en subtitel faden in na de bogen */
.intro-mode .hero-top {
  opacity: 0;
  animation: intro-fade-up 0.6s 0.9s var(--ease-out) both;
}

/* Info-balk faded in als laatste */
.intro-mode .hero-info {
  opacity: 0;
  animation: intro-fade-up 0.5s 1.05s var(--ease-out) both;
}

/* Nav drops in */
.intro-mode .site-nav {
  opacity: 0;
  animation: intro-nav-in 0.55s 0.85s var(--ease-out) both;
}


/* ─── SCROLL REVEAL ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.68s var(--ease-out), transform 0.68s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-d="1"] { transition-delay: 100ms; }
[data-d="2"] { transition-delay: 200ms; }
[data-d="3"] { transition-delay: 300ms; }


/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }

  /* Content blokken: 1 kolom op tablet */
  .content-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .content-2col--reverse { direction: ltr; }

  /* Page hero: boog verbergen, 1 kolom */
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-arch { display: none; }

  .verhaal-grid,
  .beleef-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .verhaal-foto { justify-content: center; }
  .verhaal-foto .arch-frame { max-width: 260px; margin: 0 auto; }
  .beleef-foto .arch-frame--groot { max-width: 260px; margin: 0 auto; }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillar:nth-child(4),
  .pillar:nth-child(5) {
    border-top: 1px solid var(--lijn);
  }
  .pillar:last-child { border-right: none; }

  .eten-grid { grid-template-columns: 1fr 1fr; }
  .arr-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 40px;
  }
  .stat-div { display: none; }

  /* Paginatitels (page-hero) centreren op tablet */
  .page-hero-tekst {
    text-align: center;
  }
  .page-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  /* Knoppen in content-blokken centreren */
  .content-2col-tekst .btn-outline,
  .verhaal-tekst .btn-outline,
  .page-hero-inner .btn-outline {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  /* HERO: geen volle-hoogte stretch op mobiel */
  .hero {
    min-height: auto;
  }
  .hero-top {
    padding-top: clamp(48px, 9vh, 72px);
  }
  .hero-arches {
    flex: none;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero-heading {
    font-size: clamp(44px, 14vw, 80px);
    letter-spacing: 0.05em;
  }
  .hero-sub { font-size: 10px; letter-spacing: 0.15em; }
  .hero-arch {
    width: clamp(110px, 26vw, 155px);
    height: clamp(190px, 45vw, 260px);
  }
  .hero-arch--center {
    width: clamp(130px, 31vw, 185px);
    height: clamp(230px, 55vw, 310px);
  }
  .hero-info { flex-direction: column; gap: 12px; text-align: center; }
  .hero-info-right { display: none; }

  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--lijn);
    padding: 24px 20px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .pillar:last-child { border-bottom: none; }
  .pillar-naam { font-size: 16px; flex: 1; }
  .pillar-pijl { margin-top: 0; }
  .pillar::after { display: none; }
  .pillar:nth-child(4),
  .pillar:nth-child(5) { border-top: none; }

  .eten-grid { grid-template-columns: 1fr; }
  .arr-grid { grid-template-columns: 1fr; }
  .kaarten-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { grid-column: auto; }

  /* Stats: verticaal stapelen op mobiel */
  .feiten-grid {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .feit {
    padding: 28px 24px;
    border-bottom: 1px solid var(--lijn);
    flex: none;
    width: 100%;
  }
  .feit:last-child { border-bottom: none; }
  .feit-lijn { display: none; }
  .feit-num { font-size: clamp(32px, 9vw, 48px); }

  /* Centering: consequent door heel de website */
  .content-2col-tekst,
  .verhaal-tekst,
  .beleef-tekst,
  .sect-pad .label,
  .sect-pad .h2 {
    text-align: center;
  }
  .content-2col-tekst .btn-outline,
  .verhaal-tekst .btn-outline,
  .beleef-tekst .btn-outline,
  .beleef-tekst .btn-text {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Afbeeldingen centreren op mobiel */
  .verhaal-foto,
  .beleef-foto {
    justify-content: center;
  }
  .verhaal-foto .arch-frame,
  .beleef-foto .arch-frame--groot {
    max-width: 280px;
    margin: 0 auto;
  }
  .content-block-foto {
    margin: 0 auto;
    max-width: 340px;
  }
  .content-block-foto--arch {
    margin: 0 auto;
  }

  /* Contact blok links uitlijnen (geen center op contact pagina) */
  .contact-blok { text-align: left; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-merk {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  padding: calc(var(--nav-h) + clamp(44px, 7vw, 88px)) var(--pad-x) clamp(44px, 7vw, 88px);
  background: var(--bg);
  border-bottom: 1px solid var(--lijn);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.page-hero-inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 780px;
}
.page-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400;
  color: var(--donker);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.page-hero-h1 em { font-style: italic; color: var(--goud); }
.page-hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--tekst-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.page-hero-inner--center .page-hero-sub { margin: 0 auto 32px; }

.hero-knoppen {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.page-hero-arch {
  width: clamp(140px, 16vw, 230px);
  aspect-ratio: 3/5;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
}
.page-hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── CONTENT BLOCKS ─── */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.content-2col--reverse { direction: rtl; }
.content-2col--reverse > * { direction: ltr; }

.content-block-foto {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
}
.content-block-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block-foto--arch {
  aspect-ratio: 3/5;
  border-radius: 999px 999px 0 0;
  max-width: 320px;
}

/* ─── KAARTEN GRID (arrangement / dienst kaarten) ─── */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.kaart {
  border: 1px solid var(--lijn);
  background: var(--bg-licht);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.kaart:hover {
  border-color: var(--goud);
  transform: translateY(-3px);
}
.kaart.is-open:hover {
  transform: none;
}
.kaart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kaart-num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--goud);
  letter-spacing: 0.1em;
}
.kaart-naam {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--donker);
  line-height: 1.2;
}
.kaart-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--tekst-2);
  flex: 1;
}
.kaart-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--goud);
  letter-spacing: 0.08em;
  padding-top: 10px;
  border-top: 1px solid var(--lijn);
  margin-top: 4px;
}

/* ─── KAART INFO BTN & UITKLAP ─── */
.kaart-info-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--lijn);
  background: transparent;
  color: var(--goud);
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
  line-height: 1;
}
.kaart-info-btn:hover,
.kaart.is-open .kaart-info-btn {
  background: var(--goud);
  border-color: var(--goud);
  color: var(--bg);
}
.kaart-tooltip {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--lijn);
  padding-top: 14px;
  margin-top: 6px;
}
.kaart.is-open .kaart-tooltip {
  display: flex;
}
.kaart-tooltip-sluit { display: none; }
.kaart-tooltip-naam { display: none; }
.kaart-tooltip-tekst {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--tekst-2);
}
.kaart-tooltip-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--goud);
}

/* ─── PLATTEGROND ─── */
.plattegrond-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}
.plattegrond-kaart {
  /* isometrische SVG heeft eigen perspectief */
}
.pp-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(4px 12px 24px rgba(24,18,10,0.14));
}

/* Klikbare zones */
.pp-room {
  cursor: pointer;
  transition: fill 0.2s;
}
.pp-room:hover { fill: #E8DDB5; }
.pp-room.pp-actief { fill: #DDD0A0; stroke: #A67E0C; stroke-width: 2; }

/* Pulserende dot */
@keyframes pp-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0;   }
}
.pp-pulse {
  animation: pp-pulse 2.2s ease-out infinite;
  transform-origin: center center;
  transform-box: fill-box;
}
.pp-dot-group[data-room="eetruimte"] .pp-pulse { animation-delay: 0.55s; }
.pp-dot-group[data-room="bar"]       .pp-pulse { animation-delay: 1.1s; }
.pp-dot-group[data-room="terras"]    .pp-pulse { animation-delay: 1.65s; }

/* Info paneel */
.plattegrond-info {
  padding-top: 8px;
}
.pp-default .label { margin-bottom: 12px; }
.pp-detail { display: none; }
.pp-detail.zichtbaar { display: block; }
.pp-detail-naam {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--donker);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pp-detail-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 24px;
  display: block;
}
.pp-detail-tekst {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tekst-2);
  margin-bottom: 28px;
}
.pp-detail-foto {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--steen);
  border: 1px dashed var(--lijn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.pp-detail-foto img {
  width: 100%; height: 100%; object-fit: cover;
}
.pp-detail-foto span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--tekst-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .plattegrond-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plattegrond-kaart {
    max-width: 100%;
  }
}

/* ─── VIDEO FRAME ─── */
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--steen);
  border: 1px dashed var(--lijn);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-placeholder {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tekst-2);
}

/* ─── KAART CTA ─── */
.kaart--cta {
  background: var(--donker);
  border-color: var(--donker);
  justify-content: center;
  gap: 20px;
}
.kaart--cta:hover {
  border-color: var(--goud);
  transform: translateY(-3px);
}
.kaart-cta-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goud);
}
.kaart-cta-tekst {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--bg);
  flex: 1;
}
.kaart-cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--donker);
  background: var(--bg);
  padding: 13px 28px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.kaart-cta-btn:hover {
  background: var(--goud);
  color: var(--bg);
}

/* ─── TIJDEN / CONTACT TABEL ─── */
.tijden-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.tijden-tabel td {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--tekst);
  padding: 10px 0;
  border-bottom: 1px solid var(--lijn);
  line-height: 1.5;
}
.tijden-tabel td:first-child {
  font-weight: 400;
  color: var(--tekst);
  width: 160px;
}

/* ─── USPS LIJST ─── */
.usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.usps li {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--tekst-2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.usps li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--goud);
  font-weight: 400;
}

/* ─── CONTACT INFO ─── */
.contact-blok {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.contact-blok-titel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 8px;
}
.contact-blok p, .contact-blok a, .contact-blok address {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--tekst);
  line-height: 1.7;
  font-style: normal;
}
.contact-blok a:hover { color: var(--donker); text-decoration: underline; }

/* ─── CONTACTFORMULIER ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tekst-2);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--tekst);
  background: transparent;
  border: 1.5px solid var(--lijn);
  border-radius: 4px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--goud);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5840' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}
.form-note {
  font-size: 13px;
  color: var(--tekst-2);
  margin-top: 8px;
}
.form-success {
  display: none;
  background: var(--bg-licht);
  border: 1.5px solid var(--lijn);
  border-radius: 4px;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--tekst);
}

/* ─── MENU CATEGORIE ─── */
.menu-cat {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--lijn);
}
.menu-cat:last-child { border-bottom: none; }
.menu-cat-naam {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--donker);
  margin-bottom: 24px;
}
.menu-gerecht {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lijn);
}
.menu-gerecht:last-child { border-bottom: none; }
.menu-gerecht-naam {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--tekst);
}
.menu-gerecht-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--tekst-2);
  flex: 1;
  padding: 0 16px;
}
.menu-gerecht-prijs {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--donker);
  white-space: nowrap;
}

/* ─── RESPONSIVE INNER PAGES ─── */
@media (max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-arch { display: none; }
  .content-2col { grid-template-columns: 1fr; gap: 36px; }
  .content-2col--reverse { direction: ltr; }
  .kaarten-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .kaarten-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */

/* ─── BLOG OVERZICHT ─── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.blog-filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--goud);
  border-radius: 999px;
  background: transparent;
  color: var(--tekst-1);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.blog-filter-btn:hover,
.blog-filter-btn.actief {
  background: var(--goud);
  color: #fff;
}

.blog-uitgelicht {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
  border-bottom: 1px solid var(--lijn);
}
.blog-uitgelicht-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.blog-uitgelicht-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.blog-uitgelicht:hover .blog-uitgelicht-img img { transform: scale(1.04); }
.blog-uitgelicht-body { }
.blog-uitgelicht-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 14px;
}
.blog-uitgelicht-titel {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--tekst-1);
  margin-bottom: 16px;
}
.blog-uitgelicht-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tekst-2);
  margin-bottom: 24px;
}
.blog-uitgelicht-meta {
  font-size: 13px;
  color: var(--tekst-3);
  margin-bottom: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 10px;
}
.blog-card-titel {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--tekst-1);
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tekst-2);
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--tekst-3);
  margin-bottom: 14px;
}
.blog-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--goud);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.blog-card-link:hover { text-decoration: underline; }

/* ─── BLOG ARTIKEL ─── */
.blog-artikel-hero {
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-bottom: 0;
}
.blog-artikel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-artikel-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
}
.blog-artikel-kop {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--lijn);
}
.blog-artikel-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 16px;
}
.blog-artikel-h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--tekst-1);
  margin-bottom: 16px;
}
.blog-artikel-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--tekst-2);
  margin-bottom: 16px;
}
.blog-artikel-meta {
  font-size: 13px;
  color: var(--tekst-3);
}

.blog-artikel-body h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--tekst-1);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.blog-artikel-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tekst-2);
  margin-bottom: 20px;
}
.blog-artikel-body ul,
.blog-artikel-body ol {
  margin: 0 0 24px 20px;
  color: var(--tekst-2);
}
.blog-artikel-body li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.blog-artikel-body a {
  color: var(--goud);
  text-decoration: underline;
}
.blog-artikel-body strong {
  color: var(--tekst-1);
  font-weight: 500;
}

.blog-cta-box {
  background: var(--zand);
  border-left: 3px solid var(--goud);
  padding: 28px 32px;
  margin: 48px 0;
  border-radius: 0 4px 4px 0;
}
.blog-cta-box p {
  font-size: 15px;
  margin-bottom: 16px;
}
.blog-cta-box .btn-outline { display: inline-block; }

.blog-artikel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--lijn);
}
.blog-tag {
  padding: 5px 14px;
  background: var(--achtergrond);
  border: 1px solid var(--lijn);
  border-radius: 999px;
  font-size: 12px;
  color: var(--tekst-3);
  text-decoration: none;
}
.blog-tag:hover { border-color: var(--goud); color: var(--goud); }

.blog-meer-artikelen {
  background: var(--zand);
  padding: clamp(48px, 8vw, 80px) 0;
}

/* ─── BLOG RESPONSIVE ─── */
@media (max-width: 900px) {
  .blog-uitgelicht {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ─── LANGUAGE SWITCHER ─── */

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--donker, #120a04);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  border-color: rgba(0,0,0,0.45);
  background: rgba(0,0,0,0.04);
}
.lang-toggle .flag { font-size: 14px; line-height: 1; }
.lang-toggle .caret { font-size: 10px; opacity: 0.6; }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 100;
}
.lang-menu[hidden] { display: none; }

.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--donker, #120a04);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-decoration: none;
  transition: background 0.15s;
}
.lang-menu a:hover,
.lang-menu a:focus-visible {
  background: rgba(0,0,0,0.04);
}
.lang-menu a[aria-current="true"] {
  font-weight: 600;
  background: rgba(0,0,0,0.04);
}
.lang-menu .flag { font-size: 16px; line-height: 1; }

/* Mobile overlay variant */
.nav-overlay .lang-switch {
  margin: 0 0 24px 0;
  align-self: center;
}
.nav-overlay .lang-toggle {
  border-color: rgba(255,255,255,0.32);
  color: #fff;
  background: transparent;
}
.nav-overlay .lang-toggle:hover,
.nav-overlay .lang-toggle[aria-expanded="true"] {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.nav-overlay .lang-menu {
  background: #1a120a;
  border-color: rgba(255,255,255,0.18);
}
.nav-overlay .lang-menu a {
  color: #fff;
}
.nav-overlay .lang-menu a:hover,
.nav-overlay .lang-menu a:focus-visible {
  background: rgba(255,255,255,0.06);
}

/* Hide desktop switcher on small screens; only show inside overlay */
@media (max-width: 900px) {
  .site-nav > .lang-switch { display: none; }
}

/* ═══ MENUKAART TABS ═══ */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--lijn);
  margin-bottom: 40px;
}

.menu-tab {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tekst-2);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 14px 32px;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.menu-tab:hover {
  color: var(--donker);
}

.menu-tab--actief {
  color: var(--goud);
  border-bottom-color: var(--goud);
}

/* ─── PDF VIEWER ─── */
.menu-pdf-panel {
  display: none;
}

.menu-pdf-panel--actief {
  display: block;
}

.menu-pdf-iframe {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 1px solid var(--lijn);
  border-radius: 4px;
  background: #fff;
  display: block;
}

.menu-pdf-mobiel {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--lijn);
  border-radius: 4px;
  background: var(--bg-licht);
}

.menu-pdf-mobiel p {
  font-family: var(--sans);
  color: var(--tekst-2);
  margin-bottom: 20px;
}

.menu-pdf-acties {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}

.menu-pdf-acties a {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--tekst-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.menu-pdf-acties a:hover {
  color: var(--goud);
}

/* ─── MENUKAART RESPONSIVE ─── */
@media (max-width: 640px) {
  .menu-tab {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .menu-pdf-iframe {
    display: none;
  }

  .menu-pdf-mobiel {
    display: block;
  }

  .menu-pdf-acties {
    justify-content: center;
  }
}
