/* =================================================================
   De Bourgondiër — Traiteur | huisstijl-stylesheet
   Kleuren afgeleid uit het logo: crimson #C8102E → bordeaux #8E0A1E
   ================================================================= */

:root {
  /* Merkkleuren */
  --red:         #c8102e;
  --red-bright:  #e11d38;
  --red-dark:    #8e0a1e;
  --red-deep:    #6f0816;

  /* Neutralen */
  --ink:    #1a1a1a;
  --char:   #2b2b2b;
  --grey:   #6b6b6b;
  --grey-l: #9a9a9a;
  --line:   #ece8e6;
  --bg:     #ffffff;
  --bg-soft:#faf7f5;
  --cream:  #f6efe9;

  /* Vorm & schaduw */
  --radius:   14px;
  --radius-s: 10px;
  --shadow:    0 10px 30px rgba(20,10,12,.08);
  --shadow-lg: 0 24px 60px rgba(20,10,12,.16);

  /* Layout */
  --container: 1180px;
  --header-h: 84px;

  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--char);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 600; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--grey); }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 10px; }
.section-intro { max-width: 640px; margin: 0 auto 56px; }
.section-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; box-shadow: 0 8px 22px rgba(200,16,46,.32);
}
.btn--primary:hover { box-shadow: 0 12px 30px rgba(200,16,46,.45); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn--ghost:hover { background: var(--red); color: #fff; }
.btn--light { background: #fff; color: var(--red-dark); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }

/* =================================================================
   Header
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(20,10,12,.07); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.nav__logo img { height: 52px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 16px; font-weight: 500; font-size: .98rem;
  color: var(--char); border-radius: 8px; transition: color .18s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--red); }
.nav__cta { margin-left: 12px; }

/* Dropdown (Aanbod) */
.nav__item--has-drop { position: relative; }
.nav__drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav__drop-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.nav__drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 50;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav__item--has-drop:hover .nav__drop,
.nav__item--has-drop:focus-within .nav__drop,
.nav__drop.open { opacity: 1; visibility: visible; transform: none; }
.nav__item--has-drop:hover .nav__drop-toggle svg,
.nav__drop.open + .nav__drop-toggle svg { transform: rotate(180deg); }
.nav__drop a {
  display: block; padding: 11px 14px; border-radius: 8px; font-size: .95rem;
  font-weight: 500; color: var(--char); transition: background .15s ease, color .15s ease;
}
.nav__drop a:hover, .nav__drop a.active { background: #fbe7ea; color: var(--red-dark); }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; padding: 10px; border-radius: 10px;
}
.nav__toggle span {
  display: block; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.hero__media {
  position: absolute; inset: 0;
  background: url("../img/foto/buffet1.jpg") center/cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* Geen overlay op de video — tekst blijft leesbaar via text-shadow */
.hero__inner {
  position: relative; z-index: 2;
  min-height: calc(86vh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0; max-width: 720px;
}
.hero__eyebrow {
  font-size: .82rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: #ffe2e7; margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.06;
  letter-spacing: -.01em; margin-bottom: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4);
}
.hero h1 .script {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.12em; color: #ffe2e7;
}
.hero p {
  font-size: 1.2rem; color: #fff; max-width: 560px; margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Snelle USP-balk onder hero */
.usps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: -46px; position: relative; z-index: 5;
}
.usp {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
}
.usp__icon {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; display: grid; place-items: center;
}
.usp__icon svg { width: 24px; height: 24px; }
.usp h3 { font-size: 1.05rem; margin-bottom: 3px; }
.usp p { font-size: .92rem; color: var(--grey); line-height: 1.5; }

/* =================================================================
   Video-showcase
   ================================================================= */
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .video-frame { aspect-ratio: 4 / 3; } }

/* =================================================================
   Intro / over-blok
   ================================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split__media img, .split__media .ph {
  border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%;
}
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.split p + p { margin-top: 14px; }
.split .grey { color: var(--grey); }
.checklist { margin-top: 24px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { flex: 0 0 22px; color: var(--red); margin-top: 3px; }

/* =================================================================
   Aanbod-kaarten
   ================================================================= */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card__body p { color: var(--grey); font-size: .96rem; flex: 1; }
.card__link {
  margin-top: 16px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 7px;
}
.card__link svg { transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Detail-blokken op aanbodpagina */
.offer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 60px 0; border-bottom: 1px solid var(--line);
}
.offer:last-child { border-bottom: 0; }
.offer:nth-child(even) .offer__media { order: 2; }
.offer__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.offer h3 { font-size: 1.7rem; margin-bottom: 14px; }
.offer p { color: var(--grey); }
.offer .tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: .85rem; font-weight: 500; color: var(--red-dark);
  background: #fbe7ea; border: 1px solid #f3cdd4; padding: 6px 14px; border-radius: 999px;
}

/* =================================================================
   Gerechten-grid (aanbod-subpagina's)
   ================================================================= */
.dishes {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 40px 30px;
}
.dish {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dish__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__img img { transform: scale(1.07); }
.dish__body { padding: 20px 22px 22px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.dish__body h3 { font-size: 1.18rem; margin-bottom: 6px; }
.dish__body p { font-size: .92rem; color: var(--grey); line-height: 1.55; margin-bottom: 22px; }

.intro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.intro-row__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.intro-row h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.intro-row p { color: var(--grey); }
@media (max-width: 860px) { .intro-row { grid-template-columns: 1fr; gap: 28px; } }

/* =================================================================
   Menu's, pakketten & prijstabellen (aanbod-subpagina's)
   ================================================================= */
.buffet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.buffet-grid--prices { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 680px) { .buffet-grid--prices { grid-template-columns: 1fr; } }
.menu-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.menu-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card__body { padding: 22px 24px 26px; flex: 1; }
.menu-card__body > p { font-size: .9rem; color: var(--grey); margin-bottom: 16px; line-height: 1.55; }
.menu-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.menu-card__head h3 { font-size: 1.3rem; }
.price-badge {
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  font-weight: 600; font-size: .88rem; padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}

.menu-list { display: grid; gap: 10px; }
.menu-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--char); }
.menu-list li::before {
  content: ""; flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); margin-top: 8px;
}

/* Menugroepen (warm buffet, à la carte) — als nette kaarten */
.menu-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 26px; align-items: start; }
.menu-group {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red);
  border-radius: var(--radius); padding: 26px 28px 28px; box-shadow: var(--shadow); break-inside: avoid;
}
.menu-group h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 4px; }
.menu-group > p { font-size: .9rem; color: var(--grey); margin-bottom: 16px; }
.menu-group .menu-list { padding-top: 4px; }
.price-list li:last-child { border-bottom: 0; }

/* PDF-downloadknop */
.pdf-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: auto; white-space: nowrap;
  font-weight: 600; font-size: .88rem; color: var(--red-dark);
  background: #fbe7ea; border: 1px solid #f3cdd4; padding: 9px 16px; border-radius: 999px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.pdf-link:hover { background: var(--red); color: #fff; border-color: var(--red); }
.pdf-link svg { width: 16px; height: 16px; }

/* Prijslijst (à la carte) */
.price-list { display: grid; gap: 0; }
.price-list li {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .95rem;
}
.price-list li > span:first-child { flex: 1; min-width: 0; overflow-wrap: break-word; }
.price-list li .p { color: var(--red-dark); font-weight: 600; white-space: nowrap; flex-shrink: 0; text-align: right; }

/* Pakketten (barbecue) */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 16px; }
.pkg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease; position: relative;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg--featured { border: 2px solid var(--red); box-shadow: var(--shadow-lg); }
.pkg--featured::before {
  content: "Aanbevolen"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 15px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(200,16,46,.35);
}
.pkg__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.pkg__head h3 { font-size: 1.2rem; flex: 1; min-width: 0; overflow-wrap: break-word; }
.pkg__price { color: var(--red-dark); font-weight: 700; font-size: 1.02rem; white-space: nowrap; flex-shrink: 0; }
.pkg__sub { font-size: .86rem; color: var(--grey); margin-bottom: 14px; }
.pkg ul { display: grid; gap: 8px; margin-top: 4px; }
.pkg li { font-size: .95rem; color: var(--char); padding-left: 18px; position: relative; }
.pkg li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Prijstabel */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 460px; }
.price-table th, .price-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table thead th { background: var(--red-dark); color: #fff; font-weight: 600; }
.price-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.price-table td:first-child, .price-table th:first-child { text-align: left; font-weight: 500; }

/* Info-/notitieblok */
.notes {
  margin-top: 26px; background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--red); border-radius: var(--radius-s); padding: 18px 22px;
  font-size: .95rem; color: var(--grey);
}
.notes p + p { margin-top: 6px; }

.menu-subtitle { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0 30px; }
.menu-subtitle::after {
  content: ""; display: block; width: 54px; height: 3px; border-radius: 2px;
  background: var(--red); margin: 14px auto 0;
}

@media (max-width: 720px) { .menu-groups { grid-template-columns: 1fr; gap: 28px; } }

/* =================================================================
   Galerij
   ================================================================= */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-s); cursor: pointer;
  aspect-ratio: 1/1; background: var(--cream);
}
.gallery__item:nth-child(4n+1) { grid-row: span 2; aspect-ratio: 1/2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(111,8,22,.45));
  opacity: 0; transition: opacity .25s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(15,4,7,.92); align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.4rem;
  display: grid; place-items: center; transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* =================================================================
   Feestlocatie
   ================================================================= */
.feest-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feest-thumbs img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (max-width: 760px) { .feest-thumbs { grid-template-columns: 1fr; } }

/* =================================================================
   Reviews
   ================================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
}
.review__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.review p { color: var(--char); font-style: italic; margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; display: grid; place-items: center; font-weight: 600;
}
.review__author strong { display: block; font-size: .98rem; color: var(--ink); }
.review__author span { font-size: .85rem; color: var(--grey); }

/* =================================================================
   FAQ
   ================================================================= */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 4px; font-size: 1.08rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}
.faq__q .icon {
  flex: 0 0 24px; width: 24px; height: 24px; position: relative; transition: transform .3s ease;
}
.faq__q .icon::before, .faq__q .icon::after {
  content: ""; position: absolute; background: var(--red); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq__q .icon::before { width: 14px; height: 2.5px; }
.faq__q .icon::after  { width: 2.5px; height: 14px; transition: transform .3s ease; }
.faq__item.open .faq__q .icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 4px 22px; color: var(--grey); }

/* =================================================================
   CTA-band
   ================================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red)); color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; }

/* =================================================================
   Pagina-kop (sub-pagina's)
   ================================================================= */
.page-head {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fff; padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: url("../img/foto/buffet3.jpg") center/cover; opacity: .16;
}
.page-head__inner { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.page-head p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: #ffd9df; margin-bottom: 16px; letter-spacing: .04em; }
.breadcrumb a:hover { text-decoration: underline; }

/* =================================================================
   Contact / formulier
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__ic {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
  background: #fbe7ea; color: var(--red-dark); display: grid; place-items: center;
}
.contact-info__ic svg { width: 22px; height: 22px; }
.contact-info h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-info a, .contact-info p { color: var(--grey); }
.contact-info a:hover { color: var(--red); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: var(--radius-s);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 4px rgba(200,16,46,.10);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--red-bright); }
.field .error { display: none; color: var(--red-bright); font-size: .82rem; margin-top: 5px; }
.field .error.show { display: block; }
.form__note { font-size: .85rem; color: var(--grey-l); margin-top: 6px; }
.form__alert { padding: 15px 18px; border-radius: var(--radius-s); margin-bottom: 22px; font-size: .95rem; }
.form__alert--ok  { background: #e8f6ec; border: 1px solid #bfe6c9; color: #1e6b34; }
.form__alert--err { background: #fdeaec; border: 1px solid #f4c2c9; color: #9a1224; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* =================================================================
   Footer
   ================================================================= */
.footer { background: #161113; color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer__logo { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer p { font-size: .94rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer__links li + li { margin-top: 10px; }
.footer__links a { font-size: .94rem; transition: color .18s ease; }
.footer__links a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .94rem; }
.footer__contact svg { flex: 0 0 18px; color: var(--red-bright); margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* =================================================================
   Scroll-reveal animatie
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 980px) {
  .usps { grid-template-columns: 1fr; margin-top: -30px; }
  .split, .offer, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .offer:nth-child(even) .offer__media { order: 0; }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(4n+1) { grid-row: auto; aspect-ratio: 1/1; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 18px 18px 26px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { display: block; padding: 16px 12px; border-radius: 8px; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 10px 0 0; width: 100%; justify-content: center; }
  .nav__toggle { display: block; }
  /* Dropdown wordt inline op mobiel */
  /* Op mobiel geen uitklapmenu: "Aanbod" navigeert naar de overzichtspagina */
  .nav__drop { display: none; }
  .nav__drop-toggle svg { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  /* Hero-video volledig tonen i.p.v. bijsnijden */
  .hero { background: #000; }
  .hero__inner { display: none; min-height: 0; padding: 0; }
  .hero__media { position: relative; }
  .hero__video { position: relative; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .gallery { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
