/* ═══════════════════════════════════════════════════════
   BISTRO DE GELAARSDE KAT — Demo site
   Palette: #1a1a1a | #c9a84c | #f5f0e8 | #8b1a1a
   ════════════════════════════════════════════════════════ */

/* ── Custom properties ── */
:root {
  --bg:       #1a1a1a;
  --bg-mid:   #242424;
  --bg-card:  #2c2c2c;
  --gold:     #c9a84c;
  --gold-dk:  #a8893a;
  --cream:    #f5f0e8;
  --wine:     #8b1a1a;
  --txt:      #e8e0d0;
  --txt-muted:#a09080;
  --radius:   6px;
  --shadow:   0 8px 32px rgba(0,0,0,.45);
  --trans:    0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: opacity var(--trans); }
a:hover { opacity: .8; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── IMAGE FILL SAFETY NET ─── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery-grid__item img,
.dish-card__media img,
.ribs-split__media img,
.hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Container ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.btn--gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.5);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,.5);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--full { width: 100%; text-align: center; }

/* ── Script labels ── */
.label-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.label-script--light { color: var(--gold); }

/* ── Section titles ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title--light { color: var(--cream); }
.section-sub { color: var(--txt-muted); max-width: 560px; margin: 0 auto 40px; text-align: center; }

.section-header { text-align: center; margin-bottom: 56px; }
.section { padding: 96px 0; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.navbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 1;
}
.navbar__logo:hover { opacity: .85; }
.navbar__logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__links a {
  color: var(--txt);
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color var(--trans);
}
.navbar__links a:hover { color: var(--gold); opacity: 1; }
.navbar__cta {
  background: var(--gold);
  color: #1a1a1a !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .85rem !important;
}
.navbar__cta:hover { background: var(--gold-dk); opacity: 1 !important; }

/* ── Hamburger ── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ══════════════════════════════
   MOBILE MENU — FULLSCREEN KIT
══════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  pointer-events: none;
}
.mobile-menu__overlay[aria-hidden="false"] {
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color var(--trans);
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__panel--root { width: 100%; }
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.mobile-menu__item {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: color var(--trans), padding-left var(--trans);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 12px; opacity: 1; }
.mobile-menu__item--cta {
  color: var(--gold);
  border-bottom-color: rgba(201,168,76,.3);
}
.mobile-menu__footer {
  color: var(--txt-muted);
  font-size: .9rem;
  line-height: 1.8;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 24px;
}
.mobile-menu__footer a { color: var(--gold); }

/* body lock when menu is open */
body.menu-open { overflow: hidden; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,.72) 0%,
    rgba(26,26,26,.55) 50%,
    rgba(26,26,26,.78) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 60px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════
   OVER ONS
══════════════════════════════ */
.over { background: var(--bg); }
.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.over__text .label-script { margin-bottom: 12px; }
.over__text .section-title { margin-bottom: 20px; }
.over__text p {
  color: var(--txt-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.over__text p.lead {
  color: var(--txt);
  font-size: 1.15rem;
  font-weight: 400;
}
.over__text .btn { margin-top: 12px; }
.over__visual { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.over__cat-wrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,.25);
}
.over__cat { width: 100%; height: 100%; object-fit: cover; }
.over__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  min-width: 100px;
}
.badge__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}
.badge__label {
  display: block;
  font-size: .78rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ══════════════════════════════
   SPECIALITEITEN
══════════════════════════════ */
.specialiteiten { background: var(--bg-mid); }

/* Spare ribs split */
.ribs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.12);
}
.ribs-split__media {
  height: 480px;
  overflow: hidden;
}
.ribs-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ribs-split:hover .ribs-split__media img { transform: scale(1.04); }
.ribs-split__body {
  padding: 48px 48px 48px 16px;
}
.ribs-split__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.ribs-split__intro {
  color: var(--txt-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.proof-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.proof-list__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.proof-list li span:last-child {
  color: var(--txt);
  font-size: .95rem;
  line-height: 1.5;
}
.proof-list li strong { color: var(--gold); }

/* Dishes grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dish-card {
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.1);
  transition: transform var(--trans), box-shadow var(--trans);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.dish-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-card:hover .dish-card__media img { transform: scale(1.05); }
.dish-card__body {
  padding: 20px 24px 24px;
}
.dish-card__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.dish-card__body p {
  color: var(--txt-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.dish-card--dark {
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.dish-card__body--center {
  text-align: center;
  padding: 32px;
}
.dish-card--dark h4 { color: #fff; font-size: 1.3rem; margin: 8px 0 12px; }
.dish-card--dark p { color: rgba(255,255,255,.8); }

/* ══════════════════════════════
   GALERIJ
══════════════════════════════ */
.galerij { background: var(--bg); padding-bottom: 0; }
.galerij .section-header { padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
  margin-top: 40px;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews { background: var(--bg-mid); }
.reviews__stars-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.star-row { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }
.reviews__avg { color: var(--txt-muted); font-size: .9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 28px 32px;
  border: 1px solid rgba(201,168,76,.1);
  border-left: 3px solid var(--gold);
  transition: transform var(--trans);
}
.review-card:hover { transform: translateY(-3px); }
.review-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card blockquote {
  color: var(--txt);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.review-card blockquote::before { content: '"'; color: var(--gold); font-size: 1.5rem; }
.review-card blockquote::after  { content: '"'; color: var(--gold); font-size: 1.5rem; }
.review-card footer { display: flex; flex-direction: column; gap: 2px; }
.review-card footer strong { color: var(--gold); font-size: .9rem; }
.review-card footer span { color: var(--txt-muted); font-size: .8rem; }

/* ══════════════════════════════
   RESERVEER
══════════════════════════════ */
.reserveer { background: var(--bg); }
.reserveer .section-title { color: var(--cream); }

.reserveer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 3px; }
.contact-info__item div strong {
  display: block;
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.contact-info__item div p { color: var(--txt); font-size: .95rem; line-height: 1.6; }
.contact-info__item div a { color: var(--txt); }
.contact-info__item div a:hover { color: var(--gold); }

.contact-info__openings strong {
  display: block;
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--txt);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-table tr td:last-child { text-align: right; color: var(--gold); }

/* Form */
.reserveer-form {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(201,168,76,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: .85rem;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: border-color var(--trans);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--bg-card); color: var(--cream); }
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  color: var(--txt-muted);
  font-size: .8rem;
  margin-top: 12px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-kit {
  background: #111;
  border-top: 2px solid rgba(201,168,76,.2);
  padding-top: 0;
}
.footer-kit__top {
  text-align: center;
  padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.footer-kit__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.footer-kit__tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--gold);
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 56px 24px;
}
.footer-kit__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-kit__col address {
  color: var(--txt-muted);
  line-height: 1.8;
  font-size: .9rem;
}
.footer-kit__col address a { color: var(--txt-muted); }
.footer-kit__col address a:hover { color: var(--gold); }

.footer-hours { width: 100%; border-collapse: collapse; }
.footer-hours tr td {
  padding: 5px 0;
  font-size: .88rem;
  color: var(--txt-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-hours tr td:last-child { text-align: right; color: var(--cream); }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: var(--txt-muted);
  font-size: .9rem;
  transition: color var(--trans), padding-left var(--trans);
}
.footer-nav a:hover { color: var(--gold); padding-left: 6px; opacity: 1; }

.footer-kit__bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  color: var(--txt-muted);
  font-size: .8rem;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-kit__credit a { color: var(--txt-muted); }
.footer-kit__credit a:hover { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .over__grid { grid-template-columns: 1fr; gap: 48px; }
  .over__visual { flex-direction: row; justify-content: center; }
  .ribs-split { grid-template-columns: 1fr; }
  .ribs-split__media { height: 320px; }
  .ribs-split__body { padding: 32px 32px 40px; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .mobile-menu__trigger { display: flex; align-items: center; }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }

  .over__grid { grid-template-columns: 1fr; }
  .over__visual { flex-direction: column; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid__item--wide {
    grid-column: span 2;
  }

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

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

  .footer-kit__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-kit__bottom { flex-direction: column; gap: 8px; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .over__badges { gap: 12px; }
  .badge { padding: 12px 14px; min-width: 80px; }
  .badge__num { font-size: 1.3rem; }

  .ribs-split__media { height: 240px; }
  .ribs-split__body { padding: 24px; }

  .review-card { padding: 20px 22px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-grid__item { aspect-ratio: 4/3; }
}

/* ── Scroll reveal (with fallback for bots/no-JS) ── */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}

/* ── Fixes v2: visual review improvements ── */

/* Reviews: fix cramped proportions */
.reviews-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  padding: 32px 36px;
}
.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Gallery: more balanced last row */
.gallery-grid {
  grid-template-rows: 340px 340px;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-rows: auto;
  }
}

/* Hero: ensure gold CTA is visually dominant */
.hero__actions .btn--gold {
  font-size: 1rem;
  padding: 16px 40px;
  letter-spacing: .08em;
}

/* dish-card--dark: fix spacing on mobile */
@media (max-width: 640px) {
  .dish-card--dark {
    min-height: 200px;
  }
}

/* Favicon fallback SVG */

/* ── Fixes v3: definitive hero CTA + mobile reviews ── */

/* Force solid gold on hero CTA — ensure it overrides any cascade */
.hero .btn--gold,
.hero__actions .btn--gold {
  background: #c9a84c !important;
  background-color: #c9a84c !important;
  color: #1a1a1a !important;
  border: 2px solid #c9a84c !important;
  box-shadow: 0 4px 20px rgba(201,168,76,.4) !important;
  opacity: 1 !important;
}
.hero .btn--gold:hover,
.hero__actions .btn--gold:hover {
  background: #a8893a !important;
  background-color: #a8893a !important;
  border-color: #a8893a !important;
}

/* Mobile reviews: single column */
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Specialiteiten: soften the wine-red card */
.dish-card--dark {
  background: linear-gradient(135deg, #8b1a1a 0%, #6e1515 100%);
  border: 1px solid rgba(201,168,76,.25);
}

/* ── Fixes v4: hero CTA mega-prominence + hero text contrast ── */
.hero .btn--gold,
.hero__actions .btn--gold {
  padding: 18px 48px !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  text-shadow: none !important;
  background: #c9a84c !important;
  color: #111111 !important;
  border: 3px solid #c9a84c !important;
  box-shadow: 0 6px 32px rgba(201,168,76,.55), 0 0 0 3px rgba(201,168,76,.15) !important;
  outline: none !important;
}

/* Hero text: stronger overlay for legibility */
.hero__overlay {
  background: linear-gradient(
    160deg,
    rgba(20,20,20,.78) 0%,
    rgba(20,20,20,.62) 50%,
    rgba(20,20,20,.82) 100%
  ) !important;
}

/* Hero subtitle: bigger + more contrast */
.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
  color: #f5f0e8 !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.7) !important;
}

/* ── Fixes v6: nav contrast + hero ── */
.navbar__links a {
  color: var(--cream) !important;
}
