/* ═══════════════════════════════════════
   RESET & VARS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9965A;
  --gold-light: #DDB98A;
  --gold-pale:  #F0E4D0;
  --cream:      #FAF8F4;
  --offwhite:   #F5F1EB;
  --dark:       #1C1814;
  --heading:    #3A3A3A;
  --mid:        #6B5E50;
  --light-mid:  #9E8E7E;
  --bar:        #C9965A;
  --nav-h:      72px;
  --top-h:      30px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  font-size: 15px;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════
   PAGES (SPA routing)
═══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.topbar {
  background: var(--bar);
  height: var(--top-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 200;
}
.topbar-right { display: flex; align-items: center; gap: 28px; }
.topbar a { color: rgba(255,255,255,0.9); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; transition: color .2s, border-color .2s; }
.topbar a:hover { color: #fff; }
.topbar-contact { border: 1px solid rgba(255,255,255,0.45); border-radius: 3px; padding: 4px 12px; cursor: pointer; }
.topbar-contact:hover { border-color: rgba(255,255,255,0.9); }
.topbar .phone-wrap { display: flex; align-items: center; gap: 7px; }
.topbar .phone-wrap svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,150,90,0.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-group { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--mid);
  transition: color .2s;
  padding: 4px 0;
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.gold { color: var(--gold); }
.nav-link.gold:hover { color: var(--gold-light); }

.logo-link {
  cursor: pointer;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
}
.logo-link:hover { opacity: .75; }

/* ═══════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════ */
.label-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading);
}

.body-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}
.btn-solid {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}
.btn-white {
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-white:hover {
  background: #fff;
  color: var(--gold);
}

/* Placeholder visuals */
.vis {
  background: linear-gradient(135deg, #e8ddd2 0%, #d4c4b0 40%, #c0ae96 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.vis::after {
  content: attr(data-label);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.vis-dark {
  background: linear-gradient(135deg, #3a3028 0%, #2a2218 100%);
}

/* Section divider */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

/* Page hero banner */
.page-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .vis {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.7) 0%, rgba(28,24,20,0.2) 60%, transparent 100%);
}
.page-hero-text {
  position: relative;
  z-index: 2;
  padding: 52px;
  color: #fff;
}
.page-hero-text .label-tag { color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.page-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   NEWSLETTER (shared)
═══════════════════════════════════════ */
.newsletter {
  background: var(--dark);
  padding: clamp(40px,6vw,72px) clamp(20px,5vw,52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.newsletter p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.7;
}
.nl-form {
  display: flex;
  max-width: 440px;
  width: 100%;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--gold); }
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .2s;
}
.nl-form button:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════
   GEDEELDE FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #141210;
  padding: 64px 52px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-faq { display: flex; flex-direction: column; margin-top: 4px; }
.footer-faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-faq-q {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color .2s;
}
.footer-faq-q:hover { color: rgba(255,255,255,0.85); }
.footer-faq-q::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.footer-faq-item.open .footer-faq-q::after { transform: rotate(45deg); }
.footer-faq-a {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding-bottom: 0;
}
.footer-faq-item.open .footer-faq-a {
  max-height: 300px;
  padding-bottom: 14px;
}
.footer-logo { margin-bottom: 16px; cursor: pointer; }
.site-footer p, .site-footer address {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  font-weight: 300;
}
.site-footer a { color: rgba(255,255,255,0.45); transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.social-row { display: flex; gap: 20px; margin-top: 20px; }
.social-row a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201,150,90,0.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.social-row a:hover { border-color: var(--gold-light); }
.footer-cadeau {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,150,90,0.45);
  padding: 7px 14px;
  border-radius: 2px;
  transition: background .2s, border-color .2s;
}
.footer-cadeau:hover { background: rgba(201,150,90,0.1); border-color: var(--gold-light); }
@media (max-width: 768px) {
  .site-footer { padding: 48px 20px 0; }
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */
/* Hero */
.home-hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - var(--nav-h) - var(--top-h));
  max-height: 820px;
}
.home-hero-img {
  height: 100%;
  min-height: 600px;
}
.home-hero-img .vis { height: 100%; }
.home-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 80px;
  gap: 28px;
}
.home-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.home-hero-text .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--mid);
  max-width: 330px;
}

/* Verhaal strip */
.verhaal-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.verhaal-strip-text {
  padding: 88px 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.verhaal-strip-img { height: 540px; }
.verhaal-strip-img .vis { height: 100%; transition: transform .7s ease; }
.verhaal-strip-img:hover .vis { transform: scale(1.02); }

/* Pijlers */
.pijlers-wrap {
  background: var(--offwhite);
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}
.pijlers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.pijler {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s;
}
.pijler:hover { background: var(--gold-pale); }
.pijler-icon {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 4px;
}
.pijler h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}
.pijler p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

/* Gerechten */
.gerechten-wrap {
  background: var(--cream);
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 56px;
}
.gerechten-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gerecht-card { display: flex; flex-direction: column; gap: 16px; }
.gerecht-img {
  height: 270px;
  overflow: hidden;
}
.gerecht-img .vis { height: 100%; transition: transform .5s ease; }
.gerecht-card:hover .gerecht-img .vis { transform: scale(1.04); }
.gerecht-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}
.gerecht-card p { font-size: 13px; color: var(--light-mid); line-height: 1.65; }
.gerecht-tag { font-size: 10px !important; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold) !important; font-weight: 500; margin-top: -8px; }

/* Winemoments */
.winemoments {
  background: #fff;
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}
.winemoments-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.winemoments-img { height: 400px; }
.winemoments-img .vis { height: 100%; }
.winemoments-text { display: flex; flex-direction: column; gap: 24px; }

/* Quote strip */
.quote-strip {
  background: var(--gold);
  padding: 60px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.quote-strip blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 700px;
  font-weight: 400;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   RESTAURANT PAGE
═══════════════════════════════════════ */

/* Split hero */
.rest-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.rest-hero-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--cream);
}
.rest-hero-logo { height: 44px; width: auto; margin-bottom: 8px; }
.rest-hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.0;
  color: var(--heading);
  letter-spacing: 0.01em;
}
.rest-hero-tagline {
  font-size: 16px;
  font-style: italic;
  color: var(--mid);
  font-weight: 300;
}
.rest-hero-intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  max-width: 480px;
}
.rest-hero-intro strong { color: var(--heading); font-weight: 500; }
.rest-hero-img { overflow: hidden; }
.rest-hero-img img,
.rest-hero-img .vis { height: 100%; width: 100%; object-fit: cover; }

/* Full-width band */
.rest-band {
  height: 400px;
  overflow: hidden;
}
.rest-band img,
.rest-band .vis { height: 100%; width: 100%; object-fit: cover; }

/* Team-intro & Verhaal */
.rest-intro {
  background: var(--dark);
  padding: clamp(40px,6vw,80px) clamp(20px,5vw,52px);
  text-align: center;
}
.rest-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.rest-intro-inner p {
  font-size: 16px;
  line-height: 1.95;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.rest-intro-inner strong { color: var(--gold-light); font-weight: 500; }

.rest-verhaal {
  padding: clamp(48px,7vw,96px) clamp(20px,5vw,52px);
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.rest-verhaal-label { display: flex; flex-direction: column; gap: 16px; }
.rest-verhaal-label h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.rest-verhaal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.rest-verhaal-body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--mid);
  font-weight: 300;
}
.rest-verhaal-body p:last-child {
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  border-left: 2px solid rgba(201,150,90,0.4);
  padding-left: 20px;
}
@media (max-width: 768px) {
  .rest-intro { padding: 60px 20px; }
  .rest-verhaal { grid-template-columns: 1fr; gap: 36px; padding: 60px 20px; }
  .rest-ruimte-img { height: 140px; }
}

/* Formules,"Waar heb je zin in?" */
.rest-formules {
  padding: clamp(48px,7vw,96px) clamp(20px,5vw,52px);
  background: #fff;
}
.rest-formules-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.rest-formules-heading h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--heading);
}
.rest-formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.rest-formule { display: flex; flex-direction: column; gap: 6px; }
.rest-formule-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}
.rest-formule h3 { font-size: 14px; font-weight: 500; color: var(--heading); letter-spacing: 0.02em; }
.rest-formule .when { font-size: 11px; color: var(--light-mid); font-style: italic; }
.rest-formule p { font-size: 12.5px; line-height: 1.75; color: var(--mid); font-weight: 300; }
.rest-formule .price { font-size: 12px; font-weight: 300; font-style: italic; letter-spacing: 0.06em; color: var(--gold); margin-top: 4px; }
.rest-formule a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* Ruimtes */
.rest-ruimtes {
  background: var(--offwhite);
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}
.rest-ruimtes-header {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rest-ruimtes-header h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 500; color: var(--heading); }
.rest-ruimtes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rest-ruimte { display: flex; flex-direction: column; }
.rest-ruimte-img { height: 260px; overflow: hidden; }
.rest-ruimte-img .vis { height: 100%; transition: transform .5s; }
.rest-ruimte:hover .rest-ruimte-img .vis { transform: scale(1.04); }
.rest-ruimte-body { padding: 18px 4px; display: flex; flex-direction: column; gap: 8px; }
.rest-ruimte-body h3 { font-size: 18px; font-weight: 500; color: var(--heading); }
.rest-ruimte-body p { font-size: 13px; line-height: 1.75; color: var(--light-mid); font-weight: 300; }
.rest-ruimte-body .personen {
  font-size: 12px; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}
.personen-icon { width: 14px; height: 14px; }

/* Testimonial */
.rest-testimonial {
  background: var(--dark);
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
  text-align: center;
}
.rest-testimonial h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.rest-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 20px; }
.rest-testimonial blockquote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.8;
}
.rest-testimonial cite {
  font-size: 12px;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   PRIVATE DINING
═══════════════════════════════════════ */
.pd-intro {
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
  background: #fff;
}
.pd-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.pd-intro-text { display: flex; flex-direction: column; gap: 24px; }
.pd-ruimtes { padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); background: var(--offwhite); }

/* ═══════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════ */

/* Winemoments */
.ev-intro { background: var(--cream); padding: 64px 52px; border-bottom: 1px solid rgba(201,150,90,0.12); }
.ev-intro-inner { max-width: 680px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 20px; }
.ev-intro-inner p { font-size: 15px; line-height: 1.9; color: var(--mid); font-weight: 300; }
.ev-wm { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.ev-wm-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start;
}
.ev-wm-info { display: flex; flex-direction: column; gap: 20px; }
.ev-wm-info h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 500; line-height: 1.1; color: var(--heading); }
.ev-wm-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px;
}
.ev-wm-pill {
  background: var(--gold-pale); color: var(--gold);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 20px;
}
.ev-cadeaubon {
  background: var(--offwhite); border-left: 3px solid var(--gold);
  padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; margin-top: 8px;
}
.ev-cadeaubon-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ev-cadeaubon p { font-size: 13.5px; line-height: 1.7; color: var(--mid); font-weight: 300; }
.ev-cadeaubon strong { color: var(--dark); font-weight: 500; }

/* Event list */
.ev-list { display: flex; flex-direction: column; gap: 0; }
.ev-item {
  display: grid; grid-template-columns: 72px 1fr;
  align-items: center; gap: 0;
  padding: 16px 0; border-bottom: 1px solid var(--gold-pale);
  transition: background .2s; cursor: default;
}
.ev-item:first-child { border-top: 1px solid var(--gold-pale); }
.ev-item:hover { background: var(--offwhite); margin: 0 -12px; padding: 16px 12px; }
.ev-date {
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.05em; line-height: 1.2;
}
.ev-date-btn {
  cursor: pointer;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.ev-date-btn:hover { color: var(--gold-light); border-color: var(--gold-light); }
.ev-item.past .ev-date-btn { cursor: default; border-bottom-color: transparent; pointer-events: none; }
.ev-name { font-size: 14px; font-weight: 400; color: var(--heading); }
.ev-name .ev-extra { font-size: 11.5px; color: var(--light-mid); font-weight: 300; margin-left: 6px; }
.ev-item.past .ev-date, .ev-item.past .ev-name { opacity: 0.4; }
.ev-item.past { pointer-events: none; cursor: default; }
.ev-item-link { cursor: pointer; }
.ev-item-link .ev-name { border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; display: inline; }
.ev-item-link:hover .ev-name { color: var(--gold); border-bottom-color: rgba(201,150,90,0.4); }

/* Custom events */
/* Wijngaard Pop-up */
.ev-popup { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.ev-wineexp { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.ev-wineexp-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ev-wineexp-text { display: flex; flex-direction: column; gap: 20px; }
.ev-wineexp-img { overflow: hidden; }
.ev-popup-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ev-popup-img { overflow: hidden; }
.ev-popup-text { display: flex; flex-direction: column; gap: 20px; }
.ev-popup-items { display: flex; flex-direction: column; gap: 10px; }
.ev-popup-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mid); font-weight: 300; }
.ev-popup-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.ev-custom { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.ev-custom-inner { max-width: 1100px; margin: 0 auto; }
.ev-custom-open {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ev-custom-open-img { overflow: hidden; }
.ev-custom-open-text { display: flex; flex-direction: column; gap: 20px; }
.ev-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ev-tag {
  background: #fff; border: 1px solid var(--gold-pale);
  color: var(--mid); font-size: 12.5px; font-weight: 400;
  padding: 6px 14px; border-radius: 20px;
  transition: border-color .2s, color .2s;
}
.ev-tag:last-child { color: var(--gold); font-style: italic; border-style: dashed; }

/* Calendar */
.ev-calendar { background: var(--cream); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.ev-calendar-header { text-align: center; margin-bottom: 52px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ev-calendar-header h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 500; color: var(--heading); }
.ev-legend { display: flex; gap: 24px; justify-content: center; margin-top: 4px; }
.ev-legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); font-weight: 400; }
.ev-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ev-legend-dot.wine { background: var(--gold); }
.ev-legend-dot.regional { background: #6A9E6A; }
.cal-months-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.cal-month { background: #fff; padding: 20px; }

/* Mobile carousel wrapper: arrow | card | arrow */
.carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.carousel-wrap > div { flex: 1; min-width: 0; }
.carousel-arrow {
  flex-shrink: 0;
  align-self: center;
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  padding: 0;
}
.carousel-arrow:hover:not(:disabled) { background: var(--gold); color: #fff; }
.carousel-arrow:disabled { opacity: 0.2; cursor: default; }

/* Mobile calendar arrow nav */
.cal-mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto 20px;
  gap: 16px;
}
.cal-arrow {
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.cal-arrow:hover:not(:disabled) { background: var(--gold); color: #fff; }
.cal-arrow:disabled { opacity: 0.25; cursor: default; }
.cal-month-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: 0.04em;
  text-align: center;
  flex: 1;
}

.cal-month-header {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--heading);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-pale);
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-header {
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--light-mid); text-align: center; padding: 4px 0 6px;
  text-transform: uppercase;
}
.cal-day {
  font-size: 11px; text-align: center; padding: 5px 2px;
  color: var(--mid); border-radius: 4px; position: relative; cursor: default;
}
.cal-day.empty { background: none; }
.cal-day.wine {
  background: var(--gold); color: #fff; font-weight: 600; cursor: pointer;
  border-radius: 50%; width: 26px; height: 26px; line-height: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.cal-day.regional {
  background: #6A9E6A; color: #fff; font-weight: 600; cursor: pointer;
  border-radius: 50%; width: 26px; height: 26px; line-height: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.cal-day.wine:hover, .cal-day.regional:hover { opacity: .85; }
.cal-day.past { opacity: 0.35; pointer-events: none; }
.cal-day.today {
  box-shadow: 0 0 0 2px #7D2035;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.cal-tooltip-wrap { position: relative; display: contents; }
.cal-day[data-label]:hover::after {
  content: attr(data-label);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--dark); color: #fff;
  font-size: 10px; font-weight: 400; letter-spacing: 0.03em;
  white-space: nowrap; padding: 5px 10px; border-radius: 3px; z-index: 10;
  pointer-events: none;
}

@media (max-width: 900px) {
  .ev-wm-inner, .ev-custom-open, .ev-popup-inner { grid-template-columns: 1fr; gap: 48px; }
  .cal-months-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   BUSINESS
═══════════════════════════════════════ */
.biz-intro {
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
  background: var(--cream);
}
.biz-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.biz-img { height: 480px; }
.biz-img .vis { height: 100%; }
.biz-text { display: flex; flex-direction: column; gap: 24px; }

/* Use-case grid */
.biz-usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.biz-usecase {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s;
}
.biz-usecase:hover { background: var(--gold-pale); }
.biz-usecase svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.biz-usecase h3 { font-size: 14px; font-weight: 500; color: var(--heading); }
.biz-usecase p { font-size: 13px; line-height: 1.7; color: var(--mid); font-weight: 300; }
.voordelen {
  background: #fff;
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}
.voordelen-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
}
.voordeel {
  padding: 24px 28px;
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.voordeel-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.voordeel p { font-size: 14px; line-height: 1.65; color: var(--mid); font-weight: 300; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-wrap {
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
  background: var(--cream);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 88px;
}
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.contact-detail { display: flex; flex-direction: column; gap: 8px; }
.contact-detail .label-tag { margin-bottom: 4px; }
.contact-detail p, .contact-detail a {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light-mid); font-weight: 500; }
.form-field input, .form-field textarea {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--gold-pale);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.quote-small {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

/* ═══════════════════════════════════════
   CHEF'S MENU PAGE
═══════════════════════════════════════ */
.chef-intro { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.chef-intro-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.chef-photo { overflow: hidden; }
.chef-photo .vis { height: 580px; }
.chef-info { display: flex; flex-direction: column; gap: 20px; }
.chef-info h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; color: var(--heading); line-height: 1.1; }
.chef-gm {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--gold-pale); padding: 14px 22px;
  border-left: 3px solid var(--gold); align-self: flex-start;
}
.chef-gm-score { font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1; }
.chef-gm-score small { font-size: 16px; font-weight: 400; }
.chef-gm-label { font-size: 11px; letter-spacing: 0.1em; color: var(--mid); font-weight: 500; text-transform: uppercase; line-height: 1.6; }

/* Timeline */
.chef-timeline { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.tl-wrap {
  max-width: 680px; margin: 56px auto 0;
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--gold-pale);
}
.tl-item {
  position: relative;
  padding: 0 0 44px 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute; left: -5px; top: 6px;
  width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--offwhite);
}
.tl-year {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px; display: block;
}
.tl-body h3 { font-size: 17px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.tl-body p { font-size: 13.5px; line-height: 1.75; color: var(--mid); font-weight: 300; max-width: 520px; }

/* Philosophy values */
.chef-philosophy { background: var(--cream); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.chef-phil-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.chef-values { display: flex; flex-direction: column; gap: 32px; }
.chef-value { display: flex; gap: 20px; align-items: flex-start; }
.chef-value-bar { width: 32px; height: 2px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }
.chef-value h3 { font-size: 15px; font-weight: 500; color: var(--heading); margin-bottom: 5px; }
.chef-value p { font-size: 13.5px; line-height: 1.75; color: var(--mid); font-weight: 300; }

/* ═══════════════════════════════════════
   SOMMELIER'S SELECTION PAGE
═══════════════════════════════════════ */
.som-intro { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.som-intro-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.som-info { display: flex; flex-direction: column; gap: 20px; }
.som-info h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; color: var(--heading); line-height: 1.1; }
.som-photo { overflow: hidden; }
.som-photo .vis, .som-photo img { height: 580px; width: 100%; object-fit: cover; display: block; }
.som-award {
  display: inline-flex; align-items: flex-start; gap: 14px;
  background: var(--gold-pale); padding: 14px 22px;
  border-left: 3px solid var(--gold); align-self: flex-start;
}
.som-award-icon { font-size: 26px; line-height: 1; flex-shrink: 0; padding-top: 2px; }
.som-award-label { font-size: 12px; line-height: 1.6; color: var(--mid); font-weight: 400; }
.som-award-label strong { display: block; font-size: 13px; font-weight: 600; color: var(--heading); margin-bottom: 2px; }

/* Onze wijnen */
.som-wijnen { background: var(--dark); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.som-wijnen-inner { max-width: 1100px; margin: 0 auto; }
.som-wijnen-header { text-align: center; margin-bottom: 52px; }
.som-wijnen-header .label-tag { color: rgba(255,255,255,0.5); }
.som-wijnen-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 500; color: #fff; line-height: 1.1; margin: 12px 0; }
.som-wijnen-header .baseline {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: var(--gold-light); letter-spacing: 0.08em;
}
.som-wijn-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.som-wijn-bottle { display: flex; align-items: stretch; }
.som-wijn-bottle img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 4px; }
.som-wijn-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,90,0.25);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s, background .25s;
}
.som-wijn-card:hover { border-color: var(--gold); background: rgba(201,150,90,0.08); }
.som-wijn-name { font-size: 28px; font-weight: 500; color: var(--gold-light); letter-spacing: 0.04em; }
.som-wijn-type { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.som-wijn-card p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.6); font-weight: 300; }

/* Tuingaard + wijnshop strip */
.som-tuin { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.som-tuin-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.som-tuin-img { overflow: hidden; }
.som-tuin-img .vis { height: 420px; }
.som-tuin-text { display: flex; flex-direction: column; gap: 20px; }

/* Wijnshop & spreker */
.som-winemoments { background: var(--cream); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.som-wm-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.som-wm-text { display: flex; flex-direction: column; gap: 20px; }
.wm-theme-list { list-style: none; }
.wm-theme-list li.wm-past { opacity: 0.35; text-decoration: line-through; text-decoration-color: var(--light-mid); pointer-events: none; cursor: default; }
.wm-theme-list li.wm-bookable { cursor: pointer; }
.wm-theme-list li.wm-bookable:hover { color: var(--gold); }
.wm-theme-list li {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  border-bottom: 1px solid var(--gold-pale);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.wm-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 48px;
  flex-shrink: 0;
}

.som-extra { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.som-extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 48px auto 0; }
.som-extra-card {
  background: var(--offwhite); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 3px solid var(--gold);
}
.som-extra-card h3 { font-size: 20px; font-weight: 500; color: var(--heading); }
.som-extra-card p { font-size: 13.5px; line-height: 1.8; color: var(--mid); font-weight: 300; }

/* Eerbetoon */
.som-eerbetoon {
  background: var(--cream); padding: 64px 52px;
  border-top: 1px solid var(--gold-pale);
}
.som-eerbetoon-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.som-eerbetoon p { font-size: 14px; line-height: 1.85; color: var(--mid); font-weight: 300; }
.som-eerbetoon cite { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; font-style: normal; }

/* ═══════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════ */
.faq-full-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--gold-pale);
}
.faq-full-item:first-child { border-top: 1px solid var(--gold-pale); }
.faq-full-q {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 14px;
  line-height: 1.3;
}
.faq-full-a {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
}
.faq-full-a li { line-height: 1.75; }

@media (max-width: 900px) {
  .chef-intro-inner, .chef-phil-inner { grid-template-columns: 1fr; gap: 48px; }
  .som-intro-inner, .som-tuin-inner, .som-extra-grid, .som-wijn-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════
   HULPKLASSEN (responsive)
═══════════════════════════════════════ */
.pd-ruimtes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
}
.biz-voor-wie {
  background: var(--offwhite);
  padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px);
}

/* ═══════════════════════════════════════
   HAMBURGER & MOBILE NAV
═══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 150;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h);
  border-bottom: 1px solid var(--gold-pale);
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  color: var(--mid);
  background: none; border: none; cursor: pointer;
}
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.mobile-nav-link {
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading);
  cursor: pointer;
  border-bottom: 1px solid rgba(201,150,90,0.12);
  transition: color .15s, background .15s;
  letter-spacing: 0.02em;
  display: block;
  text-decoration: none;
}
.mobile-nav-link.gold { color: var(--gold); font-weight: 500; }
.mobile-nav-link:hover { color: var(--gold); background: var(--offwhite); }
.mobile-nav-link.active { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
button.mobile-nav-link { background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.mobile-nav-footer {
  padding: 28px 24px 36px;
  border-top: 1px solid var(--gold-pale);
  font-size: 13px;
  font-weight: 300;
  color: var(--light-mid);
  line-height: 2;
  flex-shrink: 0;
}
.mobile-nav-footer a { color: var(--gold); display: block; text-decoration: none; }

/* ═══════════════════════════════════════
   RESPONSIVE TABLET (≤ 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  nav { justify-content: space-between; padding: 0 24px; }
  .topbar { padding: 0 24px; }
  .nav-group { display: none; }
  .hamburger { display: flex; }

  .home-hero { grid-template-columns: 1fr; max-height: none; min-height: auto; }
  .home-hero-img { order: -1; min-height: 50vw; height: 50vw; max-height: 440px; }
  .home-hero-text { padding: 48px 40px; gap: 20px; }
  .home-hero-text h1 { font-size: clamp(40px, 9vw, 72px); }

  .verhaal-strip, .winemoments-inner,
  .pd-intro-inner, .biz-intro-inner, .contact-inner,
  .chef-intro-inner, .som-intro-inner, .som-tuin-inner,
  .more-verteltafel-inner, .more-safari-inner, .som-wm-inner { grid-template-columns: 1fr; }
  .more-verteltafel-inner { gap: 48px; }
  .more-vt-wandel { grid-template-columns: 1fr; gap: 32px; }
  .more-safari-pkgs { grid-template-columns: 1fr; }
  .more-workshops-grid { grid-template-columns: 1fr; }
  .more-shop-grid { grid-template-columns: 1fr 1fr; }

  .pijlers-grid, .menu-formules-grid,
  .ruimtes-grid, .voordelen-list,
  .events-cards, .biz-usecases { grid-template-columns: 1fr 1fr; }
  .more-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .gerechten-grid { grid-template-columns: repeat(3, 1fr); }

  .cal-months-grid { grid-template-columns: repeat(2, 1fr); }
  .more-logies-grid { grid-template-columns: 1fr 1fr; }
  .som-extra-grid, .som-wijn-grid { grid-template-columns: 1fr; }
  .rest-formules-inner { grid-template-columns: 1fr; gap: 40px; }


  .verhaal-strip-img { height: 380px; }
  .som-tuin-img img, .more-safari-img img { height: 360px; width: 100%; object-fit: cover; }

  .rest-hero { grid-template-columns: 1fr; min-height: auto; }
  .rest-hero-img { min-height: 360px; }
  .rest-hero-text { padding: 48px 40px; }
  .ev-wineexp-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE MOBILE (≤ 600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; --top-h: 36px; }

  .topbar { font-size: 11px; padding: 0 16px; }
  .topbar > span:first-child { display: none; }
  .topbar-right { gap: 16px; }
  nav { padding: 0 16px; }

  .pijlers-wrap, .gerechten-wrap,
  .ev-wm, .ev-popup, .ev-custom, .ev-calendar,
  .rest-formules, .rest-ruimtes, .rest-testimonial,
  .pd-intro, .pd-ruimtes,
  .biz-intro,
  .chef-intro, .chef-timeline, .chef-philosophy,
  .som-intro, .som-winemoments, .som-wijnen, .som-tuin, .som-extra, .som-eerbetoon,
  .more-intro, .more-verteltafel, .more-safari, .more-logies, .more-workshops, .more-shop,
  .contact-wrap, .newsletter { padding: 48px 20px !important; }

  .verhaal-strip-text { padding: 48px 20px; }
  .verhaal-strip-img { height: 240px; }
  .f-credit { padding: 24px 20px; }

  .page-hero { height: 230px; }
  .page-hero-text { padding: 28px 20px; }
  .page-hero-text h1 { font-size: clamp(24px, 8vw, 36px); }

  .home-hero-img { min-height: 56vw; height: 56vw; max-height: 280px; }
  .home-hero-text { padding: 36px 20px 48px; gap: 16px; }
  .home-hero-text h1 { font-size: clamp(32px, 10vw, 50px); }
  .home-hero-text .tagline { font-size: 15px; }

  .section-title { font-size: clamp(22px, 6vw, 30px) !important; }
  .body-text { font-size: 15px !important; }

  .pijlers-grid, .events-cards, .voordelen-list,
  .biz-usecases, .more-workshops-grid, .more-logies-grid, .more-shop-grid { grid-template-columns: 1fr; }
  .gerechten-grid { grid-template-columns: 1fr 1fr; }
  .ruimtes-grid, .menu-formules-grid { grid-template-columns: 1fr; }
  .cal-months-grid { grid-template-columns: 1fr 1fr; }

  .quote-strip { padding: 36px 20px; }
  .quote-strip blockquote { font-size: 16px; }

  .tl-wrap { padding-left: 20px; }
  .rest-band { height: 200px; }

  .ws-flip-front, .ws-flip-back { padding: 28px 24px; }
  .ws-front-actions { flex-direction: column; align-items: flex-start; }
  .som-wijn-card { padding: 24px 20px; }
  .more-logies-card { padding: 24px 20px; }

  .home-hero-text > div { flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }
  .pd-ruimtes-grid { grid-template-columns: 1fr; }
  .biz-voor-wie { padding: 48px 20px; }
  .winemoments { padding: 48px 20px !important; }
  .voordelen { padding: 48px 20px !important; }
  .ev-wineexp { padding: 48px 20px !important; }
  .rest-hero-text { padding: 36px 20px; }
  .rest-formules-grid { grid-template-columns: 1fr; }

  /* Contact page inline grids */
  .contact-info-grid-3 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-info-grid-2 { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Events – Aan tafel section */
  .ev-wijnbouwer-grid { grid-template-columns: 1fr !important; gap: 48px !important; }

  /* Private dining – menu grid */
  .pd-menu-grid { grid-template-columns: 1fr !important; }

  /* Business CTA grid */
  .biz-cta-grid { grid-template-columns: 1fr !important; }

  /* Buttons full width on mobile */
  .btn { display: block; text-align: center; }

  /* wijnformules */
  .wijnformules-grid { grid-template-columns: 1fr !important; }

  /* menukaart split fullscreen hero on mobile */
  .menukaart-split { height: auto !important; min-height: 80vh; }
}

/* ═══════════════════════════════════════
   & MORE PAGE
═══════════════════════════════════════ */

/* Intro strip */
.more-intro { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-intro-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 88px; align-items: start; }
.more-intro-text { display: flex; flex-direction: column; gap: 20px; }
.more-intro p { font-size: 17px; font-weight: 300; line-height: 1.9; color: var(--mid); }
.more-intro-links { display: flex; flex-direction: column; border-top: 1px solid var(--gold-pale); }
.more-intro-link { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--gold-pale); text-decoration: none; transition: padding-left .2s; }
.more-intro-link:hover { padding-left: 8px; }
.more-intro-link-icon { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.more-intro-link-body { flex: 1; }
.more-intro-link-title { font-size: 15px; font-weight: 500; color: var(--heading); display: block; margin-bottom: 2px; }
.more-intro-link-sub { font-size: 12px; color: var(--light-mid); font-weight: 300; letter-spacing: 0.02em; }
.more-intro-link-arr { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; transition: transform .2s; }
.more-intro-link:hover .more-intro-link-arr { transform: translateX(4px); }


/* Verteltafel */
.more-verteltafel { background: #fff; padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-verteltafel-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.more-vt-text { display: flex; flex-direction: column; gap: 20px; }
.more-vt-stories { display: flex; flex-direction: column; gap: 0; }
.more-vt-story {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--gold-pale); align-items: start;
}
.more-vt-story:first-child { border-top: 1px solid var(--gold-pale); }
.more-vt-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.more-vt-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.more-vt-story h4 { font-size: 15px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.more-vt-story p { font-size: 13.5px; line-height: 1.75; color: var(--mid); font-weight: 300; }

.vt-praktisch { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.vt-praktisch span { font-size: 11px; font-weight: 500; letter-spacing: 0.05em; color: var(--mid); background: var(--offwhite); padding: 4px 11px; }
.more-vt-wandel {
  max-width: 1100px; margin: 52px auto 0;
  border-top: 1px solid var(--rule); padding-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.more-vt-wandel-text { display: flex; flex-direction: column; gap: 14px; }
.more-vt-wandel-text h3 { font-size: 20px; font-weight: 500; color: var(--heading); }
.more-vt-wandel-text p  { font-size: 14px; line-height: 1.8; color: var(--mid); font-weight: 300; }
.more-vt-wandel-meta { display: flex; flex-direction: column; gap: 10px; }
.vt-wandel-item { display: flex; align-items: center; gap: 14px; }
.vt-wandel-dot  { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.vt-wandel-item span { font-size: 13.5px; color: var(--mid); font-weight: 300; }

/* Westhoek Wine Experience */
.more-safari { background: var(--cream); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-safari-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.more-safari-img { overflow: hidden; }
.more-safari-img .vis { height: 420px; }
.more-safari-text { display: flex; flex-direction: column; gap: 20px; }
.more-safari-pkgs { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1100px; margin: 52px auto 0; }
.more-safari-pkg { background: #fff; padding: 36px 28px; display: flex; flex-direction: column; gap: 16px; border-top: 3px solid var(--gold); }
.safari-pkg-price { font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.safari-pkg-price small { font-size: 14px; font-weight: 300; color: var(--light-mid); letter-spacing: 0; margin-left: 4px; }
.more-safari-pkg h3 { font-size: 17px; font-weight: 500; color: var(--heading); font-style: italic; }
.safari-pkg-items { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.safari-pkg-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; line-height: 1.7; color: var(--mid); font-weight: 300; }
.safari-pkg-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.safari-pkg-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: auto; padding-top: 8px; }
.more-safari-cta { text-align: center; margin-top: 40px; }
.more-route-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--mid); font-weight: 300;
}
.more-route-item::before {
  content: '';
  width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}

/* Logies */
.more-logies { background: var(--dark); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-logies-header { text-align: center; margin-bottom: 52px; }
.more-logies-header h2 { color: #fff; }
.more-logies-header .label-tag { color: rgba(201,150,90,0.7); }
.more-logies-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.more-logies-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,150,90,0.12);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s;
}
.more-logies-card:hover { background: rgba(255,255,255,0.07); }
.more-logies-card h4 { font-size: 15px; font-weight: 500; color: #fff; }
.more-logies-card .logies-type { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.more-logies-card p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 300; }
.more-logies-note { text-align: center; margin-top: 40px; font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 300; font-style: italic; }

/* Logies pagina */
.logies-gemeente { margin-bottom: 52px; }
.logies-gemeente-title { font-family: var(--serif); font-size: 22px; color: var(--dark); font-weight: 400; letter-spacing: 0.04em; border-bottom: 1px solid var(--gold-pale); padding-bottom: 10px; margin-bottom: 24px; }
.logies-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.logies-card { background: #fff; border: 1px solid var(--gold-pale); border-radius: 2px; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.logies-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.logies-card h4 { font-size: 16px; font-weight: 500; color: var(--dark); margin: 0; font-family: var(--serif); }
.logies-adres { font-size: 12px; color: var(--muted); margin: 0; }
.logies-card p { font-size: 13px; color: var(--mid); line-height: 1.75; flex: 1; }
.logies-link { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-decoration: none; margin-top: 4px; }
.logies-link:hover { color: var(--dark); }

/* Workshops */
.more-workshops { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-workshops-header { text-align: center; margin-bottom: 52px; }
.more-workshops-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto;
}

/* Flip card */
.ws-flip-wrapper { perspective: 1200px; }
.ws-flip-inner {
  position: relative; height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ws-flip-inner.is-flipped { transform: rotateY(180deg); }
.ws-flip-front, .ws-flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: #fff; border-top: 3px solid var(--gold);
  padding: 28px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.ws-flip-back { transform: rotateY(180deg); }

/* Voorkant layout */
.ws-flip-front .ws-badge        { margin-bottom: 20px; }
.ws-flip-front h3               { font-size: 20px; font-weight: 500; color: var(--heading); line-height: 1.35; margin-bottom: 5px; }
.ws-flip-front .ws-sub          { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ws-flip-front .ws-intro        { font-size: 14px; line-height: 1.8; color: var(--mid); font-weight: 300; }
.ws-front-spacer                { flex: 1; min-height: 12px; }
.ws-front-deco {
  height: 52px; flex-shrink: 0;
  background-image: radial-gradient(circle, rgba(201,150,90,0.28) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.ws-flip-front .ws-footer       { padding-top: 18px; border-top: 1px solid var(--rule); flex-shrink: 0; }
.ws-flip-front .ws-price        { font-size: 21px; font-weight: 500; color: var(--heading); margin-bottom: 14px; }
.ws-flip-front .ws-price small  { font-size: 13px; font-weight: 300; color: var(--mid); }
.ws-front-actions               { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Achterkant layout */
.ws-back-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-family: inherit; align-self: flex-start; margin-bottom: 14px; flex-shrink: 0;
}
.ws-back-section        { margin-bottom: 10px; }
.ws-block-label         { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ws-list                { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.ws-list li             { font-size: 12px; line-height: 1.5; color: var(--mid); font-weight: 300; padding-left: 13px; position: relative; }
.ws-list li::before     { content: '–'; position: absolute; left: 0; color: var(--gold); }
.ws-rule                { border: none; border-top: 1px solid var(--rule); margin: 10px 0; }
.ws-meta                { font-size: 12px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.ws-back-footer         { margin-top: auto; padding-top: 12px; display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.ws-back-price          { font-size: 18px; font-weight: 500; color: var(--heading); }
.ws-back-price small    { font-size: 12px; font-weight: 300; color: var(--mid); }

/* Badge */
.ws-badge {
  display: inline-block; align-self: flex-start;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: 4px 10px;
}
.ws-badge-ext  { background: var(--heading); }
.ws-badge-free { background: #5a7a5a; }
.ws-price-free { font-size: 16px; font-weight: 500; color: #5a7a5a; letter-spacing: 0.02em; }

/* Wijnshop */
.more-shop { background: var(--dark); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.more-shop-header { text-align: center; margin-bottom: 52px; }
.more-shop-header h2 { color: #fff; }
.more-shop-header .label-tag { color: rgba(201,150,90,0.7); }
.more-shop-header p { font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 520px; margin: 16px auto 0; line-height: 1.8; }
.more-shop-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; max-width: 1300px; margin: 0 auto 48px; }
.more-shop-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,150,90,0.12); padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .2s; }
.more-shop-item:hover { background: rgba(201,150,90,0.07); }
.more-shop-icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.more-shop-item h4 { font-size: 16px; font-weight: 500; color: #fff; }
.more-shop-item p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45); font-weight: 300; }
.more-shop-cta { text-align: center; margin-top: 8px; }

/* ═══════════════════════════════════════
   WIJNFORMULES (home)
═══════════════════════════════════════ */
.wijnformules { background: var(--offwhite); padding: clamp(48px,7vw,88px) clamp(20px,5vw,52px); }
.wijnformules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 52px auto 0;
}
.wijnformule-card {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 3px solid var(--gold);
}
.wijnformule-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.wijnformule-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--heading);
  font-style: italic;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wijnformule-price {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
  flex-shrink: 0;
}
.wijnformule-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wijnformule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}
.wijnformule-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 900px) {
  .wijnformules-grid { grid-template-columns: 1fr 1fr; max-width: 720px; }
}
@media (max-width: 600px) {
  .wijnformules { padding: 48px 20px !important; }
  .wijnformule-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════
   AWARDS STRIP (home)
═══════════════════════════════════════ */
.awards-strip {
  background: var(--dark);
  padding: 64px 52px;
}
.awards-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.awards-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
.award-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 40px;
  text-align: center;
}
.award-sep {
  width: 1px;
  background: rgba(201,150,90,0.2);
  flex-shrink: 0;
  align-self: stretch;
  margin: 8px 0;
}
.award-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.award-score {
  font-size: 44px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.award-score small {
  font-size: 22px;
  font-weight: 300;
}
.award-org {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.award-name {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
}
.award-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  font-style: italic;
}
.award-item-logos {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 16px 28px;
  margin-left: 28px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-item-logos img {
  max-height: 110px;
  width: auto;
  max-width: 320px;
  display: block;
}
@media (max-width: 600px) {
  .awards-strip { padding: 48px 20px; }
  .awards-row { flex-direction: column; align-items: center; }
  .award-item { padding: 20px; width: 100%; }
  .award-item-logos { padding: 14px 20px; }
  .award-item-logos img { max-height: 40px; max-width: 180px; }
  .award-sep { width: 60px; height: 1px; align-self: auto; margin: 0 auto; }
  .award-score { font-size: 36px; }
  .award-score small { font-size: 18px; }
}

/* ═══════════════════════════════════════
   CREDIT BALK
═══════════════════════════════════════ */
.f-credit {
  background: #141210;
  border-top: 1px solid rgba(201,150,90,0.12);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(201,150,90,0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .25s;
  user-select: none;
}
.fc-link .by   { font-weight: 300; }
.fc-link .name {
  font-weight: 500;
  border-bottom: 1px solid rgba(201,150,90,0.2);
  transition: border-color .25s;
}
.fc-link:hover { color: rgba(201,150,90,0.75); }
.fc-link:hover .name { border-color: rgba(201,150,90,0.5); }

/* ═══════════════════════════════════════
   PARTNER TICKER
═══════════════════════════════════════ */
.partner-ticker {
  background: var(--dark);
  overflow: hidden;
  border-top: 1px solid rgba(201,150,90,0.2);
  border-bottom: 1px solid rgba(201,150,90,0.2);
  display: flex;
  align-items: center;
  height: 54px;
}
.partner-ticker-label {
  flex-shrink: 0;
  padding: 0 24px 0 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(201,150,90,0.25);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: var(--dark);
  position: relative;
  z-index: 1;
}
.partner-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
}
.partner-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.pt-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 4px;
}
.pt-name {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pt-detail {
  font-size: 11px;
  font-weight: 300;
  color: rgba(201,150,90,0.65);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.pt-sep {
  color: var(--gold);
  font-size: 8px;
  opacity: 0.45;
  padding: 0 14px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .partner-ticker-label { padding: 0 14px; font-size: 9px; letter-spacing: 0.1em; }
  .pt-detail { display: none; }
  .pt-name { font-size: 11.5px; }
}

.page { display: block !important; }

/* ═══════════════════════════════════════
   RESPONSIVE – EXTRA MOBILE FIXES (≤ 600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {

  /* Flip cards: disable 3D, stack as simple show/hide */
  .ws-flip-wrapper { perspective: none; }
  .ws-flip-inner {
    height: auto;
    transform-style: flat;
    transition: none;
  }
  .ws-flip-inner.is-flipped { transform: none; }
  .ws-flip-front, .ws-flip-back {
    position: relative; inset: auto;
    backface-visibility: visible; -webkit-backface-visibility: visible;
  }
  .ws-flip-back { transform: none; display: none; }
  .ws-flip-inner.is-flipped .ws-flip-front { display: none; }
  .ws-flip-inner.is-flipped .ws-flip-back  { display: flex; }

  /* Nav & topbar tighter */
  .topbar-right .topbar-contact:first-of-type { display: none; }

  /* Buttons never overflow */
  .btn { white-space: normal; word-break: break-word; }

  /* Wijnformules single column */
  .wijnformule-card h3 { white-space: normal; }

  /* Calendar single column on very small screens */
  .cal-months-grid { grid-template-columns: 1fr; }
  .cal-grid { gap: 2px; }
  .cal-day { font-size: 11px; }

  /* Events list readable */
  .ev-item { grid-template-columns: 56px 1fr; }

  /* Timeline tighter */
  .tl-wrap { padding-left: 16px; }
  .tl-item { gap: 20px; }
  .tl-year { font-size: 11px; min-width: 80px; }

  /* Footer gaps smaller */
  .footer-grid { gap: 28px; }
  .footer-faq { gap: 8px; }

  /* Buttons in pairs stacking */
  .ws-front-actions { gap: 10px; }

  /* more-shop 1-col confirmed */
  .more-shop-grid { grid-template-columns: 1fr !important; }

  /* Private dining menu grid */
  .pd-menu-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Business CTA grid */
  .biz-cta-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Contact info grids */
  .contact-info-grid-3,
  .contact-info-grid-2 { grid-template-columns: 1fr !important; gap: 28px !important; }

  /* Events wijnbouwer section */
  .ev-wijnbouwer-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Wijnformules price no-wrap relaxed */
  .wijnformule-top { flex-wrap: wrap; gap: 4px; }

  /* Private dining ruimtes single col */
  .pd-ruimtes-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   RESPONSIVE – NARROW PHONES (≤ 400px)
═══════════════════════════════════════ */
@media (max-width: 400px) {
  :root { --nav-h: 56px; --top-h: 0px; }
  .topbar { display: none; }
  .section-title { font-size: clamp(20px, 7vw, 26px) !important; }
  .home-hero-text h1 { font-size: clamp(28px, 11vw, 40px); }
  .page-hero-text h1 { font-size: clamp(22px, 9vw, 32px); }
  .ev-wm-pill { font-size: 10px; padding: 4px 10px; }
  .cal-day { min-height: 28px; font-size: 10px; }
  .vt-praktisch { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CONTAIN HORIZONTAL SCROLL
═══════════════════════════════════════ */

/* Prevent any section from causing page-level horizontal scroll */
section, .page-hero, .site-footer, nav, .topbar {
  max-width: 100%;
  overflow-x: hidden;
}

/* Calendar: scroll container on mobile so swiping stays within the grid */
@media (max-width: 900px) {
  .ev-calendar-inner, .cal-months-grid {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  /* Prevent columns like shop/gerechten from overflowing their sections */
  .more-shop-grid,
  .wijnformules-grid,
  .gerechten-grid,
  .rest-formules-grid,
  .more-safari-pkgs,
  .pijlers-grid {
    overflow-x: hidden;
  }
}

/* For any remaining scroll wrappers: contain the scroll */
[data-scroll-x] {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
