/* =========================================================================
   GUTH KIRCHBERG — Design System & Global Styles
   Fine dining · Cozy · Elegant · Modern · Vibrant
   Brand: Brushed gold on warm charcoal
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS variables)
   Edit these to re-theme the entire site.
   ------------------------------------------------------------------------- */
:root {
  /* --- Brand colours: brushed gold --- */
  --gold:            #C9A24B;   /* primary brushed gold */
  --gold-light:      #E5C97B;   /* highlight / hover */
  --gold-dark:       #9C7A2E;   /* shadow side of gold */
  --gold-gradient:   linear-gradient(135deg, #E5C97B 0%, #C9A24B 45%, #9C7A2E 100%);

  /* --- Neutrals (warm) --- */
  --charcoal:        #161412;   /* main dark background */
  --charcoal-soft:   #211E1A;   /* raised dark surface */
  --charcoal-line:   #322D26;   /* hairline borders on dark */
  --cream:           #F7F3EC;   /* light background */
  --cream-soft:      #EFE8DB;   /* raised light surface */
  --ink:             #1B1814;   /* body text on light */
  --ink-soft:        #5A524733; /* subtle dividers on light (alpha) */

  /* --- Text --- */
  --text-on-dark:        #F4EFE6;
  --text-on-dark-muted:  #C3BAA9;
  --text-on-light:       #2A2520;
  --text-on-light-muted: #6E6457;

  /* --- Feedback --- */
  --vegan:       #6FA86A;
  --gluten-free: #C98A3B;
  --vegetarian:  #88A86F;
  --spicy:       #C25A48;
  --error:       #C2483F;
  --success:     #5C8A52;

  /* --- Typography --- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --fs-hero:   clamp(2.75rem, 7vw, 5.5rem);
  --fs-h1:     clamp(2.25rem, 5vw, 3.75rem);
  --fs-h2:     clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h3:     clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-body:   clamp(1rem, 1.1vw, 1.125rem);
  --fs-small:  0.875rem;
  --fs-eyebrow:0.78rem;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-body:   1.7;

  /* --- Spacing scale (8pt-ish) --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 820px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* --- Effects --- */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.10);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.18);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.28);
  --ring: 0 0 0 3px rgba(201,162,75,0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-on-light);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: 0.005em;
}

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

/* -------------------------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }

.section--dark {
  background: var(--charcoal);
  color: var(--text-on-dark);
}
.section--soft { background: var(--cream-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.section--dark .eyebrow { color: var(--gold-light); }

.section-head { max-width: 640px; margin-bottom: var(--space-7); }
.section-head--center { margin-inline: auto; text-align: center; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-on-light-muted);
}
.section--dark .lead { color: var(--text-on-dark-muted); }

/* Decorative gold rule */
.rule {
  width: 64px;
  height: 2px;
  background: var(--gold-gradient);
  border: 0;
  margin: var(--space-4) 0;
}
.section-head--center .rule { margin-inline: auto; }

/* -------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold-gradient);
  color: #2A2008;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { box-shadow: 0 12px 28px rgba(201,162,75,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #2A2008; }

.section--dark .btn--ghost { color: var(--gold-light); border-color: var(--gold-light); }
.section--dark .btn--ghost:hover { background: var(--gold-light); color: #2A2008; }

.btn--lg { font-size: 1.05rem; padding: 1.1em 2.4em; }

/* -------------------------------------------------------------------------
   5. HEADER / NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-5);
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
/* Transparent over hero, solid after scroll */
.site-header.is-scrolled {
  background: rgba(22,20,18,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--text-on-dark);
}
/* Image logo variant (real Guth im Alps mark) */
.brand--logo { flex-direction: row; align-items: center; }
.brand--logo img {
  height: 168px;
  width: auto;
  transition: height var(--dur) var(--ease);
}
.site-header.is-scrolled .brand--logo img { height: 128px; }
.footer__brand .brand--logo img { height: 240px; }
@media (max-width: 900px) {
  .brand--logo img { height: 120px; }
  .site-header.is-scrolled .brand--logo img { height: 108px; }
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav__list { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  position: relative;
  color: var(--text-on-dark);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-block: var(--space-1);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-light); }

.nav__actions { display: flex; align-items: center; gap: var(--space-4); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.lang-toggle button,
.lang-toggle a {
  background: transparent;
  border: 0;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4em 0.85em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang-toggle button[aria-pressed="true"],
.lang-toggle a[aria-pressed="true"] {
  background: var(--gold-gradient);
  color: #2A2008;
}
.lang-toggle a:hover { color: var(--text-on-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-on-dark);
  margin-inline: auto;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-7);
    background: var(--charcoal);
    padding: var(--space-8) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: var(--space-5); font-size: 1.25rem; }
  .nav__link { font-size: 1.25rem; }
}

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,20,18,0.55) 0%, rgba(22,20,18,0.35) 40%, rgba(22,20,18,0.85) 100%);
}
.hero__inner { max-width: 760px; padding-block: var(--space-10) var(--space-9); }
.hero__title { font-size: var(--fs-hero); font-weight: 600; }
.hero__title .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-on-dark-muted);
  margin-top: var(--space-5);
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-7);
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: var(--space-5);
  transform: translateX(-50%);
  color: var(--text-on-dark-muted);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.hero__scroll span { width: 1px; height: 38px; background: var(--gold-light); animation: scrollPulse 2.2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* -------------------------------------------------------------------------
   7. REVEAL ANIMATIONS (progressive enhancement)
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   8. INTRO / SPLIT SECTIONS
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-6), 6vw, var(--space-9));
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media .badge {
  position: absolute;
  bottom: calc(-1 * var(--space-5));
  right: calc(-1 * var(--space-4));
  background: var(--gold-gradient);
  color: #2A2008;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}
.split__media .badge strong { font-family: var(--font-display); font-size: 1.8rem; display: block; }
.split__media .badge span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .badge { right: var(--space-4); }
}

/* -------------------------------------------------------------------------
   9. FEATURE / VALUE CARDS
   ------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(201,162,75,0.12);
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}
.card h3 { color: var(--text-on-dark); margin-bottom: var(--space-2); }
.card p { color: var(--text-on-dark-muted); font-size: 0.98rem; }

/* -------------------------------------------------------------------------
   10. CTA BANNER
   ------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  text-align: center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,0.18), transparent 60%), var(--charcoal);
}
.cta-banner h2 { font-size: var(--fs-h1); margin-bottom: var(--space-4); }
.cta-banner p { color: var(--text-on-dark-muted); max-width: 52ch; margin: 0 auto var(--space-6); }

/* -------------------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: #100E0C;
  color: var(--text-on-dark-muted);
  padding-block: var(--space-8) var(--space-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
.footer__brand .brand__name { color: var(--text-on-dark); }
.footer__brand p { margin-top: var(--space-4); max-width: 34ch; font-size: 0.95rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}
.footer a { transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--gold-light); }
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__bottom {
  border-top: 1px solid var(--charcoal-line);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--fs-small);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* -------------------------------------------------------------------------
   12. BILINGUAL VISIBILITY
   Elements carry data-lang; JS sets <html lang>. CSS shows the active one.
   ------------------------------------------------------------------------- */
[data-lang] { display: none; }
html[lang="de"] [data-lang="de"],
html[lang="en"] [data-lang="en"] { display: revert; }
/* Inline variants keep flow */
[data-lang].is-inline { display: none; }
html[lang="de"] [data-lang="de"].is-inline,
html[lang="en"] [data-lang="en"].is-inline { display: inline; }

/* -------------------------------------------------------------------------
   13. PAGE HERO (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: calc(var(--space-10) + var(--space-6)) var(--space-8);
  color: var(--text-on-dark);
  text-align: center;
  overflow: hidden;
  /* Fallback dark background for pages without .page-hero__media (404, generic Pages) */
  background: var(--charcoal);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,0.7), rgba(22,20,18,0.9));
}
.page-hero h1 { font-size: var(--fs-h1); }
.page-hero p { color: var(--text-on-dark-muted); max-width: 56ch; margin: var(--space-4) auto 0; }

/* -------------------------------------------------------------------------
   14. MENU PAGE
   ------------------------------------------------------------------------- */
.menu-nav {
  position: sticky;
  top: 64px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  padding: var(--space-3);
  background: rgba(247,243,236,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-soft);
}
.menu-nav a {
  padding: 0.45em 1.1em;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.menu-nav a:hover, .menu-nav a.is-active { background: var(--gold); color: #2A2008; }

.menu-group { padding-block: var(--space-8); }
.menu-group + .menu-group { border-top: 1px solid var(--ink-soft); }
.menu-group__head { text-align: center; margin-bottom: var(--space-7); }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-8); }
@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }

.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-4);
  align-items: baseline;
  padding-bottom: var(--space-4);
  border-bottom: 1px dashed var(--ink-soft);
}
.dish__name { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; }
.dish__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-dark); white-space: nowrap; }
.dish__desc { grid-column: 1 / -1; color: var(--text-on-light-muted); font-size: 0.98rem; }
.dish__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-1); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25em 0.7em;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
}
.tag--vegan { color: var(--vegan); }
.tag--vegetarian { color: var(--vegetarian); }
.tag--gf { color: var(--gluten-free); }
.tag--spicy { color: var(--spicy); }

.menu-legend {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center;
  padding: var(--space-5);
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-7);
  font-size: var(--fs-small);
}
.menu-legend .tag { cursor: default; }

/* -------------------------------------------------------------------------
   15. FORMS (Reservations / Contact)
   ------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text-on-light); }
.field .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #D8CFC0;
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: var(--fs-small); color: var(--text-on-light-muted); }
.field.has-error input, .field.has-error select { border-color: var(--error); }
.field .error-msg { font-size: var(--fs-small); color: var(--error); display: none; }
.field.has-error .error-msg { display: block; }

.form-note { font-size: var(--fs-small); color: var(--text-on-light-muted); }

.form-status {
  display: none;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-top: var(--space-5);
  background: rgba(92,138,82,0.12);
  border: 1px solid var(--success);
  color: #2f5a28;
}
.form-status.is-visible { display: flex; }
.form-status.is-error {
  background: rgba(194,72,63,0.10);
  border-color: var(--error);
  color: #7a2b24;
}
.form-status.is-error svg { color: var(--error); }

@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   16. CONTACT / INFO BLOCKS
   ------------------------------------------------------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: var(--space-5); }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: var(--space-4); }
.info-item .info-ico {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(201,162,75,0.14);
  color: var(--gold-dark);
}
.info-item h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-light-muted); margin-bottom: 2px; }
.info-item p { color: var(--text-on-light); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: var(--space-2) 0; border-bottom: 1px solid var(--ink-soft); }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; color: var(--text-on-light-muted); }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  filter: grayscale(0.2) contrast(1.05);
}

/* -------------------------------------------------------------------------
   17. UTILITIES
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* =========================================================================
   REVIEWS — sterren, kaarten, summary, submit-form
   ========================================================================= */

/* --- Sterren ---------------------------------------------------------- */
.stars {
  display: inline-flex;
  gap: 0.15em;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.stars .star { color: rgba(0,0,0,0.18); }
.stars .star--on { color: var(--gold); }
.section--dark .stars .star { color: rgba(255,255,255,0.22); }
.section--dark .stars .star--on { color: var(--gold-light); }

/* --- Reviews summary (page-hero / homepage) --------------------------- */
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.reviews-summary .stars { font-size: 1.6rem; }
.reviews-summary__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-on-light);
}
.reviews-summary__text strong { color: var(--gold-dark); }

/* --- Review card ------------------------------------------------------ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.review-card {
  background: #fff;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.review-card .stars { font-size: 1.05rem; }
.review-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: var(--lh-snug);
  color: var(--text-on-light);
  margin: 0;
}
.review-card__text {
  margin: 0;
  color: var(--text-on-light);
  font-size: 0.98rem;
  line-height: var(--lh-body);
}
.review-card__meta {
  margin-top: auto;
  font-size: var(--fs-small);
  color: var(--text-on-light-muted);
  letter-spacing: 0.04em;
}

/* Dark variant (homepage section) */
.section--dark .review-card {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-line);
  color: var(--text-on-dark);
  box-shadow: none;
}
.section--dark .review-card__title,
.section--dark .review-card__text { color: var(--text-on-dark); }
.section--dark .review-card__meta { color: var(--text-on-dark-muted); }

/* --- Star input (submit form) ----------------------------------------- */
.star-input {
  display: inline-flex;
  gap: 0.2em;
  margin-top: var(--space-2);
}
.star-input__btn {
  background: none;
  border: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(0,0,0,0.18);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.star-input__btn:hover,
.star-input__btn:focus-visible {
  transform: scale(1.1);
  outline: none;
}
.star-input__btn.is-active { color: var(--gold); }

/* --- Homepage reviews section ----------------------------------------- */
.home-reviews__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.home-reviews__head h2 { margin: 0; }

/* --- Reviews hero stats (prominente score op /bewertungen/) ----------- */
.reviews-hero-stats {
  padding-top: var(--space-8);
  padding-bottom: var(--space-7);
}
.reviews-hero-stats__score {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.reviews-hero-stats__max {
  font-size: 0.4em;
  color: var(--text-on-light-muted);
  font-weight: 500;
  margin-left: 0.15em;
}
.reviews-hero-stats__stars {
  margin: var(--space-3) 0 var(--space-4);
}
.reviews-hero-stats__stars .stars {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  gap: 0.2em;
}
.reviews-hero-stats__count {
  font-size: 1.05rem;
  color: var(--text-on-light-muted);
  margin: 0;
  letter-spacing: 0.04em;
}
.reviews-hero-stats__count strong {
  color: var(--text-on-light);
  font-weight: 600;
}

/* =========================================================================
   COOKIEYES — brand overrides (free tier blokkeert color picker)
   ========================================================================= */
.cky-consent-container,
.cky-consent-bar,
.cky-modal,
.cky-preference-center {
  background: var(--charcoal) !important;
  color: var(--text-on-dark) !important;
  border-color: var(--charcoal-line) !important;
  font-family: var(--font-body) !important;
}

.cky-title,
.cky-preference-title,
.cky-notice-des h2 {
  font-family: var(--font-display) !important;
  color: var(--text-on-dark) !important;
}

.cky-notice-des,
.cky-notice-des p,
.cky-preference-body-wrapper,
.cky-accordion-wrapper p {
  color: var(--text-on-dark-muted) !important;
}

.cky-notice-des a,
.cky-preference-body-wrapper a {
  color: var(--gold-light) !important;
  text-decoration: underline;
}

/* Buttons */
.cky-btn,
.cky-btn-accept,
.cky-btn-reject,
.cky-btn-customize,
.cky-btn-preferences,
.cky-btn-revisit-wrapper {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.7em 1.4em !important;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease) !important;
}

.cky-btn-accept {
  background: var(--gold-gradient) !important;
  color: var(--charcoal) !important;
  border: 0 !important;
}
.cky-btn-accept:hover { filter: brightness(1.08); }

.cky-btn-reject,
.cky-btn-customize {
  background: transparent !important;
  color: var(--text-on-dark) !important;
  border: 1px solid var(--gold) !important;
}
.cky-btn-reject:hover,
.cky-btn-customize:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

/* Revisit floating button */
.cky-revisit-bottom-left,
.cky-revisit-bottom-right {
  background: var(--charcoal) !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}

/* Accordion / toggles */
.cky-switch input:checked + .cky-slider {
  background: var(--gold) !important;
}
.cky-accordion-header { border-color: var(--charcoal-line) !important; }

/* =========================================================================
   MENU PAGES — PDF-style refinement
   Handgeschreven goud-titels, gespatieerde caps gerecht-namen, italic beschrijvingen,
   minimale layout. Past Speisen / Getränke / Weine pagina's aan.
   ========================================================================= */

/* --- Section title in handwritten script ---------------------------- */
.menu-group__head {
  text-align: left;
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  position: relative;
  padding-right: 7rem;          /* room for decorative icon top-right */
}
.menu-group:first-of-type .menu-group__head { margin-top: var(--space-4); }
.menu-group__head .eyebrow { display: none; }   /* PDF heeft geen eyebrow */
.menu-group__head h2 {
  font-family: "Allura", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  color: var(--gold-dark);
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0;
}
.section--dark .menu-group__head h2 { color: var(--gold-light); }

/* Decorative SVG icon top-right of section heading */
.menu-group__icon {
  position: absolute;
  right: 0;
  top: 0.6em;
  width: 4.5rem;
  height: 3.5rem;
  color: var(--charcoal);
  opacity: 0.85;
}
.section--dark .menu-group__icon { color: var(--text-on-dark); }

/* PNG-icon variant (extracted from PDF): keep aspect ratio, give a bit more breathing room */
.menu-group__icon--png {
  width: auto;
  height: 5rem;
  max-width: 8rem;
  object-fit: contain;
  object-position: right center;
  opacity: 0.92;
}
.section--dark .menu-group__icon--png { filter: invert(1) brightness(1.05); opacity: 0.85; }

@media (max-width: 540px) {
  .menu-group__icon--png { height: 3rem; max-width: 5rem; }
}

/* --- Dish list: minimal vertical rhythm, no cards -------------------- */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-5);
}
.menu-list .dish {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: var(--space-5);
  row-gap: 0.3em;
  align-items: baseline;
  padding: var(--space-4) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.menu-list .dish + .dish { border-top: 1px dashed rgba(0,0,0,0.06); }
.section--dark .menu-list .dish + .dish { border-top-color: rgba(255,255,255,0.08); }

/* Name: tracked, regular weight, modest size */
.dish__name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-light);
  margin: 0;
  line-height: 1.25;
}
.section--dark .dish__name { color: var(--text-on-dark); }

/* Price: italic numerals, right aligned, same row as name */
.dish__price {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text-on-light);
  white-space: nowrap;
}
.section--dark .dish__price { color: var(--gold-light); }

/* Description: italic Cormorant, muted, below name */
.dish__desc {
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-on-light-muted);
  margin: 0;
  max-width: 36rem;
}
.section--dark .dish__desc { color: var(--text-on-dark-muted); }

/* Tags row tucked under description */
.menu-list .dish__tags {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.6em;
  margin-top: 0.5em;
}
.menu-list .dish__tags:empty { display: none; }

/* Tag chip: gekleurde mini-letter naast leesbare naam */
.menu-list .dish__tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  cursor: default;
}
.section--dark .menu-list .dish__tags .tag { color: var(--text-on-dark-muted); }

.menu-list .dish__tags .tag__short {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3em;
  height: 1.3em;
  padding: 0 0.35em;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}
.menu-list .dish__tags .tag__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Behoud tag-kleuren per type (border + letter erven van .tag--X color) */
.menu-list .dish__tags .tag--vegan      { color: var(--vegan); }
.menu-list .dish__tags .tag--vegetarian { color: var(--vegetarian); }
.menu-list .dish__tags .tag--gf         { color: var(--gluten-free); }
.menu-list .dish__tags .tag--spicy      { color: var(--spicy); }

.menu-list .dish__tags .tag .tag__name {
  color: var(--text-on-light);
}
.section--dark .menu-list .dish__tags .tag .tag__name {
  color: var(--text-on-dark);
}

/* --- Luxurious category nav --------------------------------------------
   Sticky onder header, transparant op cream-soft, goud-accent hover,
   filigrane dots-divider tussen items.
   ----------------------------------------------------------------------- */
.menu-nav {
  position: sticky;
  top: var(--header-h, 96px);
  z-index: 50;
  background: var(--cream);
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.menu-nav a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  padding: 0.4em 1.4em;
  transition: color var(--dur) var(--ease);
}
.menu-nav a + a::before {
  content: "·";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}
.menu-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1em;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  transition: width var(--dur) var(--ease);
}
.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--gold-dark);
  outline: none;
}
.menu-nav a:hover::after,
.menu-nav a:focus-visible::after {
  width: 60%;
}

/* --- Menu legend — stacked badge + name onderaan -----------------------*/
.menu-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-5) var(--space-6);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-7);
  border-top: 1px solid var(--ink-soft);
}
.menu-legend__label {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-3);
}
.menu-legend__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55em;
  min-width: 5rem;
}
.menu-legend__item .tag {
  background: transparent;
  border: 1px solid currentColor;
  padding: 0.45em 0.85em;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  line-height: 1;
  border-radius: var(--radius-pill);
}
.menu-legend__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-on-light);
  letter-spacing: 0.02em;
}
.section--dark .menu-legend__name { color: var(--text-on-dark); }
.section--dark .menu-legend__label { color: var(--text-on-dark-muted); }

/* Section head full-page (Speisen / Getränke / Weinkarte hero text) */
.page-hero h1 {
  font-family: "Allura", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.9;
  color: var(--gold-light);
  letter-spacing: 0;
}

/* Responsive — keep icons + grids sane on mobile */
@media (max-width: 540px) {
  .menu-group__head { padding-right: 3.5rem; }
  .menu-group__icon { width: 2.5rem; height: 2rem; }
  .menu-list .dish { column-gap: var(--space-3); }
  .dish__price { font-size: 0.95rem; }
}

/* =========================================================================
   GLOBAL THEME — Allura script titles across entire site
   Matches menu-pages style: handgeschreven goud kop, minder zwaar Cormorant
   ========================================================================= */

/* Major page titles: homepage hero, page heroes, section heads */
.hero__title,
.page-hero h1,
.cta-banner h2,
.section h2,
.section-head h2 {
  font-family: "Allura", "Cormorant Garamond", cursive;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.18; /* iets ruimer dan 1.05: voorkomt overlap bij wrap naar 2+ regels */
}

/* Tune sizes per context */
.hero__title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); color: var(--gold-light); max-width: 15ch; }
.page-hero h1 { font-size: clamp(4rem, 10vw, 7.5rem); color: var(--gold-light); line-height: 0.95; }
.cta-banner h2 { font-size: clamp(3rem, 7vw, 5.5rem); color: var(--gold-light); }
.section h2 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--gold-dark); }
.section--dark h2 { color: var(--gold-light); }
.section--soft h2 { color: var(--gold-dark); }

/* Lange, meerdelige zinnen (met punten/komma's als losse zin) blijven leesbaar
   in Cormorant italic i.p.v. script-lettertype — voorkomt wrap-overlap bij 60+ tekens. */
.section h2.h2--sentence,
.section-head h2.h2--sentence {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: var(--lh-snug);
  letter-spacing: 0.005em;
}

/* Hero accent word handled separately (still works with Allura) */
.hero__title .accent {
  color: var(--gold-light);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  font-style: italic;
}

/* Smooth rendering for script font */
.hero__title,
.page-hero h1,
.cta-banner h2,
.section h2,
.section-head h2,
.menu-group__head h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* h3 + h4 keep Cormorant for readability — only major titles change */

/* =========================================================================
   FOOTER — Opening hours column (4e kolom, mooier en duidelijker)
   ========================================================================= */
.footer__hours { min-width: 0; }
.footer__hours ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--charcoal-line);
}
.footer__hours li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-3);
  padding: 0.6em 0;
  border-bottom: 1px solid var(--charcoal-line);
  font-size: 0.92rem;
}
.footer__hours li > span:first-child {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.footer__hours li > span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
/* Status text under hours (geen bolletje, gewoon strak) */
.footer__hours__status {
  margin-top: var(--space-4);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* Footer grid responsive — 4 cols → 2 cols → 1 col */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   RESOS BOOKING WIDGET — knop hergebruikt .btn/.btn--primary/.btn--lg,
   widget.js voegt evt. eigen inline styles toe aan de popup zelf (niet aan
   deze trigger-knop), dus onze .btn-styling blijft leidend voor de knop.
   ========================================================================= */
.resos-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}
.resos-cta__powered {
  font-size: 0.7rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
}
.resos-cta__powered a { text-decoration: underline; }
.resos-cta__powered a:hover { color: var(--gold-dark); }

/* =========================================================================
   RESOS BOOKING MODAL — overlay met iframe. Full-screen op mobiel,
   gecentreerde kaart op desktop. Iframe laadt pas bij eerste klik.
   ========================================================================= */
.resos-modal[hidden] { display: none; }
.resos-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.resos-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22,20,18,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.resos-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  height: 85vh;
  max-height: 780px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: resosIn 0.35s var(--ease);
}
@keyframes resosIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.resos-modal__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--charcoal);
  color: var(--text-on-dark);
}
.resos-modal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}
.resos-modal__close {
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-on-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.resos-modal__close:hover,
.resos-modal__close:focus-visible {
  background: var(--gold);
  color: var(--charcoal);
  outline: none;
}
.resos-modal__body {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}
.resos-modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}
.resos-modal__iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

/* Mobiel: full-screen, geen randen */
@media (max-width: 600px) {
  .resos-modal { padding: 0; }
  .resos-modal__dialog {
    max-width: none;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
}

/* Reduced motion: geen slide-in */
@media (prefers-reduced-motion: reduce) {
  .resos-modal__dialog { animation: none; }
}

/* =========================================================================
   GRAND OPENING COUNTDOWN — homepage (overgenomen van coming-soon pagina)
   ========================================================================= */
.opening-cd__date {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
}
.countdown {
  display: flex;
  gap: clamp(var(--space-2), 2vw, var(--space-5));
  justify-content: center;
  flex-wrap: wrap;
}
.countdown__item {
  min-width: clamp(66px, 15vw, 108px);
  padding: var(--space-4) var(--space-3);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-on-dark);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.opening-cd__msg {
  display: none; /* JS toont dit zodra de teller op 0 staat */
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: var(--gold-light);
  margin-top: var(--space-2);
}
@media (max-width: 440px) {
  .countdown { gap: var(--space-2); }
  .countdown__item { min-width: 0; flex: 1; padding: var(--space-3) var(--space-2); }
  .countdown__label { font-size: 0.6rem; letter-spacing: 0.1em; }
}

/* =========================================================================
   HEADER — menu exact gecentreerd op desktop (≥901px, boven mobiel-breekpunt).
   Grid met drie kolommen: links (logo) en rechts (acties) even breed (1fr),
   midden (menu) natuurlijke breedte → menu staat altijd dead-center,
   ongeacht de breedte van logo of knoppen. Werkt op elke schermbreedte ≥901px.
   .nav = display:contents zodat lijst + acties directe grid-items worden.
   ========================================================================= */
@media (min-width: 901px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-5);
  }
  .nav { display: contents; }
  .site-header > .brand { grid-column: 1; justify-self: start; }
  .site-header .nav__list {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }
  .site-header .nav__actions {
    grid-column: 3;
    justify-self: end;
  }
}

/* =========================================================================
   INFO MODAL — mededeling (reserveringen tijdelijk offline).
   Zelfde overlay-stijl als de Resos-modal, maar met een tekstboodschap.
   ========================================================================= */
.info-modal[hidden] { display: none; }
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22,20,18,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.info-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8) var(--space-6) var(--space-6);
  text-align: center;
  animation: resosIn 0.35s var(--ease);
}
.info-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-on-light-muted);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.info-modal__close:hover,
.info-modal__close:focus-visible {
  background: var(--gold); color: var(--charcoal); outline: none;
}
.info-modal__icon {
  color: var(--gold-dark);
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.info-modal__title {
  font-family: "Allura", "Cormorant Garamond", cursive;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1.05;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}
.info-modal__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: var(--lh-snug);
  color: var(--text-on-light);
  margin-bottom: var(--space-5);
}
.info-modal__ok { min-width: 9rem; }

@media (prefers-reduced-motion: reduce) {
  .info-modal__dialog { animation: none; }
}
