:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #141414;
  --color-panel: #1c1811;
  --color-gold: #d4af37;
  --color-gold-light: #e8cf7a;
  --gradient-gold: linear-gradient(135deg, #8a6a2f 0%, #d4af37 25%, #f5e2a8 50%, #d4af37 75%, #8a6a2f 100%);
  --gradient-gold-light: linear-gradient(135deg, #d4af37 0%, #f5e2a8 50%, #d4af37 100%);
  --color-text: #f5f0e6;
  --color-text-muted: #b8b0a0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --max-width: 1300px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

/* Vaste gouden framelijntjes links/rechts — vanaf tablet/desktop, niet op de telefoonversie */
body::before,
body::after {
  content: "";
  display: none;
  position: fixed;
  top: 0;
  width: 1px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, transparent 0%, var(--color-gold) 10%, var(--color-gold) 90%, transparent 100%);
  opacity: 0.55;
  z-index: 5;
  pointer-events: none;
}

@media (min-width: 768px) {
  body::before,
  body::after {
    display: block;
  }

  body::before { left: 20px; }
  body::after { right: 20px; }
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }

.section-title {
  font-family: var(--font-heading);
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--color-gold);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-bg);
}

.btn-primary:hover { background: var(--gradient-gold-light); }

.btn-outline {
  background-color: transparent;
  background-image: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-outline:hover { background-color: rgba(212, 175, 55, 0.1); }

/* Header (fixed, overlaps the hero section) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.header-inner > * { pointer-events: auto; }

.site-header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: padding 0.2s ease;
}

.site-header.is-scrolled .header-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  transition: height 0.25s ease;
}

.site-header.is-scrolled .logo img {
  height: 48px;
}

/* Hamburger toggle — always visible, gold-rimmed for contrast against any background */
.nav-toggle {
  position: relative;
  z-index: 91;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--color-gold);
  background-color: rgba(10, 10, 10, 0.8);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Sidebar navigation (boven de fixed header, anders overlapt de header 'm na het scrollen) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 105;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 88vw);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2.5rem 3rem;
  background: linear-gradient(180deg, var(--color-panel) 0%, var(--color-bg) 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 106;
}

.main-nav.is-open { transform: translateX(0); }

.main-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  color: var(--color-gold);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.main-nav-close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: rotate(90deg);
}

.main-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.main-nav-brand img { height: 44px; width: auto; }

.main-nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.main-nav-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.main-nav-divider span {
  flex: 1;
  height: 1px;
  background-color: rgba(212, 175, 55, 0.35);
}

.main-nav-divider i {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 0.75rem;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
}

.main-nav li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.main-nav li:last-child { border-bottom: none; }

.main-nav a {
  display: flex;
  align-items: baseline;
  padding: 1.1rem 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Nav FAB (bottom-left) — replaces the sidebar; pops up the nav links on click */
.nav-fab-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 88;
}

.nav-fab-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-fab {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
}

@media (min-width: 768px) {
  .nav-fab { left: 2.75rem; }
}

.nav-fab-toggle {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 10, 10, 0.85);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
}

.nav-fab-toggle:hover {
  border-color: var(--color-gold-light);
  background-color: rgba(10, 10, 10, 0.95);
}

.nav-fab-toggle[aria-expanded="true"] { transform: rotate(45deg); }

.nav-fab-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.85rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nav-fab-menu li {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.nav-fab.is-open .nav-fab-menu li {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.nav-fab.is-open .nav-fab-menu li:nth-child(1) { transition-delay: 0.2s, 0.2s, 0s; }
.nav-fab.is-open .nav-fab-menu li:nth-child(2) { transition-delay: 0.15s, 0.15s, 0s; }
.nav-fab.is-open .nav-fab-menu li:nth-child(3) { transition-delay: 0.1s, 0.1s, 0s; }
.nav-fab.is-open .nav-fab-menu li:nth-child(4) { transition-delay: 0.05s, 0.05s, 0s; }
.nav-fab.is-open .nav-fab-menu li:nth-child(5) { transition-delay: 0s, 0s, 0s; }

.nav-fab-icon-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  background-color: rgba(10, 10, 10, 0.85);
  color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-fab-icon-link:hover {
  border-color: var(--color-gold);
  background-color: rgba(10, 10, 10, 0.95);
  color: var(--color-gold-light);
  transform: scale(1.08);
}

.nav-fab-icon-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 0.85rem);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  background-color: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-text);
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-fab-icon-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 80;
}

.whatsapp-float:hover { background: var(--gradient-gold-light); }

@media (min-width: 768px) {
  .whatsapp-float { right: 2.75rem; }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-eyebrow {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 8vw, 5rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero-title-swap {
  display: inline-block;
}

/* Forceert 2 vaste regels op de telefoonversie, zodat de titel niet tussen 1 en
   2 regels springt terwijl de tekstbreedte tijdens de swap-animatie verandert.
   Grens op 600px (i.p.v. de gebruikelijke 768px) omdat de iPad mini al bij
   744px zit — die moet net als de rest van desktop/tablet op 1 regel blijven. */
.hero-title-break {
  display: block;
}

@media (min-width: 600px) {
  .hero-title-break { display: none; }
}

.hero-title-letter {
  display: inline-block;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, filter 0.6s ease-in-out;
}

.hero-title-letter.is-swapping {
  opacity: 0;
  transform: translateY(4px) scale(0.92);
  filter: blur(2px);
}

.hero-tagline {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Gerechten */
.dishes-section { position: relative; z-index: 6; padding-top: 3px; }

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  width: 100%;
  background-color: var(--color-bg-alt);
}

.dish-card {
  display: flex;
  flex-direction: column;
}

.dish-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-card-image img { transform: scale(1.05); }

/* Verhaal */
.story-text {
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--color-text);
  font-size: clamp(1.42rem, 3.16vw, 2.45rem);
  line-height: 2;
  text-align: center;
  letter-spacing: 0.01em;
}

.story-inline-img {
  display: inline-block;
  height: 1.15em;
  width: auto;
  vertical-align: baseline;
  margin: 0 0.3em;
  object-fit: contain;
}

/* Over ons */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.about-title { text-align: center; }

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about-text p:last-child { margin-bottom: 0; }

/* Foto-collage: grote foto rechtsboven met een kleinere foto die linksonder overlapt,
   zelfde compositie/verhoudingen als het aangeleverde voorbeeld. */
.about-photos {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 19%;
  padding-bottom: 21%;
}

/* Niet op de telefoonversie tonen — zelfde grens als de hero-titel (iPad mini
   begint al bij 744px en moet de foto's dus wel te zien krijgen). */
@media (max-width: 599px) {
  .about-photos { display: none; }
}

.about-photo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.about-photo-accent {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

/* Menu */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 220px;
  margin: -1.5rem auto 3rem;
}

.section-divider span {
  flex: 1;
  height: 1px;
  background-color: rgba(212, 175, 55, 0.4);
}

.section-divider i {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 0.85rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  min-width: 0;
  margin-bottom: 3rem;
}

.menu-category { min-width: 0; }

.menu-category-title {
  font-family: var(--font-heading);
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  min-width: 0;
  overflow-wrap: break-word;
  color: var(--color-text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.menu-item-dots {
  flex: 1 1 auto;
  min-width: 12px;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.5);
  margin-bottom: 0.3em;
}

.menu-item-price {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
  white-space: nowrap;
}

/* Showcase */
.showcase-section { position: relative; z-index: 6; padding: 0; }

.showcase-pin {
  overflow: hidden;
}

.showcase-track {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Galerij-CTA: fotogrid links/rechts met een donkere, centrale CTA-strook,
   zelfde flush-fotostijl (geen radius/rand) als de showcase-track hierboven. */
.gallery-cta-section { position: relative; z-index: 6; padding: 0; margin-bottom: 4rem; }

.gallery-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.gallery-cta-photos { display: none; }

.gallery-cta-photos {
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.gallery-cta-photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-cta-content {
  background-color: var(--color-bg);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.gallery-cta-eyebrow {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--color-text);
}

.gallery-cta-text {
  color: var(--color-text-muted);
  max-width: 340px;
  font-size: 0.95rem;
}

.gallery-cta-divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
}

.gallery-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--color-gold);
  background-color: transparent;
  background-image: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-cta-btn:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* Fotokolommen alleen vanaf tablet/desktop tonen — zelfde grens als
   .about-photos / .hours-photos hierboven. */
@media (min-width: 600px) {
  .gallery-cta-grid {
    grid-template-columns: 1fr minmax(300px, 1fr) 1fr;
    align-items: stretch;
  }

  .gallery-cta-photos { display: grid; }
}

/* Openingstijden */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hours-text {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.hours-title,
.hours-subtitle { text-align: center; }

/* Foto-collage: grote foto rechtsboven met een kleinere foto die linksonder overlapt,
   zelfde compositie/verhoudingen als bij de "Over ons"-sectie, nu in de linkerkolom. */
.hours-photos {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 19%;
  padding-bottom: 21%;
}

/* Niet op de telefoonversie tonen — zelfde grens als de hero-titel/over-ons-foto's
   (iPad mini begint al bij 744px en moet de foto's dus wel te zien krijgen). */
@media (max-width: 599px) {
  .hours-photos { display: none; }
}

.hours-photo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.hours-photo-accent {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.hours-table {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-align: left;
}

.hours-table th {
  color: var(--color-text);
  font-weight: 500;
}

.hours-table td {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: right;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-title { text-align: left; }

.contact-subtitle {
  text-align: left;
  margin: 0 0 2rem;
  max-width: none;
}

.contact-details {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-detail-icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-details a:hover { color: var(--color-gold-light); }

.contact-form {
  background-color: var(--color-panel);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: -0.75rem;
}

.contact-form-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }

  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-field input,
.form-field textarea {
  background-color: var(--color-bg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 0.75rem;
  color: var(--color-text);
  font-family: var(--font-body);
  color-scheme: dark;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-error {
  color: #e07a7a;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.form-status {
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 0 6rem;
  text-align: center;
}

.footer-hours {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-hours-title {
  font-family: var(--font-heading);
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-hours-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-hours-col p:last-child { margin-bottom: 0; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-social a:hover { color: var(--color-gold-light); }

.footer-brand-wrap {
  display: flex;
  justify-content: center;
}

.footer-brand {
  display: block;
  height: 72px;
  width: auto;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-credit {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

.footer-credit a:hover { color: var(--color-gold-light); }

/* Desktop enhancements */
@media (min-width: 768px) {
  .hero-actions { flex-direction: row; justify-content: center; }

  .dishes-grid { grid-template-columns: repeat(3, 1fr); }

  .about-grid { grid-template-columns: 1fr 1fr; }

  .about-text { text-align: left; margin: 0; }

  .about-title { text-align: left; }

  .hours-grid { grid-template-columns: 1fr 1fr; }

  .hours-text { text-align: left; margin: 0; }

  .hours-title,
  .hours-subtitle { text-align: left; }

  .hours-subtitle { margin-left: 0; margin-right: 0; }

  .hours-table { margin: 0; }

  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .site-footer { padding-bottom: 2rem; }

  .footer-hours {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-hours-col {
    padding-left: 2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .footer-hours-col:first-child {
    padding-left: 0;
    border-left: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom > * { flex: 1; }

  /* Padding-left/right zodat de tekst niet onder de vaste contact- en
     WhatsApp-knoppen (linksonder/rechtsonder) komt te zitten. */
  .footer-social { justify-content: flex-start; padding-left: 5.5rem; }

  .footer-meta { align-items: flex-end; text-align: right; padding-right: 5.5rem; }
}

@media (min-width: 900px) {
  .menu-grid { max-width: 820px; margin-left: auto; margin-right: auto; }

  .showcase-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .showcase-track {
    flex-direction: row;
    width: max-content;
    gap: 0;
    will-change: transform;
  }

  .showcase-item {
    flex: 0 0 25vw;
    height: 70vh;
    padding: 0 1.5px;
  }

  .showcase-item img { height: 100%; }
}

@media (min-width: 900px) and (prefers-reduced-motion: reduce) {
  .showcase-pin {
    position: static;
    height: auto;
    overflow: visible;
  }

  .showcase-track {
    flex-wrap: wrap;
    width: auto;
    gap: 0;
    transform: none !important;
  }

  .showcase-item {
    flex: 0 0 25%;
    height: auto;
  }

  .showcase-item img { height: auto; }
}
