/* =============================================
   IRODION — Restaurant Demo Site
   Palette: Gold #C9A84C | Navy #1A2B4A | White #FFFFFF | Dark #2C2C2C | Amber #B5651D
   ============================================= */

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

:root {
  --gold:    #C9A84C;
  --gold-d:  #A8883A;
  --navy:    #1A2B4A;
  --navy-d:  #111D30;
  --white:   #FFFFFF;
  --dark:    #2C2C2C;
  --amber:   #B5651D;
  --bg-subtle: #F5F0E8;
  --text:    #2C2C2C;
  --text-muted: #666;
  --radius:  6px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ---- MEDIA FILL (containers voor foto's) ---- */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img > img, .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padded { padding: 88px 0; }

.bg-dark { background: var(--navy); }
.bg-subtle { background: var(--bg-subtle); }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-sub {
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(26, 43, 74, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-logo__sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  min-height: 100dvh;
  background: var(--navy-d);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}

.mobile-menu__backdrop {
  display: none;
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0 32px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__list {
  padding: 16px 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 18px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.mobile-menu__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}
.mobile-menu__hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
}

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

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 29, 48, 0.4) 0%,
    rgba(17, 29, 48, 0.55) 50%,
    rgba(17, 29, 48, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  margin-top: 68px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__badge {
  background: rgba(201,168,76,0.18);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__btn-main { padding: 16px 32px; font-size: 1rem; }
.hero__btn-sec  { padding: 16px 32px; font-size: 1rem; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.5);
  animation: bounce 2.5s infinite;
  transition: color var(--transition);
}
.hero__scroll-hint:hover { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- AWARDS BAND ---- */
.awards-band {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.awards-band__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 44px 52px;
  flex: 1;
  max-width: 360px;
}
.award-item__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.award-item__text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}
.award-item__text span {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.awards-band__divider {
  width: 1px;
  background: rgba(201,168,76,0.2);
  margin: 16px 0;
  align-self: stretch;
}

/* ---- OVER ONS ---- */
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.over-ons__tekst p {
  color: #4a4a4a;
  margin-bottom: 16px;
}
.over-ons__intro {
  font-size: 1.15rem;
  color: var(--dark) !important;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px !important;
}

.over-ons__meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e0d6;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.meta-item__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.over-ons__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.over-ons__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-ons__quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 28px;
  margin-top: 20px;
  position: relative;
}
.over-ons__quote-card svg { margin-bottom: 12px; opacity: 0.85; }
.over-ons__quote-card p {
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
  line-height: 1.6;
}
.over-ons__quote-card cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- DISHES / MENU ---- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card:hover .card__img img { transform: scale(1.05); }

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 5;
}
.dish-card--featured { position: relative; }

.card__body {
  padding: 20px;
}
.dish-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.dish-card__desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 16px;
}
.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.dish-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.dish-card__tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 100px;
}

.menu-cta-wrap {
  text-align: center;
}

/* ---- ZAALVERHUUR ---- */
.zaalverhuur__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.zaalverhuur__beeld {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.zaalverhuur__beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zaalverhuur__tekst p {
  color: #4a4a4a;
  margin-bottom: 24px;
}

.event-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dark);
}
.event-list__item svg { color: var(--gold); flex-shrink: 0; }

.zaalverhuur__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-subtle);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.zaal-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.zaal-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.zaal-stat__lab {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid #e5dfd2;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.review-card__quote {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5dfd2;
}
.review-card__author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- WIJN CTA ---- */
.wijn-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.wijn-cta__beeld {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.wijn-cta__beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wijn-cta__body {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__block strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-info__block p {
  font-size: 0.93rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.contact-info__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.contact-info__link {
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info__link:hover { color: var(--gold); }

.hours-table {
  border-collapse: collapse;
  font-size: 0.88rem;
  color: #4a4a4a;
  margin-top: 4px;
}
.hours-table td { padding: 3px 16px 3px 0; }
.hours-table td:last-child { color: var(--dark); font-weight: 600; }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--bg-subtle);
  border-radius: 6px;
  padding: 40px;
  border: 1px solid #e5dfd2;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #d9d0c0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--navy-d);
  color: rgba(255,255,255,0.75);
}
.footer-kit__inner {
  padding-top: 72px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-kit__heading {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact-link a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-contact-link a:hover { color: var(--gold); }

.footer-hours {
  border-collapse: collapse;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.footer-hours td { padding: 4px 16px 4px 0; }
.footer-hours td:last-child { color: rgba(255,255,255,0.85); }

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-kit__awards-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(201,168,76,0.7);
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 12px 16px;
  background: rgba(17, 29, 48, 0.97);
  border-top: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(8px);
}
.sticky-cta__btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .over-ons__grid { grid-template-columns: 1fr; gap: 48px; }
  .zaalverhuur__grid { grid-template-columns: 1fr; gap: 40px; }
  .zaalverhuur__beeld { order: -1; }
  .wijn-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .awards-band__inner { flex-direction: column; }
  .awards-band__divider { width: 80%; height: 1px; margin: 0 auto; align-self: auto; }
  .award-item { max-width: 100%; padding: 24px 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  .section-padded { padding: 56px 0; }
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .card__img {
    aspect-ratio: 3 / 2;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-kit__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .over-ons__meta { flex-wrap: wrap; gap: 20px; }
  .zaalverhuur__stats { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .card__img {
    aspect-ratio: 4 / 3;
  }
  .footer-kit__inner { grid-template-columns: 1fr; }
  .hero__eyebrow { font-size: 0.7rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__btn-main, .hero__btn-sec { width: 100%; max-width: 300px; justify-content: center; }
  .awards-band { border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
}

/* ---- BODY LOCK when menu open ---- */
body.menu-open { overflow: hidden; }

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