/* ===========================
   Brasserie Talloor — stylesheet
   =========================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  color: var(--body);
  background: var(--teal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---- Tokens ---- */
:root {
  --teal: #3E5859;
  --teal-dark: #324848;
  --teal-darker: #283939;
  --yellow: #F2E86D;
  --yellow-hover: #e0d652;
  --body: #cfd6d7;     /* light grey-ish on dark bg */
  --body-dark: #666666;
  --white: #ffffff;
  --green: #1f8a5a;
  --green-hover: #18724a;
  --maxw: 1200px;
  --radius: 6px;
  --shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* ---- Utilities ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: var(--teal); }
.section-darker { background: var(--teal-dark); }
.text-center { text-align: center; }
.yellow { color: var(--yellow); }

h1, h2, h3, h4 { font-family: 'Fraunces', 'Raleway', serif; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-weight: 500; font-variation-settings: 'SOFT' 50, 'WONK' 1; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--yellow); font-weight: 500; text-align: center; margin-bottom: 12px; font-variation-settings: 'SOFT' 50, 'WONK' 1; }
h3 { font-size: 1.5rem; color: var(--yellow); font-weight: 500; }
p { margin-bottom: 1em; color: var(--body); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-outline-yellow {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(0,0,0,0.15);
}
.btn-outline-yellow:hover { background: var(--yellow); color: var(--teal-dark); }
.btn-yellow {
  background: var(--yellow);
  color: var(--teal-dark);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); }

/* ---- Top info bar ---- */
.topbar {
  background: var(--teal);
  color: var(--yellow);
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--yellow);
  transition: opacity 0.2s;
}
.topbar-socials a:hover { opacity: 0.75; }
.topbar-hours { text-align: center; }
.topbar-address { text-align: right; }

/* ---- Navbar (glass) ---- */
.navbar {
  background: rgba(62, 88, 89, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar { background: var(--teal); }
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(40, 57, 57, 0.78);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  border-bottom-color: rgba(242, 232, 109, 0.18);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.navbar.scrolled .logo img { height: 36px; }
.logo .logo-o {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: relative;
  margin: 0 0.02em;
  vertical-align: middle;
}
.logo .logo-o::after {
  content: '';
  position: absolute;
  inset: 22%;
  background: rgba(242, 232, 109, 0.35);
  border-radius: 50%;
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-list a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-list a:hover { color: var(--yellow); }
.nav-list a.active { color: var(--yellow); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  color: var(--yellow);
  font-size: 1.6rem;
}

/* ---- Hero (2026 split layout) ---- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 85% 30%, rgba(242, 232, 109, 0.10), transparent 60%),
    radial-gradient(50% 60% at 10% 80%, rgba(255,255,255,0.04), transparent 60%),
    var(--teal);
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(50% 50% at 50% 100%, rgba(242,232,109,0.08), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 280px);
}
.hero-text { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 6px 14px;
  background: rgba(242,232,109,0.10);
  border: 1px solid rgba(242,232,109,0.25);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(242,232,109,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(242,232,109,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(242,232,109,0); }
}
.hero h1 {
  color: var(--white);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  color: var(--yellow);
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.hero-lead {
  color: var(--body);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-meta-item { text-align: center; }
.hero-meta-item .num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--yellow);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-meta-item .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Image stage right */
.hero-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-stage .frame {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-stage .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-stage .frame:hover img { transform: scale(1.05); }
.hero-stage .frame-main {
  inset: 0;
  z-index: 2;
}
.hero-stage .frame-accent {
  width: 45%;
  aspect-ratio: 4 / 5;
  bottom: -8%;
  left: -10%;
  z-index: 3;
  border: 6px solid var(--teal);
  border-radius: 16px;
}
.hero-stage .frame-tag {
  position: absolute;
  top: -16px; right: -10px;
  z-index: 4;
  background: var(--yellow);
  color: var(--teal-dark);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.05rem;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transform: rotate(6deg);
}
.hero-stage::after {
  content: '';
  position: absolute;
  inset: -8% -8% auto auto;
  width: 50%;
  aspect-ratio: 1;
  border: 1px dashed rgba(242,232,109,0.35);
  border-radius: 50%;
  z-index: 1;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Slider compatibility: keep .hero-slides for parallax, but render as background swap on frame-main */
.hero-slides, .hero-slide { display: none; }

.hero-dots {
  position: absolute;
  bottom: 40px; left: 24px;
  display: flex; gap: 10px;
  z-index: 5;
}
.hero-dots button {
  width: 38px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  transition: background 0.4s ease, width 0.4s ease;
  padding: 0;
}
.hero-dots button:hover { background: rgba(255,255,255,0.5); }
.hero-dots button.active { background: var(--yellow); width: 64px; }

/* Marquee strip under hero */
.marquee {
  background: var(--teal-darker);
  border-top: 1px solid rgba(242,232,109,0.15);
  border-bottom: 1px solid rgba(242,232,109,0.15);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 18px;
}
.marquee-item i {
  font-size: 0.95rem;
  color: rgba(242,232,109,0.55);
  font-style: normal;
}
.marquee-sep {
  color: rgba(242,232,109,0.55);
  font-size: 1rem;
  display: inline-flex; align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-stage::after { animation: none; }
  .hero-eyebrow::before { animation: none; }
}


/* ---- Promo cards ---- */
.promo {
  background: var(--teal-dark);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242, 232, 109, 0.08), transparent 60%);
  pointer-events: none;
}
.promo-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  position: relative;
}
.promo-head h2 { margin: 14px 0 10px; }
.promo-head p { color: var(--body); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

/* When promo-card has the horizontal sub-layout (body + side), stack them vertically inside each column */
.promo-card .promo-body { width: 100%; min-width: 0; }
.promo-card .promo-body h3 { margin: 0 0 10px; }
.promo-card .promo-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 232, 109, 0.18);
}
.promo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 40px 28px 28px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(242, 232, 109, 0.10), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(242, 232, 109, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
  overflow: hidden;
}
.promo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(242, 232, 109, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 232, 109, 0.5);
  box-shadow: 0 22px 50px -25px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 232, 109, 0.15);
}
.promo-card:hover::after { opacity: 1; }

.promo-card-featured {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(242, 232, 109, 0.20), transparent 55%),
    linear-gradient(160deg, rgba(242, 232, 109, 0.06), rgba(255,255,255,0.01));
  border-color: rgba(242, 232, 109, 0.4);
}

.promo-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--yellow);
  color: var(--teal-darker);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(242, 232, 109, 0.12);
  border: 1px solid rgba(242, 232, 109, 0.3);
  color: var(--yellow);
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.promo-card:hover .promo-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(242, 232, 109, 0.22);
}

.promo-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: var(--white);
}
.promo-card .sub { color: var(--white); font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.promo-card .body { color: var(--body); margin-bottom: 10px; line-height: 1.55; }
.promo-card .promo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 8px 0 4px;
}
.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(242, 232, 109, 0.12);
  border: 1px solid rgba(242, 232, 109, 0.3);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
}

.promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 232, 109, 0.18);
}
.promo-card .price {
  color: var(--yellow);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.promo-card .price small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0.05em;
  margin-left: 2px;
}
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  transition: gap 0.3s ease, color 0.3s ease;
}
.promo-cta i { transition: transform 0.3s ease; }
.promo-card:hover .promo-cta { gap: 12px; color: var(--yellow-hover); }
.promo-card:hover .promo-cta i { transform: translateX(3px); }
.promo-cta-btn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--yellow); }
.promo-cta-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; border-radius: 4px; }

/* ---- Welkom / tekstblokken ---- */
.welkom h2 { margin-bottom: 6px; }
.welkom .subtitle {
  color: var(--white);
  text-align: center;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 40px;
}
.text-block {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ---- Gallery preview ---- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.gallery-preview a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-preview a:hover img { transform: scale(1.08); }

/* ---- Footer ---- */
.footer {
  background: var(--teal-darker);
  color: var(--body);
  padding: 60px 0 24px;
  border-top: 2px solid rgba(242, 232, 109, 0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--yellow); font-size: 1.2rem; margin-bottom: 16px; font-weight: 700; }
.footer ul li { margin-bottom: 8px; }
.footer a:hover { color: var(--yellow); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 4px 0; font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 0.9rem;
}
.footer-bottom .legal a { margin: 0 8px; }

/* ---- Menu page ---- */
.menu-intro { padding: 80px 0 40px; }
.menu-intro p { color: var(--white); }
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.menu-category {
  background: var(--teal-darker);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 232, 109, 0.15);
}
.menu-category h3 {
  border-bottom: 1px solid rgba(242, 232, 109, 0.3);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.menu-item { padding: 10px 0; border-bottom: 1px dotted rgba(255,255,255,0.08); }
.menu-item:last-child { border-bottom: none; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item-name { color: var(--white); font-weight: 600; }
.menu-item-price { color: var(--yellow); font-weight: 700; white-space: nowrap; }
.menu-item-desc { color: var(--body); font-size: 0.9rem; margin-top: 2px; }
.menu-disclaimer { text-align: center; color: var(--body); font-style: italic; font-size: 0.9rem; padding-bottom: 60px; }

/* ---- Eyebrow label (small uppercase intro above headings) ---- */
.section-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 6px 14px;
  border: 1px solid rgba(242, 232, 109, 0.45);
  border-radius: 999px;
  background: rgba(242, 232, 109, 0.06);
}

/* ---- Menu PDF download cards ---- */
.menu-downloads { padding-top: 60px; padding-bottom: 80px; }
.menu-downloads h2 { text-align: center; margin-top: 6px; }
.menu-downloads .text-block { margin: 0 auto 50px; }

.menu-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 40px;
}

.menu-pdf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 30px 30px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(242, 232, 109, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(242, 232, 109, 0.18);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  isolation: isolate;
}
.menu-pdf-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(242, 232, 109, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.menu-pdf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 232, 109, 0.55);
  box-shadow: 0 22px 50px -25px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 232, 109, 0.15);
}
.menu-pdf-card:hover::after { opacity: 1; }

.menu-pdf-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-darker);
  background: var(--yellow);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(242, 232, 109, 0.12);
  border: 1px solid rgba(242, 232, 109, 0.3);
  color: var(--yellow);
  font-size: 1.5rem;
  transition: transform 0.35s ease, background 0.35s ease;
}
.menu-pdf-card:hover .menu-pdf-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(242, 232, 109, 0.2);
}

.menu-pdf-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  margin: 4px 0 0;
  color: var(--white);
}
.menu-pdf-card p {
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.menu-pdf-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  padding: 10px 0;
  border-top: 1px solid rgba(242, 232, 109, 0.18);
  width: 100%;
  transition: gap 0.3s ease, color 0.3s ease;
}
.menu-pdf-cta i { transition: transform 0.3s ease; }
.menu-pdf-card:hover .menu-pdf-cta { gap: 14px; color: var(--yellow-hover); }
.menu-pdf-card:hover .menu-pdf-cta i { transform: translate(2px, -2px); }

/* ---- Accordion (suggesties op menu-pagina & homepage) ---- */
.suggesties-section { padding: 40px 0 100px; }
.promo-accordion { margin-top: 40px; max-width: 980px; margin-left: auto; margin-right: auto; }
.menu-suggesties { margin-top: 50px; margin-bottom: 30px; }
.accordion {
  position: relative;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(242, 232, 109, 0.10), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(242, 232, 109, 0.22);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.accordion.is-open {
  border-color: rgba(242, 232, 109, 0.4);
  box-shadow: 0 22px 50px -25px rgba(0, 0, 0, 0.55);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  text-align: left;
  color: var(--yellow);
}
.accordion-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.accordion-title i {
  font-size: 1rem;
  color: var(--yellow);
}
.accordion-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(242, 232, 109, 0.12);
  border: 1px solid rgba(242, 232, 109, 0.35);
  color: var(--yellow);
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(.4,.2,.2,1), background 0.3s ease;
}
.accordion.is-open .accordion-chevron { transform: rotate(180deg); }
.accordion-trigger:hover .accordion-chevron { background: rgba(242, 232, 109, 0.22); }
.accordion-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(242, 232, 109, 0.45);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4,.2,.2,1);
}
.accordion-inner {
  padding: 0 32px 32px;
  border-top: 1px solid rgba(242, 232, 109, 0.18);
  padding-top: 26px;
}
.suggesties-lead {
  text-align: center;
  color: var(--body);
  font-style: italic;
  margin-bottom: 28px;
}

.suggesties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.suggesties-group { min-width: 0; }
.suggesties-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(242, 232, 109, 0.25);
}
.suggesties-group-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--yellow);
  margin: 0;
}
.suggesties-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(242, 232, 109, 0.12);
  border: 1px solid rgba(242, 232, 109, 0.3);
  color: var(--yellow);
  font-size: 0.95rem;
}
.suggesties-list { display: flex; flex-direction: column; }
.suggesties-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.10);
}
.suggesties-list li:last-child { border-bottom: none; }
.suggesties-list li.s-sub {
  padding: 8px 0 8px 18px;
  font-style: italic;
}
.suggesties-list li.s-sub .s-name { color: var(--body); font-weight: 400; }
.suggesties-list .s-name { color: var(--white); font-weight: 600; }
.suggesties-list .s-name em { color: var(--body); font-style: italic; font-weight: 400; font-size: 0.9em; }
.suggesties-list .s-name sup { color: var(--yellow); font-size: 0.7em; margin-left: 2px; top: -0.4em; position: relative; }
.suggesties-list .s-price { color: var(--yellow); font-weight: 700; white-space: nowrap; font-family: 'Fraunces', serif; }
.suggesties-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--body);
  font-style: italic;
  text-align: right;
}
.suggesties-note sup { color: var(--yellow); margin-right: 2px; }

/* ---- Contact page (2026) ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  padding: 40px 0 80px;
  align-items: start;
}

/* Glass card around the form */
.contact-form {
  position: relative;
  padding: 40px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(242,232,109,0.10), transparent 55%),
    radial-gradient(120% 80% at 100% 100%, rgba(255,255,255,0.05), transparent 55%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
.contact-form::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242,232,109,0.45), rgba(242,232,109,0) 40%, rgba(242,232,109,0) 60%, rgba(242,232,109,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

/* Floating-label fields */
.contact-form .field {
  position: relative;
  margin-bottom: 18px;
}
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 22px 18px 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form .field textarea { min-height: 150px; resize: vertical; padding-top: 26px; }
.contact-form .field input:hover,
.contact-form .field textarea:hover { border-color: rgba(255,255,255,0.22); }
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 0 0 4px rgba(242,232,109,0.12);
}
.contact-form .field label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.18s ease, color 0.18s ease;
  background: transparent;
  padding: 0;
}
.contact-form .field input:focus + label,
.contact-form .field input:not(:placeholder-shown) + label,
.contact-form .field textarea:focus + label,
.contact-form .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px) scale(0.78);
  color: var(--yellow);
}

/* Honeypot (hidden from humans, visible to bots) */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* "Ik ben geen robot" check */
.robot-check {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 18px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.robot-check:hover { border-color: rgba(255,255,255,0.22); background: rgba(0,0,0,0.24); }
.robot-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.robot-box {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.robot-box i {
  color: var(--teal-dark);
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.robot-check input:checked + .robot-box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.robot-check input:checked + .robot-box i {
  opacity: 1;
  transform: scale(1);
}
.robot-check input:focus-visible + .robot-box {
  box-shadow: 0 0 0 4px rgba(242,232,109,0.18);
}
.robot-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.robot-title { color: var(--white); font-weight: 500; font-size: 0.98rem; }
.robot-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.robot-shield {
  color: rgba(242,232,109,0.5);
  font-size: 1.4rem;
}

.form-msg { min-height: 24px; margin-bottom: 12px; font-size: 0.95rem; }
.form-msg.error { color: #ff8a8a; }
.form-msg.success { color: #8aff9d; }

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -8px rgba(242,232,109,0.45);
}
.contact-form .btn:hover { box-shadow: 0 16px 36px -8px rgba(242,232,109,0.6); }

.form-note {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  color: var(--body);
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(242,232,109,0.06);
  border-left: 2px solid var(--yellow);
  border-radius: 10px;
  font-style: normal;
}
.form-note::before {
  content: '\f071'; /* fa-triangle-exclamation */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--yellow);
}

/* Contact info — modernized */
.contact-info {
  position: sticky;
  top: 110px;
}
.contact-info .info-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(242,232,109,0.12);
  border-radius: 999px;
}
.contact-info h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}
.contact-info .lead {
  color: var(--body);
  margin-bottom: 24px;
  max-width: 360px;
}
.info-list { display: grid; gap: 12px; margin-bottom: 28px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.info-list li:hover {
  background: rgba(242,232,109,0.06);
  border-color: rgba(242,232,109,0.25);
  transform: translateY(-2px);
}
.info-list li .icon {
  flex: 0 0 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(242,232,109,0.12);
  color: var(--yellow);
  font-size: 0.95rem;
}
.info-list li .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.info-list li a { color: var(--white); }
.info-list li a:hover { color: var(--yellow); }

.info-hours { padding: 18px 20px; background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; }
.info-hours h4 { color: var(--yellow); margin-bottom: 10px; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Raleway', sans-serif; }
.info-hours table { width: 100%; }
.info-hours table td { padding: 4px 0; color: var(--white); font-size: 0.95rem; }
.info-hours table td:last-child { text-align: right; color: var(--body); }

/* ---- Foto's page (masonry) ---- */
.fotos-grid {
  column-count: 4;
  column-gap: 14px;
  padding: 40px 0 80px;
}
.fotos-grid a {
  display: block;
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  position: relative;
}
.fotos-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}
.fotos-grid a:hover img { transform: scale(1.04); opacity: 0.9; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--yellow); color: var(--teal-dark); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
body.lock-scroll { overflow: hidden; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slides { transform: none !important; }
}

/* ---- Hero parallax ---- */
.hero-slides { will-change: transform; }

/* ---- Subtle hover lift ---- */
.btn:hover { transform: translateY(-2px); }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .promo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-card-grid { grid-template-columns: 1fr; }
  .menu-pdf-grid { grid-template-columns: 1fr; gap: 20px; }
  .suggesties-grid { grid-template-columns: 1fr; gap: 28px; }
  .fotos-grid { column-count: 3; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; min-height: 0; }
  .hero-stage { max-width: 420px; margin: 0 auto; }
  .hero-lead { max-width: none; }
}
@media (max-width: 768px) {
  .topbar .container { grid-template-columns: 1fr; text-align: center; gap: 6px; }
  .topbar-socials { justify-content: center; }
  .topbar-address { text-align: center; }

  .hamburger { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--teal-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-list.open { max-height: 400px; }
  .nav-list li { width: 100%; text-align: center; }
  .nav-list a { display: block; padding: 14px 24px; }

  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .fotos-grid { column-count: 2; }
  .menu-pdf-card { padding: 28px 24px 24px; }
  .menu-pdf-card h3 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  .hero-stage { max-width: 340px; }
  .hero-stage .frame-accent { width: 40%; left: -6%; }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    flex-wrap: nowrap;
  }
  .hero-meta-item .num { font-size: 1.5rem; }
  .hero-meta-item .lbl { font-size: 0.65rem; letter-spacing: 0.1em; }
  .hero-dots { position: static; margin-top: 24px; justify-content: center; }

  .accordion-trigger { padding: 22px 22px; }
  .accordion-title { font-size: 1rem; letter-spacing: 0.18em; }
  .accordion-inner { padding: 22px 22px 26px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .promo-card h3 { font-size: 1.5rem; }
  .fotos-grid { column-count: 1; }
  .hero-stage { max-width: 280px; }
  .hero-stage .frame-tag { font-size: 0.9rem; padding: 8px 14px; top: -12px; right: -4px; }
  .hero-meta { gap: 8px; }
  .hero-meta-item .num { font-size: 1.25rem; }
  .hero-meta-item .lbl { font-size: 0.55rem; letter-spacing: 0.08em; }
}
