/* =========================================================================
   De Eetkamer van Giethoorn — style.css
   Basis, designsysteem en componenten (desktop-first waar nodig,
   maar layout schaalt mobiel; fijn-afstemming staat in responsive.css)
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Kleur — afgeleid van logo + drukwerk, met Ibiza/strand-warmte */
  --forest:        #1E3A31;
  --forest-deep:   #15291F;
  --olive:         #7B7A4E;
  --gold:          #B4863B;
  --gold-deep:     #9C7513;
  --gold-soft:     #D8AE5B;
  --clay:          #C67C57;   /* terracotta accent */
  --clay-soft:     #E4B79C;
  --rose:          #B98A83;   /* oud-roze uit drukwerk */
  --sage:          #C9D6CE;
  --sand:          #F3ECDD;
  --sand-deep:     #EADFC9;
  --cream:         #FBF6EA;
  --paper:         #FFFDF8;
  --ink:           #23302A;
  --muted:         #5C6B61;
  --line:          rgba(30, 58, 49, 0.14);
  --white:         #FEFCF7;

  --bg:            var(--sand);
  --text:          var(--ink);

  /* Typografie */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-script:  "Parisienne", "Segoe Script", "Brush Script MT", cursive;

  /* Ritme */
  --wrap:      1200px;
  --wrap-wide: 1400px;
  --gutter:    clamp(1.15rem, 4vw, 2.75rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);
  --radius:    18px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(30, 58, 49, 0.08);
  --shadow-md: 0 14px 40px -18px rgba(30, 58, 49, 0.34);
  --shadow-lg: 0 40px 80px -32px rgba(21, 41, 31, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 116px;
}

/* ---------- 2. Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
@media (prefers-reduced-motion: no-preference) {
  html:not([data-noscrollanim]) { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
[hidden] { display: none !important; }
:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--forest);
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.3vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(1.95rem, 1.4rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem); }
p { text-wrap: pretty; }
strong { font-weight: 600; }
em { font-style: italic; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gold-deep);
  font-size: 1.32em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--center::after {
  content: "";
  width: 1.7rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ---------- 4. Layout ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--wide { width: min(100% - (var(--gutter) * 2), var(--wrap-wide)); }
.wrap--narrow { width: min(100% - (var(--gutter) * 2), 780px); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--sand   { background: var(--sand); }
.section--cream  { background: var(--cream); }
.section--paper  { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--sand); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 0.9rem; color: var(--muted); font-size: 1.05rem; }
.section--forest .section-head p { color: rgba(243, 236, 221, 0.78); }

/* Golfrand-scheiding */
.wave {
  display: block;
  width: 100%;
  height: clamp(38px, 6vw, 74px);
  color: inherit;
}
.wave svg { width: 100%; height: 100%; display: block; }

/* ---------- 5. Knoppen ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--radius-pill);
  border: 2px solid var(--btn-bg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--gold  { --btn-bg: var(--gold-deep); --btn-fg: #fff; }
.btn--clay  { --btn-bg: var(--clay); --btn-fg: #fff; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  border-color: rgba(30, 58, 49, 0.32);
}
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--forest);
  border-color: var(--cream);
}
.btn--on-dark.btn--ghost {
  --btn-fg: var(--cream);
  border-color: rgba(243, 236, 221, 0.4);
}
.btn--on-dark.btn--ghost:hover { background: var(--cream); color: var(--forest); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__logo { display: block; flex-shrink: 0; line-height: 0; }
.site-header__logo img { width: clamp(248px, 26vw, 312px); }
/* standaard: donker logo (lichte header) */
.site-header__logo .logo--light { display: none; }
.site-header__logo .logo--dark  { display: block; }

.site-header.is-scrolled {
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  --header-h: 98px;
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

/* Eenvoudige paginakop zonder beeld (privacy, 404) */
.page-head {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(2.4rem, 6vw, 3.6rem);
}
.page-head h1 { color: var(--cream); margin-top: 0.5rem; }
.page-head .breadcrumb li { color: rgba(243, 236, 221, 0.65); }
.page-head .breadcrumb a { color: rgba(243, 236, 221, 0.9); }
.page-head .breadcrumb li + li::before { color: rgba(243, 236, 221, 0.4); }

/* Header boven een donkere hero: licht logo + lichte links, tot je scrollt */
.site-header--on-dark:not(.is-scrolled) .logo--dark { display: none; }
.site-header--on-dark:not(.is-scrolled) .logo--light { display: block; }
.site-header--on-dark:not(.is-scrolled) .nav__link,
.site-header--on-dark:not(.is-scrolled) .nav__toggle,
.site-header--on-dark:not(.is-scrolled) .nav__lang,
.site-header--on-dark:not(.is-scrolled) .nav__lang a { color: var(--cream); }
.site-header--on-dark:not(.is-scrolled) .nav__link::after { background: var(--cream); }

.nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.7rem); }
.nav__list { display: flex; align-items: center; gap: clamp(0.8rem, 1.6vw, 1.5rem); }
.nav__link { white-space: nowrap; }
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest);
  padding-block: 0.4rem;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: right 0.28s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { right: 0; }

.nav__lang {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__lang { color: var(--forest); }
.nav__lang a { padding: 0.2rem 0.35rem; opacity: 0.5; border-radius: 6px; }
.nav__lang a[aria-current="true"] { opacity: 1; color: var(--gold-deep); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after  { transform: translateY(5px); }

/* ---------- 7. Hero (schermvullend beeld) ---------- */
.capture .hero { min-height: 680px !important; }
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(178deg, rgba(21, 41, 31, 0.5) 0%, rgba(21, 41, 31, 0) 26%, rgba(21, 41, 31, 0.1) 48%, rgba(20, 38, 28, 0.55) 78%, rgba(18, 34, 25, 0.9) 100%),
    linear-gradient(88deg, rgba(20, 38, 28, 0.62) 0%, rgba(20, 38, 28, 0.15) 42%, transparent 70%);
}
.hero__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding-block: clamp(7rem, 16vh, 10rem) clamp(3.2rem, 8vh, 5.5rem);
  position: relative;
}
.hero__content { max-width: 40rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  margin: 1.1rem 0 0;
  color: #fff;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.4rem);
  text-shadow: 0 2px 30px rgba(15, 30, 22, 0.45);
}
.hero h1 .accent { font-style: italic; color: var(--gold-soft); }
.hero__lead {
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 44ch;
  text-shadow: 0 1px 16px rgba(15, 30, 22, 0.4);
}
.hero .btn-row { margin-top: 2.1rem; }
.hero .btn--ghost { --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.55); }
.hero .btn--ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
  padding: 0.42rem 1rem 0.42rem 0.6rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__status .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.hero__status.is-open .dot {
  background: #7ed08a;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 208, 138, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(126, 208, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 208, 138, 0); }
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero__scroll svg { width: 1.1rem; height: 1.1rem; animation: nudge 1.8s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- 8. "De hele dag" — momentkaarten ---------- */
.moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.moment {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.moment:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.moment:hover .moment__img img { transform: scale(1.05); }
.moment__img { aspect-ratio: 5 / 4; overflow: hidden; background: var(--sage); }
.moment__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.moment__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.35rem 1.4rem; }
.moment h3 { margin-bottom: 0.15rem; }
.moment__time {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.moment p { margin-top: 0.55rem; font-size: 0.93rem; color: var(--muted); flex: 1; }
.moment .link-arrow { margin-top: 1rem; font-size: 0.88rem; }

/* ---------- 9. Split-blokken (intro / terras) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__body { max-width: 46ch; }
.split__body .eyebrow { margin-bottom: 1rem; }
.split__body h2 { margin-bottom: 1rem; }
.split__body p + p { margin-top: 0.9rem; }
.split__body .btn-row, .split__body .link-arrow { margin-top: 1.6rem; }

.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sage);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 3 / 2; }
.frame--arch { border-radius: 200px 200px var(--radius) var(--radius); }

.media-stack { position: relative; }
.media-stack__note {
  position: absolute;
  right: -0.5rem;
  bottom: -1.4rem;
  background: var(--clay);
  color: #fff;
  font-family: var(--font-script);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.7rem 1.2rem;
  border-radius: 16px 16px 16px 4px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

/* ---------- 10. Terras-sectie extra ---------- */
.terras__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.terras__points { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.terras__points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(243, 236, 221, 0.9);
}
.terras__points svg { width: 1.25rem; height: 1.25rem; color: var(--gold-soft); flex-shrink: 0; margin-top: 0.2rem; }

/* ---------- 11. Groepen ---------- */
.groepen__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.collage :nth-child(1) { grid-row: span 2; aspect-ratio: 3 / 4; }
.collage :nth-child(2) { aspect-ratio: 4 / 3; }
.collage :nth-child(3) { aspect-ratio: 4 / 3; }

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.5rem 0 0.4rem; }
.chip {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45em 0.95em;
  border-radius: var(--radius-pill);
  background: var(--sand);
  border: 1px solid var(--line);
  color: var(--forest);
}

/* ---------- 12. Arrangementen ---------- */
.arr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
.arr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  isolation: isolate;
}
.arr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.arr-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.arr-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 34, 25, 0) 22%, rgba(18, 34, 25, 0.35) 48%, rgba(18, 34, 25, 0.92) 100%);
  z-index: -1;
}
.arr-card__body { margin-top: auto; padding: 1.25rem 1.25rem 1.35rem; color: var(--cream); }
.arr-card__body h3 { color: var(--cream); font-size: 1.3rem; }
.arr-card__body p { font-size: 0.85rem; color: rgba(243, 236, 221, 0.8); margin-top: 0.2rem; }
.arr-note { margin-top: 1.6rem; font-size: 0.9rem; color: var(--muted); }

/* ---------- 13. Galerij ---------- */
.gallery {
  columns: 3;
  column-gap: clamp(0.7rem, 2vw, 1.1rem);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(0.7rem, 2vw, 1.1rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  background: var(--sage);
}
.gallery__item img { width: 100%; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(21, 41, 31, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  color: var(--cream);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__close { top: 1.1rem; right: 1.1rem; }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* ---------- 14. Reviews ---------- */
.reviews__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.6rem;
}
.score-badge {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
}
.score-badge b { font-size: 2.4rem; font-weight: 500; color: var(--forest); }
.score-badge span { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1.1rem; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.quote p { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--forest); }
.quote footer { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.quote .stars { font-size: 0.95rem; margin-bottom: 0.7rem; }

/* ---------- 15. Vind-ons / kaart ---------- */
.find__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.info-list { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.info-list__row { display: flex; gap: 0.9rem; }
.info-list__row svg { width: 1.4rem; height: 1.4rem; color: var(--gold-deep); flex-shrink: 0; margin-top: 0.15rem; }
.info-list__row h3 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.15rem; }
.info-list__row p, .info-list__row a { font-size: 1rem; color: var(--forest); }
.info-list__row a:hover { color: var(--gold-deep); }

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage);
  box-shadow: var(--shadow-md);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background:
    linear-gradient(rgba(18, 34, 25, 0.66), rgba(18, 34, 25, 0.66)),
    url("../assets/images/eetkamer-palmbomen-gevel.jpg") center / cover no-repeat;
  color: var(--cream);
}
.map-embed__placeholder p { font-size: 0.9rem; max-width: 34ch; }

/* ---------- 16. Sticky reserveerbalk (mobiel) ---------- */
.reserve-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 246, 234, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease);
}
.reserve-bar.is-visible { transform: translateY(0); }
.reserve-bar .btn { flex: 1; justify-content: center; padding-block: 0.85em; }
.reserve-bar .btn--tel {
  flex: 0 0 auto;
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  border-color: rgba(30, 58, 49, 0.28);
  padding-inline: 1em;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(243, 236, 221, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--gold-soft); }
.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2.6rem;
  margin-bottom: 2.6rem;
  border-bottom: 1px solid rgba(243, 236, 221, 0.14);
}
.site-footer__cta h2 { color: var(--cream); max-width: 18ch; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}
.site-footer__logo img { width: 190px; margin-bottom: 1.1rem; }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.site-footer ul { display: grid; gap: 0.55rem; }
.site-footer__socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.site-footer__socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(243, 236, 221, 0.24);
  border-radius: 50%;
}
.site-footer__socials svg { width: 1.1rem; height: 1.1rem; }
.site-footer__bottom {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(243, 236, 221, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ---------- 18. Mobiele navigatie-overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--forest);
  color: var(--cream);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.nav-overlay.is-open { transform: translateX(0); }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  padding-block: 0.35rem;
  border-bottom: 1px solid rgba(243, 236, 221, 0.12);
}
.nav-overlay .btn { margin-top: 1rem; align-self: flex-start; }
.nav-overlay__foot { margin-top: auto; font-size: 0.9rem; color: rgba(243, 236, 221, 0.7); }

.nav-overlay .nav__lang {
  display: flex;
  color: var(--cream);
  font-size: 0.95rem;
  gap: 0.5rem;
}
.nav-overlay .nav__lang a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-bottom: none;
  opacity: 0.6;
  border-radius: 6px;
  background: rgba(243, 236, 221, 0.08);
}
.nav-overlay .nav__lang a[aria-current="true"] { opacity: 1; color: var(--gold-soft); background: rgba(243, 236, 221, 0.16); }

body.nav-open { overflow: hidden; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: rotate(-45deg); }

/* ---------- 19. Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__badge, .hero__status.is-open .dot { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- 20. Kleine helpers ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--forest); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: 8px; z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.section--forest .lead { color: rgba(243, 236, 221, 0.82); }

/* =========================================================================
   21. Pagina-hero (binnenpagina's)
   ========================================================================= */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 52vh, 520px);
  padding-block: calc(var(--header-h) + 2rem) clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.page-hero--short { min-height: clamp(280px, 40vh, 400px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; background: var(--forest); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 41, 31, 0.55) 0%, rgba(21, 41, 31, 0.12) 40%, rgba(18, 34, 25, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 34, 25, 0.6), transparent 65%);
}
.page-hero__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.page-hero h1 { color: #fff; margin: 0.6rem 0 0; text-shadow: 0 2px 24px rgba(15, 30, 22, 0.4); }
.page-hero__lead {
  margin-top: 1rem;
  max-width: 46ch;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(15, 30, 22, 0.35);
}
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .btn-row { margin-top: 1.8rem; }

/* Broodkruimel */
.breadcrumb { font-size: 0.82rem; letter-spacing: 0.02em; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.4rem; color: rgba(255, 255, 255, 0.7); }
.breadcrumb li + li::before { content: "/"; color: rgba(255, 255, 255, 0.4); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }
/* op lichte pagina's */
.breadcrumb--dark li { color: var(--muted); }
.breadcrumb--dark li + li::before { color: var(--line); }
.breadcrumb--dark a { color: var(--forest); }
.breadcrumb--dark [aria-current] { color: var(--gold-deep); }

/* =========================================================================
   22. Menukaart
   ========================================================================= */
.menu-nav {
  position: sticky;
  top: 96px;
  z-index: 40;
  background: rgba(251, 246, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.menu-nav ul {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0.7rem var(--gutter);
  max-width: var(--wrap);
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: 0 0 auto;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.menu-nav a:hover { background: var(--sand-deep); }
.menu-nav a.is-active { background: var(--forest); color: var(--cream); }

.menu-group { padding-block: clamp(2.4rem, 5vw, 3.6rem); border-top: 1px solid var(--line); }
.menu-group:first-of-type { border-top: 0; }
.menu-group__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 1rem; margin-bottom: 1.6rem; }
.menu-group__head h2 { margin: 0; }
.menu-group__note { font-size: 0.9rem; color: var(--muted); font-style: italic; }

.menu-cols { columns: 2; column-gap: clamp(2rem, 5vw, 4rem); }
.menu-cols--one { columns: 1; max-width: 640px; }

.menu-item {
  break-inside: avoid;
  padding: 0.75rem 0;
}
.menu-item__top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.menu-item__name { font-weight: 600; color: var(--forest); }
.menu-item__tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--olive);
  border: 1px solid currentColor; border-radius: 4px;
  padding: 0.05em 0.3em; margin-left: 0.4rem; vertical-align: 0.15em;
}
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-0.25em); min-width: 1rem; }
.menu-item__price { font-weight: 600; color: var(--gold-deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item__desc { margin-top: 0.2rem; font-size: 0.9rem; color: var(--muted); max-width: 52ch; }

.menu-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.menu-download {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.menu-download:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-download svg { width: 1.6rem; height: 1.6rem; color: var(--gold-deep); flex-shrink: 0; }
.menu-download b { display: block; color: var(--forest); font-size: 0.98rem; }
.menu-download span { font-size: 0.8rem; color: var(--muted); }

.allergy-note {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(185, 138, 131, 0.14);
  border: 1px solid rgba(185, 138, 131, 0.4);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--forest);
}
.allergy-note svg { width: 1.3rem; height: 1.3rem; color: var(--rose); flex-shrink: 0; margin-top: 0.1rem; }

/* =========================================================================
   23. Lange tekst / prose
   ========================================================================= */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.4rem; }
.prose li { padding-left: 0.2rem; }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--forest); }

/* Blok met randkleur (feature / info) */
.callout {
  border-left: 4px solid var(--gold);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
}
.section--forest .callout { background: rgba(255,255,255,0.06); border-left-color: var(--gold-soft); }

/* =========================================================================
   24. FAQ (details/summary)
   ========================================================================= */
.faq { max-width: 760px; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  color: var(--forest);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 0.7rem; height: 0.7rem; flex-shrink: 0;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item > div { padding-bottom: 1.2rem; color: var(--muted); max-width: 62ch; }
.faq__item > div > * + * { margin-top: 0.7rem; }

/* =========================================================================
   25. Formulieren
   ========================================================================= */
.form-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--forest); }
.field label .req { color: var(--clay); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(156, 117, 19, 0.16);
}
.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid { border-color: var(--clay); }
.field__hint { font-size: 0.78rem; color: var(--muted); }

.form__foot { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.form__foot .btn { padding-block: 0.9em; }
.form__consent { font-size: 0.8rem; color: var(--muted); max-width: 40ch; }
.form__consent a { color: var(--gold-deep); text-decoration: underline; }

/* honeypot — verborgen voor mensen */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}
.form__status.is-ok { display: block; background: rgba(79, 157, 93, 0.14); border: 1px solid rgba(79, 157, 93, 0.4); color: #2f6b3c; }
.form__status.is-err { display: block; background: rgba(198, 124, 87, 0.14); border: 1px solid rgba(198, 124, 87, 0.45); color: #9a4a28; }
.form.is-sending .btn[type="submit"] { opacity: 0.6; pointer-events: none; }

/* Zijkaart naast formulier */
.aside-card {
  background: var(--forest);
  color: rgba(243, 236, 221, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.aside-card h2, .aside-card h3 { color: var(--cream); }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.aside-card .info-list { margin-top: 1rem; }
.aside-card .info-list__row svg { color: var(--gold-soft); }
.aside-card .info-list__row h3 { color: rgba(243, 236, 221, 0.6); }
.aside-card .info-list__row p,
.aside-card .info-list__row a { color: var(--cream); font-size: 0.95rem; }
.aside-card hr { border: 0; border-top: 1px solid rgba(243, 236, 221, 0.16); margin: 1.4rem 0; }

/* =========================================================================
   26. Diverse blokken
   ========================================================================= */
/* Stappen (1-2-3) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); counter-reset: step; }
.step { }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--gold-deep); color: #fff;
  font-family: var(--font-display); font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.92rem; color: var(--muted); }
.section--forest .step p { color: rgba(243, 236, 221, 0.8); }

/* Feature-rij met icoon */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.2rem); }
.feature svg { width: 2rem; height: 2rem; color: var(--gold-deep); margin-bottom: 0.7rem; }
.feature h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.feature p { font-size: 0.93rem; color: var(--muted); }
.section--forest .feature svg { color: var(--gold-soft); }
.section--forest .feature p { color: rgba(243, 236, 221, 0.8); }

/* Arrangement-detail */
.arr-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.2rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.arr-detail:first-of-type { border-top: 0; }
.arr-detail--flip .arr-detail__media { order: 2; }
.arr-detail__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); background: var(--sage); }
.arr-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.arr-detail h2 { margin-bottom: 0.3rem; }
.arr-detail .price-line { font-family: var(--font-display); color: var(--gold-deep); font-size: 1.15rem; margin-bottom: 0.9rem; }
.arr-detail p + .btn-row { margin-top: 1.4rem; }

/* Vacature-kaart */
.job-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.job-card h3 { margin-bottom: 0.3rem; }
.job-card__meta { font-size: 0.82rem; color: var(--clay); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.8rem; }
.job-card ul { list-style: none; padding: 0; margin: 0.9rem 0 0; display: grid; gap: 0.4rem; }
.job-card li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--muted); }
.job-card li svg { width: 1.1rem; height: 1.1rem; color: var(--gold-deep); flex-shrink: 0; margin-top: 0.2rem; }

/* Kaarten-grid (algemeen) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.93rem; color: var(--muted); }
.card .link-arrow { margin-top: 1rem; font-size: 0.88rem; }

/* 404 */
.notfound { text-align: center; padding-block: clamp(5rem, 14vh, 9rem); }
.notfound h1 { font-size: clamp(3rem, 8vw, 6rem); }

/* =========================================================================
   27. Agenda / evenementen
   ========================================================================= */
.agenda-list { display: grid; gap: 1rem; max-width: 820px; }
.agenda-month {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.4rem;
  margin: 2rem 0 0.3rem;
}
.agenda-month:first-child { margin-top: 0; }

.event {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.4rem;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.event__poster {
  grid-row: 1 / -1;
  grid-column: 3;
  align-self: center;
  width: clamp(96px, 12vw, 132px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.event__poster img { width: 100%; height: 100%; object-fit: cover; }
.event__date {
  text-align: center;
  border-radius: 12px;
  background: var(--forest);
  color: var(--cream);
  padding: 0.55rem 0.35rem 0.65rem;
}
.event__day { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.event__mon {
  display: block; margin-top: 0.25rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft);
}
.event.is-today .event__date { background: var(--gold-deep); }
.event__body h3 { margin-bottom: 0.25rem; }
.event__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0.85rem;
  margin-bottom: 0.55rem; font-size: 0.82rem; color: var(--muted);
}
.event__cat {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid currentColor; border-radius: 4px; padding: 0.12em 0.5em;
}
.event__when { display: inline-flex; align-items: center; gap: 0.35rem; }
.event__when svg { width: 0.95rem; height: 0.95rem; }
.event__body p { font-size: 0.93rem; color: var(--muted); }
.event__body .link-arrow { margin-top: 0.85rem; font-size: 0.88rem; }

.agenda-empty {
  text-align: center;
  padding: 2.6rem 1.4rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed rgba(30, 58, 49, 0.28);
  border-radius: var(--radius);
  max-width: 820px;
}
.agenda-empty a { color: var(--gold-deep); text-decoration: underline; }

/* Agenda-teaser op de homepage (donkere sectie) */
.teaser-grid { display: grid; gap: 1rem; }
.teaser-grid--n1 { grid-template-columns: minmax(260px, 460px); }
.teaser-grid--n2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.teaser-grid--n3 { grid-template-columns: repeat(3, 1fr); }
.teaser-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(243, 236, 221, 0.16);
  border-radius: var(--radius);
  color: inherit;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.teaser-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.teaser-card__date {
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--gold-soft);
}
.teaser-card__date b { display: block; font-size: 1.7rem; color: var(--cream); }
.teaser-card__date span { font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; }
.teaser-card h3 { color: var(--cream); font-size: 1.1rem; margin: 0.2rem 0 0.3rem; }
.teaser-card p {
  font-size: 0.83rem;
  color: rgba(243, 236, 221, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.teaser-cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-soft); }
