/* ============================================================
   RIVERO SCHOONHOVEN — Premium Waterside Restaurant
   Palette: #1a1a1a dark · #ffffff white · #4a7c59 deep green · #c8a96e warm gold
   ============================================================ */

:root {
  --bg:       #1a1a1a;
  --bg-alt:   #111111;
  --bg-card:  #242424;
  --bg-card2: #2a2a2a;
  --white:    #ffffff;
  --off-white:#f0ece4;
  --green:    #4a7c59;
  --green-dk: #3a6248;
  --gold:     #c8a96e;
  --gold-lt:  #d4bb88;
  --text:     #e8e0d0;
  --text-muted:#a09880;
  --border:   rgba(200,169,110,0.15);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --max-w:    1200px;
  --nav-h:    72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== FILL IMAGES (no letterboxing) ===== */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.feature-card__media img, .reserveren__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 700; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn--green { background: #4a7c59 !important; color: #ffffff !important; }
.btn--green:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,89,0.35); }

.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }

.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADERS ===== */
.section-eyebrow { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-eyebrow--gold { color: var(--gold); }
.section-title { color: var(--white); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; }
.section-sub--light { color: rgba(232,224,208,0.7); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.section-header--light .section-title { color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(17,17,17,0.98); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0;
}
.logo-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--white); letter-spacing: 0.08em;
}
.logo-leaf { display: flex; align-items: center; }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

.nav-links {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center;
}
.nav-link {
  display: block; padding: 8px 14px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

/* ===== HAMBURGER ===== */
.mobile-menu__trigger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px 10px; color: var(--white); margin-left: auto; min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: all 0.3s; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu__overlay {
  position: fixed; inset: 0; z-index: 950;
  width: 100%; height: 100svh; height: 100dvh;
  background: var(--bg-alt);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 0 0 24px; }

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mobile-menu__brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--white); letter-spacing: 0.1em;
}
.mobile-menu__close {
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 6px; border-radius: 6px;
  transition: color 0.2s;
}
.mobile-menu__close:hover { color: var(--white); }

.mobile-menu__list { padding: 8px 16px; flex: 1; }
.mobile-menu__item {
  display: block; padding: 16px 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--text); border-bottom: 1px solid rgba(200,169,110,0.1);
  transition: color 0.2s;
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; width: 100%; text-align: left;
}
.mobile-menu__item:hover { color: var(--gold); }
.mobile-menu__item:last-child { border-bottom: none; }

.mobile-menu__footer {
  padding: 24px; border-top: 1px solid var(--border); margin-top: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.mobile-menu__cta { justify-content: center; }
.mobile-menu__contact { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu__contact a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%;
  height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.3) 0%,
    rgba(17,17,17,0.55) 50%,
    rgba(17,17,17,0.75) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 24px;
  max-width: 800px;
}
.hero__eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero__sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; line-height: 1.6;
}
.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); z-index: 2;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 32px; flex: 1; min-width: 200px;
  justify-content: center;
}
.trust-item strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); }
.trust-icon { flex-shrink: 0; }
.trust-divider {
  width: 1px; height: 48px; background: var(--border); flex-shrink: 0;
}

/* ===== FEATURE CARDS ===== */
.features { padding: 80px 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: var(--max-w); margin: 0 auto;
}
.feature-card { position: relative; overflow: hidden; }
.feature-card__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.feature-card:hover .feature-card__media img { transform: scale(1.05); }
.feature-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.2) 60%, transparent 100%);
}
.feature-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; z-index: 2;
}
.feature-card__title {
  font-size: 1.6rem; font-weight: 800; color: var(--white);
  margin-bottom: 10px; text-transform: uppercase;
}
.feature-card__text { font-size: 0.9rem; color: rgba(232,224,208,0.8); margin-bottom: 16px; line-height: 1.5; }
.feature-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  transition: gap 0.2s;
}
.feature-card__link:hover { gap: 10px; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 80px 0; background: var(--bg-alt); }

.menu-tabs {
  display: flex; gap: 4px; margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  justify-content: center; flex-wrap: wrap;
}
.menu-tab {
  background: none; border: none; cursor: pointer;
  padding: 12px 24px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.2s;
}
.menu-tab:hover { color: var(--white); }
.menu-tab--active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel--active { display: block; }

.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.dish-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.dish-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.dish-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white); }
.dish-card__price { font-weight: 600; font-size: 0.95rem; color: var(--gold); white-space: nowrap; }
.dish-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.dish-card__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; background: rgba(74,124,89,0.2); color: var(--green);
  border: 1px solid rgba(74,124,89,0.4);
}

/* ===== ARRANGEMENTEN ===== */
.arrangementen { padding: 80px 0; background: var(--bg); }
.arr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.arr-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.arr-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,0.35); }
.arr-card__icon { margin-bottom: 20px; }
.arr-card__title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.arr-card__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.arr-card__list { display: flex; flex-direction: column; gap: 8px; }
.arr-card__list li {
  font-size: 0.85rem; color: var(--text); padding-left: 18px; position: relative;
}
.arr-card__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.arr-cta { text-align: center; }
.arr-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== OVER ONS ===== */
.over-ons { padding: 80px 0; background: var(--bg-alt); }
.over-ons__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.over-ons__lead { font-size: 1.15rem; font-weight: 500; color: var(--off-white); margin-bottom: 20px; line-height: 1.6; }
.over-ons__body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.over-ons__badges { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
}
.badge svg { flex-shrink: 0; }

.over-ons__image { position: relative; }
.over-ons__image .img-fill {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden;
}
.over-ons__image .img-fill img { width: 100%; height: 100%; object-fit: cover; display: block; }
.over-ons__image::before {
  content: ''; position: absolute; inset: -12px -12px 12px 12px;
  border: 2px solid rgba(200,169,110,0.2); border-radius: var(--radius-lg);
  z-index: -1;
}

/* ===== RESERVEREN ===== */
.reserveren { position: relative; padding: 100px 0; overflow: hidden; }
.reserveren__bg {
  position: absolute; inset: 0;
}
.reserveren__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reserveren__overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.85);
}
.reserveren__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
}
.reserveren__text .section-eyebrow { color: var(--gold); }
.reserveren__text .section-title { color: var(--white); margin-bottom: 16px; }
.reserveren__text p { color: rgba(232,224,208,0.8); margin-bottom: 28px; }
.reserveren__contact { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-link {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--gold); font-size: 1.05rem;
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.8; }
.contact-sep { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FORM ===== */
.form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--white);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160,152,128,0.6); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 80px 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-block h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 12px;
}
.contact-block address,
.contact-block p { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.contact-block a { color: var(--gold); transition: opacity 0.2s; }
.contact-block a:hover { opacity: 0.8; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 6px 0; color: var(--text); }
.hours-table td:first-child { color: var(--text-muted); padding-right: 16px; }
.hours-kitchen td { color: var(--gold) !important; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }

.contact-map { height: 400px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ===== FOOTER ===== */
.footer-kit {
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--white); letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 0.85rem; color: var(--gold); font-style: italic; margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted);
  transition: all 0.2s;
}
.footer-socials a:hover { color: var(--gold); border-color: rgba(200,169,110,0.4); }

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.9rem; color: var(--text); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-contact address,
.footer-contact p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.footer-contact a { color: var(--gold); transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 0.8; }
.footer-hours { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours p { font-size: 0.85rem; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-award {
  display: flex; align-items: center; gap: 6px; color: var(--text-muted) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .over-ons__grid { gap: 40px; }
  .reserveren__inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .trust-strip__inner { flex-direction: column; gap: 0; }
  .trust-item { width: 100%; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .trust-divider { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card__media { aspect-ratio: 16/9; }

  .menu-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 0; }
  .menu-tab { padding: 12px 16px; white-space: nowrap; }

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

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

  .over-ons__grid { grid-template-columns: 1fr; }
  .over-ons__image { display: none; }

  .reserveren__inner { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .logo-sub { display: none; }
}

@media (max-width: 480px) {
  .trust-item { padding: 14px 20px; justify-content: flex-start; }
  .features { padding: 0; }
  .features__grid { gap: 0; }
  .menu-section { padding: 56px 0; }
  .arrangementen { padding: 56px 0; }
  .over-ons { padding: 56px 0; }
  .reserveren { padding: 64px 0; }
  .contact-section { padding: 56px 0; }
}
