/* ═══════════════════════════════════════════
   RESTAURANT EMPIRE — DESIGN SYSTEM
   Palet: Navy #1a2a4a | Goud #c9a84c | Crème #f5f0e8 | Wit #ffffff
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy:      #1a2a4a;
  --navy-deep: #0f1a2e;
  --navy-mid:  #243459;
  --gold:      #c9a84c;
  --gold-lt:   #debb6e;
  --cream:     #f5f0e8;
  --cream-dk:  #ede5d6;
  --white:     #ffffff;
  --text-on-navy: rgba(255,255,255,0.88);
  --text-muted:   rgba(255,255,255,0.55);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.18);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.32);

  --transition: 0.25s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── FOCUS / ACCESSIBILITY ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── IMG-FILL UTILITY ─── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill, .gallery img, .card img,
.hero__img, .menu-card__image img, .sfeer-image img,
.maandmenu-card__image img, .cta-band__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.85);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover { background: rgba(201,168,76,0.12); }
.btn--lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn--sm { padding: 9px 20px; font-size: 0.8125rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── SECTION LABELS & TITLES ─── */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-sub {
  font-size: 1.0625rem;
  color: #4a5568;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ══════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(15, 26, 46, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-empire {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.desktop-nav a {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.desktop-nav a:hover { color: var(--gold); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }
.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--white);
  transition: color var(--transition);
  background: rgba(201,168,76,0.18);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(201,168,76,0.55);
}
.mobile-menu__trigger:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy-deep);
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 88px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
}
.mobile-menu__item {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); }
.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════════
   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;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 36, 0.55) 0%,
    rgba(10, 18, 36, 0.3) 40%,
    rgba(10, 18, 36, 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   SOCIAL PROOF STRIP
══════════════════════════════════════════ */
.proof-strip {
  background: var(--cream);
  padding: 32px 24px;
  border-bottom: 1px solid var(--cream-dk);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-item {
  flex: 1;
  min-width: 220px;
}
.proof-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.proof-stars svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.proof-rating {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-left: 6px;
}
.proof-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: #1a2a4a;
  line-height: 1.55;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-dk);
  flex-shrink: 0;
}
.proof-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
}

/* ══════════════════════════════════════════
   MAANDMENU
══════════════════════════════════════════ */
.maandmenu-section {
  padding: 96px 0;
  background: var(--white);
}
.maandmenu-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  margin-top: 0;
}
.maandmenu-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.maandmenu-card__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.maandmenu-card__content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--navy);
}
.maandmenu-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 12px 24px;
  border-radius: var(--radius);
  align-self: flex-start;
}
.price-amount {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.price-note {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.8;
}
.maandmenu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.maandmenu-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-on-navy);
  font-size: 0.9375rem;
  line-height: 1.4;
}
.maandmenu-items li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.item-qty {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-left: 4px;
}

/* ══════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════ */
.menu-section {
  padding: 96px 0;
  background: var(--cream);
}
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cream-dk);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
}
.menu-tab:hover { color: var(--navy); }
.menu-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-intro {
  max-width: 600px;
  margin-bottom: 36px;
}
.menu-intro p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Menu cards grid */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.menu-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card__image img { transform: scale(1.04); }
.menu-card__body {
  padding: 20px 24px 24px;
}
.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-card__header h3 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.menu-price {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card__body p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
}
.menu-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Pakketten grid */
.pakketten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pakket-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pakket-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pakket-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}
.pakket-card--royal {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
}
.pakket-card__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 4px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.pakket-card__inner {
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.pakket-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.pakket-card h3 {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.pakket-card--featured h3,
.pakket-card--royal h3 { color: var(--white); }
.pakket-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pakket-price span {
  font-family: var(--ff-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pakket-price small {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}
.pakket-card--featured .pakket-price small,
.pakket-card--royal .pakket-price small { color: rgba(255,255,255,0.5); }
.pakket-card p {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.55;
}
.pakket-card--featured p,
.pakket-card--royal p { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════
   SFEER SECTION
══════════════════════════════════════════ */
.sfeer-section {
  padding: 96px 0;
  background: var(--white);
  overflow: hidden;
}
.sfeer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sfeer-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sfeer-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sfeer-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.sfeer-content { display: flex; flex-direction: column; gap: 20px; }
.sfeer-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.sfeer-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
}
.sfeer-kenmerken {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}
.kenmerk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.kenmerk svg { flex-shrink: 0; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,18,36,0.93) 0%,
    rgba(26,42,74,0.88) 100%
  );
}
.cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-band__content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}
.reserveer-options {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.reserveer-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  align-self: flex-start;
}
.reserveer-phone:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.phone-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.phone-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

/* Form */
.reserveer-form { display: flex; flex-direction: column; gap: 16px; }
.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.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-kit {
  background: var(--navy-deep);
  color: var(--white);
  padding-top: 72px;
}
.footer-kit__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-col__title {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 12px 0 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours .day { font-weight: 500; }
.footer-hours .time { color: rgba(255,255,255,0.5); }
.footer-hours .closed .day,
.footer-hours .closed .time { color: rgba(255,255,255,0.3); }
.footer-address {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-address svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-address strong { color: var(--white); }
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer-map-link:hover { color: var(--gold-lt); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-kit__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-demo-note a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-demo-note a:hover { color: var(--gold-lt); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .pakketten-grid { grid-template-columns: repeat(2, 1fr); }
  .reserveer-options { grid-template-columns: 1fr; gap: 32px; }
  .reserveer-phone { flex-direction: row; }
}

/* Mobile */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn--sm { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Ensure header always has dark bg on mobile so hamburger is visible */
  .site-header {
    background: rgba(10, 18, 36, 0.82);
    backdrop-filter: blur(8px);
  }
  .site-header.scrolled { background: rgba(10, 18, 36, 0.97); }

  .hero__headline { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero__sub { font-size: 0.9375rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .proof-inner { flex-direction: column; gap: 20px; }
  .proof-divider { width: 100%; height: 1px; }
  .proof-item { min-width: auto; width: 100%; text-align: center; }
  .proof-stars { justify-content: center; }
  .proof-badges { align-items: center; }

  .maandmenu-section { padding: 64px 0; }
  .maandmenu-card { grid-template-columns: 1fr; }
  .maandmenu-card__image { aspect-ratio: 16/9; }
  .maandmenu-card__content { padding: 32px 28px; }

  .menu-section { padding: 64px 0; }
  .menu-card-grid { grid-template-columns: 1fr; }
  .pakketten-grid { grid-template-columns: 1fr; gap: 16px; }

  .sfeer-section { padding: 64px 0; }
  .sfeer-inner { grid-template-columns: 1fr; gap: 36px; }
  .sfeer-image { aspect-ratio: 16/9; }
  .sfeer-image::before { display: none; }
  .sfeer-kenmerken { grid-template-columns: 1fr; }

  .cta-band { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .container { padding: 0 16px; }

  .section-title { font-size: 1.75rem; }
  .menu-tabs { gap: 0; }
  .menu-tab { padding: 12px 18px; font-size: 0.8125rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__scroll { animation: none; }
}
