:root {
  --pink: #ed174f;
  --pink-hot: #ff2f6d;
  --pink-soft: #fff0f5;
  --pink-wash: #fff8fb;
  --blue: #16a9ff;
  --blue-soft: #e9f9ff;
  --yellow: #ffd447;
  --green: #25bd6a;
  --ink: #17233b;
  --muted: #52617d;
  --surface: #ffffff;
  --cream: #fffaf2;
  --border: #ffc8d8;
  --shadow: 0 20px 54px rgba(23, 35, 59, 0.14);
  --shadow-soft: 0 14px 34px rgba(23, 35, 59, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
strong { color: var(--ink); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(237, 23, 79, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-portrait,
.brand-wordmark {
  display: block;
  object-fit: contain;
}
.brand-portrait {
  height: 54px;
  width: auto;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(237, 23, 79, 0.12);
}
.brand-wordmark {
  height: 49px;
  width: auto;
}
.brand-lockup--hero {
  gap: 14px;
}
.brand-lockup--hero .brand-portrait {
  height: 72px;
}
.brand-lockup--hero .brand-wordmark {
  height: 66px;
}
.brand-lockup--footer .brand-portrait {
  height: 58px;
}
.brand-lockup--footer .brand-wordmark {
  height: 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 900;
}

.site-nav a,
.nav-toggle {
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #07518f;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--pink-soft);
  color: var(--pink);
  outline: 0;
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink));
  box-shadow: 0 10px 22px rgba(237, 23, 79, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { color: #fff; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 32px;
  background:
    radial-gradient(circle at 7% 16%, rgba(255, 212, 71, 0.40), transparent 21%),
    radial-gradient(circle at 88% 14%, rgba(22, 169, 255, 0.23), transparent 25%),
    linear-gradient(180deg, #effaff 0%, #ffffff 88%);
}

.hero-confetti {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(237,23,79,.75) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(22,169,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255,212,71,.7) 0 2px, transparent 3px);
  background-size: 120px 120px, 160px 160px, 190px 190px;
  background-position: 18px 26px, 70px 100px, 140px 20px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 30px;
  align-items: center;
}

.hero-copy { padding: 8px 0 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.04; margin: 0; }
h1 {
  max-width: 790px;
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
  letter-spacing: -0.058em;
  color: var(--ink);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.05em;
}
h3 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.hero-intro {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
}

.hero-actions,
.form-row,
.event-card-grid,
.menu-highlight-grid,
.hero-facts {
  display: grid;
  gap: 14px;
}
.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 12px 21px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); outline: 0; }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink));
  box-shadow: 0 15px 28px rgba(237, 23, 79, 0.25);
}
.button.secondary {
  color: var(--pink);
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 12px 26px rgba(23, 35, 59, 0.08);
}

.hero-media-stack {
  display: grid;
  gap: 14px;
  align-items: stretch;
}
.hero-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 10px 24px;
  border: 6px solid #fff;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-truck-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-truck-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), transparent 44%, rgba(0,0,0,0.16));
}
.hero-truck-card img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  object-position: center center;
}
.hero-truck-card figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fff;
  background: rgba(237, 23, 79, 0.92);
  box-shadow: 0 12px 26px rgba(0,0,0,0.20);
  font-weight: 900;
  line-height: 1.2;
}
.hero-truck-card figcaption span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts-wrap { position: relative; margin-top: 18px; }
.hero-facts {
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  margin: 0;
}
.hero-facts div {
  padding: 16px 18px;
  border: 1px solid rgba(237, 23, 79, 0.20);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}
.hero-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-facts dd { margin: 4px 0 0; color: var(--ink); font-weight: 950; overflow-wrap: anywhere; }

.section { padding: 72px 0; }
.intro-section {
  padding-top: 40px;
  padding-bottom: 38px;
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}
.intro-grid,
.events-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}
.content-card,
.contact-panel,
.contact-form {
  border: 1px solid rgba(237, 23, 79, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
}
.content-card,
.contact-panel { padding: clamp(24px, 4vw, 42px); }
.content-card p,
.section-heading p,
.contact-panel p,
.event-card p,
.menu-text-card p,
.gallery-item-caption,
.form-note { color: var(--muted); }
.intro-card { background: linear-gradient(135deg, #fff, #fffaf2); }
.intro-visuals {
  display: block;
}
.intro-visuals img {
  width: 100%;
  border: 8px solid #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.intro-poster {
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: top center;
}

.menu-section {
  padding-top: 36px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 212, 71, 0.22), transparent 24%),
    linear-gradient(180deg, #fff8fb 0%, #eefaff 100%);
}
.section-heading { max-width: 830px; }
.section-heading.center { margin: 0 auto 34px; text-align: center; }
.section-heading.left { align-self: start; }
.menu-highlight-grid { grid-template-columns: repeat(4, 1fr); margin: 32px 0 28px; }
.menu-text-card,
.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 23, 79, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}
.menu-text-card:before,
.event-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--blue), var(--green));
}
.menu-icon,
.event-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--pink-soft);
  font-size: 1.7rem;
}
.menu-visual-feature {
  display: block;
  margin-top: 18px;
}
.menu-main-image {
  display: block;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.menu-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.gallery-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 212, 71, 0.14), transparent 22%),
    linear-gradient(180deg, #eefaff 0%, #ffffff 100%);
}
.gallery-heading { margin-bottom: 26px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  grid-column: span 3;
  overflow: hidden;
  border-radius: 24px;
  border: 6px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  min-height: 260px;
}
.gallery-item--landscape { grid-column: span 6; }
.gallery-item--portrait { grid-column: span 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}
.gallery-item::after {
  content: "Bekijk groter";
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 35, 59, 0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.38));
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.03); }
.gallery-item:focus-visible { outline: 3px solid rgba(22,169,255,0.45); outline-offset: 4px; }

.events-section { background: #fff; }
.events-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.event-card-grid { grid-template-columns: repeat(2, 1fr); }
.contact-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 212, 71, 0.22), transparent 22%),
    linear-gradient(180deg, #eefaff 0%, #fff 100%);
}
.contact-grid { align-items: start; }
.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { padding: 13px 15px; border-radius: 16px; background: var(--pink-soft); overflow-wrap: anywhere; }
.contact-form { padding: clamp(20px, 3vw, 34px); }
.form-row.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--ink); font-weight: 850; }
input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 2px solid #f3cada;
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea { min-height: 150px; resize: vertical; }
input:focus,
select:focus,
textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(237, 23, 79, 0.14); outline: 0; }
.consent-line { grid-template-columns: 22px 1fr; align-items: start; font-size: 0.92rem; font-weight: 700; }
.consent-line input { width: 20px; min-height: 20px; margin-top: 2px; }
.honeypot { position: absolute; left: -9999px; }
.form-submit { width: 100%; border: 0; font-size: 1rem; }
.form-submit:disabled { opacity: 0.72; cursor: wait; transform: none; }
.form-alert { margin: 0 0 18px; padding: 14px 16px; border-radius: 16px; font-weight: 850; }
.form-alert.success { color: #064f2d; background: #dffbea; border: 1px solid #a6e9c0; }
.form-alert.error { color: #8c0827; background: #fff0f5; border: 1px solid #ffb8ce; }

.site-footer {
  padding: 42px 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 30%, rgba(22, 169, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  border-top: 1px solid rgba(237, 23, 79, 0.18);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.6fr; gap: 32px; align-items: start; }
.site-footer h2 { margin: 0 0 12px; font-size: 1.08rem; letter-spacing: 0; }
.site-footer p { margin: 0 0 6px; color: var(--muted); }
.site-footer a { color: #07518f; }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--pink); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 12, 23, 0.88);
}
.lightbox.is-open { display: grid; }
.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 14px;
  justify-items: center;
}
.lightbox-image-wrap {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}
.lightbox-caption {
  width: min(900px, 100%);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close { top: 0; right: 0; }
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  outline: 0;
}

@media (max-width: 1040px) {
  .hero-grid,
  .intro-grid,
  .events-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-truck-card img { aspect-ratio: 1.35 / 1; }
  .menu-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item,
  .gallery-item--landscape,
  .gallery-item--portrait { grid-column: span 1; }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .header-inner { min-height: 72px; }
  .brand-portrait { height: 46px; }
  .brand-wordmark { height: 40px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { padding: 24px 0 34px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .hero-actions,
  .hero-facts,
  .event-card-grid,
  .form-row.two-col,
  .footer-grid,
  .menu-highlight-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-truck-card { border-width: 6px; border-radius: 24px; }
  .hero-truck-card img { aspect-ratio: 1.02 / 1; object-position: 52% center; }
  .hero-truck-card figcaption { left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; border-radius: 17px; }
  .hero-logo-strip { min-height: 80px; border-width: 5px; border-radius: 22px; }
  .brand-lockup--hero .brand-portrait { height: 58px; }
  .brand-lockup--hero .brand-wordmark { height: 48px; }
  .intro-poster { max-height: none; object-position: top center; }
  .section { padding: 44px 0; }
  .intro-section { padding-top: 30px; padding-bottom: 28px; }
  .menu-section { padding-top: 30px; }
  .menu-main-image { border-width: 6px; border-radius: 24px; }
  .gallery-item { min-height: 230px; }
  .lightbox { padding: 18px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* v9 targeted layout refinements */
.brand-logo,
.hero-combined-logo,
.footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand-logo {
  height: 58px;
  max-width: min(330px, 54vw);
}
.hero-combined-logo {
  height: 78px;
  max-width: min(620px, 92%);
}
.footer-logo {
  height: 82px;
  max-width: min(420px, 100%);
  margin-bottom: 12px;
}
.intro-grid--single {
  grid-template-columns: 1fr;
  max-width: 910px;
}
.intro-grid--single .intro-card {
  max-width: none;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.gallery-item,
.gallery-item--landscape,
.gallery-item--portrait {
  grid-column: auto !important;
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  border-width: 4px;
  border-radius: 18px;
}
.gallery-item::after {
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  font-size: 0.72rem;
}

@media (max-width: 760px) {
  .brand-logo { height: 50px; max-width: min(275px, 62vw); }
  .hero-combined-logo { height: 64px; max-width: 94%; }
  .footer-logo { height: 70px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v10 requested cleanup */
.hero-confetti,
.gallery-item::before,
.gallery-item::after,
.lightbox-caption {
  display: none !important;
}
.hero-actions,
.form-row,
.event-card-grid,
.menu-highlight-grid {
  display: grid;
  gap: 14px;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 12px;
  max-width: 1040px;
}
.gallery-item,
.gallery-item--landscape,
.gallery-item--portrait {
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  border-width: 4px;
  border-radius: 16px;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1005;
  background: rgba(237, 23, 79, 0.92);
  box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}
.lightbox-dialog,
.lightbox-image-wrap {
  pointer-events: none;
}
.lightbox img,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  pointer-events: auto;
}
.lightbox img {
  max-height: calc(100vh - 96px);
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--pink);
  background: var(--pink-soft);
  font-weight: 950;
  text-decoration: none;
}
.contact-socials a:hover,
.contact-socials a:focus-visible {
  background: var(--pink);
  color: #fff;
  outline: 0;
}
.site-footer p { overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
  .gallery-item { border-width: 3px; border-radius: 13px; }
}
