/* ============================================================
   LA PIAZZA BODEGRAVEN — Stylesheet
   Palette: #2b2b2b (charcoal) | #c0392b (rood) | #f5f0e8 (off-white)
            #8b6914 (goud) | #ffffff (wit)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2b2b2b;
  --rood:     #c0392b;
  --rood-dark:#a93226;
  --offwhite: #f5f0e8;
  --goud:     #8b6914;
  --wit:      #ffffff;
  --tekst:    #3a3a3a;
  --tekst-licht: #6b6b6b;
  --rand:     #e0d9ce;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       8px;
  --shadow:       0 4px 20px rgba(43,43,43,.10);
  --shadow-hover: 0 8px 32px rgba(43,43,43,.18);
  --trans:        0.25s ease;
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--tekst);
  background: var(--offwhite);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}

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

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

/* ---------- Image fill helper ---------- */
.media, .img-fill, figure.photo {
  position: relative; overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.sfeer-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 4px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--rood); color: var(--wit);
  border-color: var(--rood);
}
.btn-primary:hover { background: var(--rood-dark); border-color: var(--rood-dark); }

.btn-secondary {
  background: transparent; color: var(--wit);
  border-color: rgba(255,255,255,.75);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--wit); }

.btn-outline {
  background: transparent; color: var(--rood);
  border-color: var(--rood);
}
.btn-outline:hover { background: var(--rood); color: var(--wit); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(43,43,43,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--trans);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--wit); font-style: italic; letter-spacing: .02em;
}
.nav-logo .logo-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rood);
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: .85rem; font-weight: 700;
  font-family: var(--font-body); color: var(--wit); letter-spacing: .05em;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.80); font-size: .9rem; font-weight: 500;
  transition: color var(--trans); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--rood); transition: right var(--trans);
}
.nav-links a:hover { color: var(--wit); }
.nav-links a:hover::after { right: 0; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 32px; height: 22px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.mobile-menu__trigger span {
  display: block; width: 100%; height: 2px;
  background: var(--wit); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.mobile-menu__trigger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU — fullscreen overlay kit component
   ============================================================ */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  width: 100%; height: 100svh;
  background: var(--charcoal);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 2rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  transform: translateX(100%);
}

.mobile-menu__close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wit); margin-bottom: 1.5rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__panel {
  flex: 1;
}

.mobile-menu__list {
  list-style: none;
  display: flex; flex-direction: column; gap: .25rem;
}

.mobile-menu__item {
  display: block;
  color: var(--wit);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--trans), padding-left var(--trans);
}
.mobile-menu__item:hover { color: var(--rood); padding-left: .5rem; }

.mobile-menu__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: .75rem;
}
.mobile-menu__footer a {
  color: rgba(255,255,255,.65); font-size: .9rem;
  display: flex; align-items: center; gap: .5rem;
  transition: color var(--trans);
}
.mobile-menu__footer a:hover { color: var(--wit); }
.mobile-menu__footer svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--rood); }

.mobile-menu__reserve {
  margin-top: 1.5rem;
}
.mobile-menu__reserve .btn {
  width: 100%; justify-content: center; font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43,43,43,.72) 0%,
    rgba(43,43,43,.45) 60%,
    rgba(43,43,43,.30) 100%
  );
}

.hero__content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 70px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--goud); font-size: .8rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--goud);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--wit);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: .5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--offwhite);
  display: block;
}

.hero__subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rood);
  display: block; margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--charcoal); margin-bottom: 1rem;
}
.section-title.light { color: var(--wit); }

.section-desc {
  color: var(--tekst-licht); font-size: 1.05rem;
  max-width: 580px; line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.75); }

.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-header .section-desc { margin: 0 auto; }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--wit);
  padding: 5rem 1.5rem;
}
.intro-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.intro-strip__text .section-title { margin-bottom: 1.25rem; }
.intro-strip__text p {
  color: var(--tekst-licht); line-height: 1.8; margin-bottom: 1.5rem;
}
.intro-strip__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.intro-strip__img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   MENU HIGHLIGHTS (home)
   ============================================================ */
.menu-highlights {
  background: var(--offwhite);
  padding: 5.5rem 1.5rem;
}

.menu-highlights__inner {
  max-width: var(--max-w); margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--trans), transform var(--trans);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.card:hover .card__img img { transform: scale(1.04); }

.card__body {
  padding: 1.4rem 1.5rem 1.75rem;
}
.card__tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rood);
  margin-bottom: .5rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--charcoal);
  margin-bottom: .5rem;
}
.card__desc {
  color: var(--tekst-licht); font-size: .9rem; line-height: 1.6;
}

/* ============================================================
   SFEER STRIP
   ============================================================ */
.sfeer-strip {
  background: var(--charcoal);
  padding: 0;
}
.sfeer-strip__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 4px;
}
.sfeer-strip__grid .item {
  overflow: hidden;
}
.sfeer-strip__grid .item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.sfeer-strip__grid .item:hover img { transform: scale(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--rood);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 12px,
    rgba(255,255,255,.04) 12px, rgba(255,255,255,.04) 13px
  );
}
.cta-band__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--wit); margin-bottom: 1rem; font-style: italic;
}
.cta-band__desc {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  margin-bottom: 2.25rem; line-height: 1.7;
}
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--wit); color: var(--rood);
  border-color: var(--wit); font-weight: 700;
}
.btn-white:hover { background: var(--offwhite); border-color: var(--offwhite); }

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

/* ============================================================
   OPENINGSTIJDEN PREVIEW (home)
   ============================================================ */
.uren-preview {
  background: var(--charcoal);
  padding: 4.5rem 1.5rem;
}
.uren-preview__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.uren-table {
  width: 100%; border-collapse: collapse;
}
.uren-table tr:not(:last-child) td { padding-bottom: .7rem; }
.uren-table td { color: rgba(255,255,255,.75); font-size: .95rem; }
.uren-table td:first-child { font-weight: 600; color: var(--offwhite); width: 55%; }
.uren-table td:last-child { color: rgba(255,255,255,.6); }

.uren-contact { display: flex; flex-direction: column; gap: 1rem; }
.uren-contact__item {
  display: flex; gap: .9rem; align-items: flex-start;
}
.uren-contact__item svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--rood); margin-top: .15rem;
}
.uren-contact__item span {
  color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.5;
}
.uren-contact__item a {
  color: rgba(255,255,255,.72);
  transition: color var(--trans);
}
.uren-contact__item a:hover { color: var(--wit); }

/* ============================================================
   FULL MENU PAGE
   ============================================================ */
.menu-page {
  background: var(--offwhite);
  padding-top: 100px; /* nav offset */
  min-height: 100vh;
}

.menu-page__hero {
  background: var(--charcoal);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--rood);
}
.menu-page__hero .section-title { color: var(--wit); font-style: italic; font-size: 3rem; }
.menu-page__hero p { color: rgba(255,255,255,.65); margin-top: .5rem; }

.menu-tabs {
  background: var(--wit);
  border-bottom: 2px solid var(--rand);
  position: sticky; top: 70px; z-index: 50;
}
.menu-tabs__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; overflow-x: auto; padding: 0 1.5rem;
  scrollbar-width: none; -ms-overflow-style: none;
  gap: 0;
}
.menu-tabs__inner::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--tekst-licht); background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color var(--trans), border-color var(--trans);
}
.menu-tab:hover { color: var(--charcoal); }
.menu-tab.active { color: var(--rood); border-bottom-color: var(--rood); }

.menu-section {
  display: none;
  padding: 3.5rem 1.5rem 5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.menu-section.active { display: block; }

.menu-category {
  margin-bottom: 3.5rem;
}
.menu-category__title {
  font-family: var(--font-display);
  font-size: 1.7rem; font-style: italic;
  color: var(--rood);
  margin-bottom: .25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--rand);
  display: flex; align-items: center; gap: .75rem;
}
.menu-category__title svg {
  width: 22px; height: 22px; flex-shrink: 0;
}
.menu-category__desc {
  color: var(--tekst-licht); font-size: .9rem; margin-bottom: 1.5rem;
  font-style: italic;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: .75rem;
}
.menu-item {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.menu-item:hover {
  border-left-color: var(--rood);
  box-shadow: var(--shadow);
}
.menu-item__text { flex: 1; }
.menu-item__name {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .2rem;
}
.menu-item__desc {
  font-size: .82rem; color: var(--tekst-licht); line-height: 1.45;
}
.menu-item__price {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--rood); white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.over-page {
  background: var(--offwhite);
  padding-top: 100px;
  min-height: 100vh;
}
.over-hero {
  background: var(--charcoal);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--rood);
}
.over-hero .section-title { color: var(--wit); font-style: italic; }
.over-hero p { color: rgba(255,255,255,.65); margin-top: .5rem; }

.over-content {
  max-width: 860px; margin: 0 auto;
  padding: 5rem 1.5rem;
}
.over-content h2 {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--rood); font-style: italic;
  margin-bottom: 1.25rem; margin-top: 2.5rem;
}
.over-content h2:first-child { margin-top: 0; }
.over-content p {
  color: var(--tekst); line-height: 1.85; margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.waarden-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin: 2.5rem 0;
}
.waarde-card {
  background: var(--wit); border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--rood);
  text-align: center;
}
.waarde-card svg {
  width: 36px; height: 36px; color: var(--rood);
  margin: 0 auto 1rem;
}
.waarde-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--charcoal); margin-bottom: .5rem;
}
.waarde-card p { color: var(--tekst-licht); font-size: .9rem; line-height: 1.55; }

/* ============================================================
   RESERVEREN PAGE
   ============================================================ */
.reserveren-page {
  background: var(--offwhite);
  padding-top: 100px; min-height: 100vh;
}
.reserveren-hero {
  background: var(--charcoal);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--rood);
}
.reserveren-hero .section-title { color: var(--wit); font-style: italic; }
.reserveren-hero p { color: rgba(255,255,255,.65); margin-top: .5rem; }

.reserveren-content {
  max-width: var(--max-w); margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: start;
}

.reserveer-form {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem 3rem;
  box-shadow: var(--shadow);
}
.reserveer-form h2 {
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--charcoal); margin-bottom: .5rem;
}
.reserveer-form .sub {
  color: var(--tekst-licht); font-size: .95rem; margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .45rem; letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--rand); border-radius: 4px;
  font-family: var(--font-body); font-size: .95rem; color: var(--tekst);
  background: var(--offwhite);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rood);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.reserveer-info h2 {
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-item svg {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--rood); margin-top: .15rem;
}
.info-item__text h3 {
  font-size: .9rem; font-weight: 700; color: var(--charcoal); margin-bottom: .2rem;
}
.info-item__text p, .info-item__text a {
  color: var(--tekst-licht); font-size: .9rem; line-height: 1.6;
}
.info-item__text a:hover { color: var(--rood); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--offwhite);
  padding-top: 100px; min-height: 100vh;
}
.contact-hero {
  background: var(--charcoal);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--rood);
}
.contact-hero .section-title { color: var(--wit); font-style: italic; }
.contact-hero p { color: rgba(255,255,255,.65); margin-top: .5rem; }

.contact-content {
  max-width: var(--max-w); margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-details h2 {
  font-family: var(--font-display); font-size: 1.9rem;
  color: var(--charcoal); margin-bottom: 2rem;
}
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rand);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item svg {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--rood); margin-top: .1rem;
}
.contact-item__text h3 {
  font-size: .85rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: .4rem;
}
.contact-item__text p, .contact-item__text a {
  color: var(--tekst-licht); font-size: .95rem; line-height: 1.6;
}
.contact-item__text a:hover { color: var(--rood); }

.uren-list { list-style: none; }
.uren-list li {
  display: flex; justify-content: space-between;
  padding: .3rem 0; color: var(--tekst-licht); font-size: .92rem;
}
.uren-list li strong { color: var(--charcoal); }

.map-container {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: #e8e2d9;
}
.map-container iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.map-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; background: #e8e2d9;
  text-align: center; padding: 2rem;
}
.map-fallback svg { width: 48px; height: 48px; color: var(--rood); }
.map-fallback p { color: var(--tekst-licht); font-size: .95rem; }
.map-fallback a { color: var(--rood); font-weight: 600; text-decoration: underline; }

/* ============================================================
   FOOTER-KIT
   ============================================================ */
.footer-kit {
  background: #1e1e1e;
  color: rgba(255,255,255,.65);
  padding: 4rem 1.5rem 2rem;
  border-top: 3px solid var(--rood);
}
.footer-kit__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--wit); margin-bottom: 1.25rem;
}
.footer-logo {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.footer-logo .logo-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rood);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; font-family: var(--font-body);
  color: var(--wit); letter-spacing: .05em; flex-shrink: 0;
}
.footer-logo span {
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; color: var(--wit);
}
.footer-col p { font-size: .9rem; line-height: 1.7; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .9rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--wit); }
.footer-contact { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact__item {
  display: flex; gap: .7rem; align-items: flex-start;
}
.footer-contact__item svg {
  width: 17px; height: 17px; flex-shrink: 0;
  color: var(--rood); margin-top: .2rem;
}
.footer-contact__item span,
.footer-contact__item a {
  font-size: .88rem; line-height: 1.5;
  color: rgba(255,255,255,.60);
  transition: color var(--trans);
}
.footer-contact__item a:hover { color: var(--wit); }

.footer-kit__bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-kit__bottom a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer-kit__bottom a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #1e1e1e 0%, var(--charcoal) 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 3px solid var(--rood);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 30px,
    rgba(192,57,43,.04) 30px, rgba(192,57,43,.04) 31px
  );
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero .section-title { color: var(--wit); font-style: italic; font-size: 3rem; }
.page-hero p { color: rgba(255,255,255,.62); margin-top: .6rem; font-size: 1.05rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .intro-strip__inner { grid-template-columns: 1fr; }
  .intro-strip__img { aspect-ratio: 16/9; }
  .uren-preview__inner { grid-template-columns: 1fr; }
  .sfeer-strip__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .sfeer-strip__grid .item:nth-child(1) { grid-column: 1 / 3; }
  .reserveren-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .sfeer-strip__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }

  .menu-highlights .card-grid {
    grid-template-columns: 1fr;
  }

  .reserveer-form { padding: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-kit__inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .menu-tabs__inner { padding: 0 .75rem; }
  .menu-tab { padding: .9rem 1rem; font-size: .8rem; }
  .cta-band { padding: 3.5rem 1.25rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
