:root {
  --brand: #cdad72;
  --text:  #1b1b1b;
  --bg:    #f3f0e9;
  --r:     4px;

  --body-font:        'Asap', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --heading-font:     'Asap Condensed', 'Roboto Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', system-ui, sans-serif;
  --heading-weight:   900;
  --heading-tracking: 0.03em;
  --heading-case:     normal;

  --section-py:       64px;
  --section-py-mobile: 42px;
  --hero-py:          96px;
  --btn-radius:       4px;
  --border:           rgba(0,0,0,0.08);
  --footer-fg:        rgba(0,0,0,0.6);

  --h1-size: 44px;
  --h2-size: 30px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}
/* Background pattern: a fixed tiled layer under the content, so its
   opacity is independent of the page colour beneath it. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  background-image: url("/assets/1196b10e88547388.png");
  background-repeat: repeat;
  background-position: top center;
  
  opacity: 1;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.site-nav {
  --nav-fg: var(--text);
  position: sticky; top: 0; z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo { display: block; max-height: 44px; max-width: 180px; width: auto; object-fit: contain; }
.nav-brand {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  font-size: 18px;
  color: var(--nav-fg);
}
.nav-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.nav-links { display: flex; gap: 22px; align-items: center; }
/* Venue dropdown, built on the details element so it works without
   JavaScript and on touch; the menu is absolutely positioned so opening
   it does not shove the rest of the nav sideways. */
.nav-drop { position: relative; }
.nav-drop > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-caret { font-size: .7em; opacity: .7; }
.nav-drop[open] .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  min-width: 220px;
  max-height: 70vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: var(--radius, 10px);
  background: var(--bg, #fff);
  box-shadow: 0 10px 30px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.08);
}
.nav-drop-link { padding: 8px 10px; border-radius: 6px; text-decoration: none; color: inherit; white-space: nowrap; }
.nav-drop-link:hover, .nav-drop-link.active { background: rgba(0,0,0,.06); }
.nav-link {
  color: var(--nav-fg); font-size: 14px; font-weight: 500; opacity: 0.78;
  text-transform: var(--heading-case);
  letter-spacing: var(--heading-tracking);
}
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--brand); text-decoration: none; }

/* Right-hand call-to-action buttons. They sit outside the menu on
   purpose: when the links are behind a hamburger these stay on the bar,
   which is the point of putting Reserveer / Bestel there at all. */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  display: inline-block;
  padding: 9px 16px;
  border-radius: var(--btn-radius);
  background: var(--brand); color: #ffffff;
  font-size: 14px; font-weight: 600;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.08); text-decoration: none; }
.nav-cta.ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--nav-fg);
  box-shadow: inset 0 0 0 1px currentColor;
}

/* Overlay bar — transparent, laid over a full-screen hero. Fixed rather
   than sticky so the hero starts at the very top of the viewport; the
   gradient keeps light text readable over a bright photo. */
.site-nav.nav-overlay {
  --nav-fg: #ffffff;
  position: fixed; top: 0; left: 0; right: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0));
  border-bottom-color: transparent;
  transition: background 180ms ease, border-color 180ms ease;
}
/* Past the hero the same bar has to go solid or the light text lands on
   a light section. The class is toggled by a four-line inline script. */
html.nav-scrolled .site-nav.nav-overlay {
  --nav-fg: var(--text);
  background: var(--bg);
  border-bottom-color: var(--border);
}

/* Hamburger + side drawer. Built on details/summary so a published page
   opens its own menu without shipping any JavaScript. */
/* The burger and the brand have to clear the open panel, which is a
   descendant of the burger's own details element — so they are lifted
   individually rather than as a group, or the panel rides up with them
   and paints over both, leaving no visible way to close the drawer. */
.nav-drawer .nav-brand { position: relative; z-index: 41; }
.nav-menu > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  color: var(--nav-fg);
  position: relative; z-index: 41;
}
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-burger-bars { position: relative; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.nav-burger-bars::before, .nav-burger-bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 140ms ease, top 140ms ease; }
.nav-burger-bars::before { top: -6px; }
.nav-burger-bars::after  { top: 6px; }
/* Once the panel is open it is sitting UNDER the top-left of the bar —
   so the burger (now an X) and the brand beside it have to take the
   panel's dark-on-light colours or they vanish into it. */
.nav-menu[open] > summary { color: var(--text); }
.nav-menu[open] ~ .nav-brand { color: var(--text); }
.nav-menu[open] .nav-burger-bars { background: transparent; }
.nav-menu[open] .nav-burger-bars::before { top: 0; transform: rotate(45deg); }
.nav-menu[open] .nav-burger-bars::after  { top: 0; transform: rotate(-45deg); }
.nav-menu-panel {
  --nav-fg: var(--text);
  position: fixed; top: 0; bottom: 0; left: 0;
  width: min(340px, 86vw);
  z-index: 40; overflow: auto;
  padding: 84px 28px 28px;
  background: var(--bg); color: var(--text);
  /* The huge spread doubles as the backdrop dimmer — no extra element,
     and no click-outside handler to write. */
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.42), 0 18px 50px rgba(0,0,0,0.3);
}
.nav-menu-links { display: flex; flex-direction: column; gap: 2px; align-items: stretch; }
.nav-menu-links .nav-link { font-size: 20px; padding: 10px 0; opacity: 1; }
.nav-menu-links .nav-drop { width: 100%; }
.nav-menu-links .nav-drop-menu { position: static; box-shadow: none; padding: 2px 0 8px 14px; min-width: 0; max-height: none; background: none; }
.nav-menu-links .nav-drop-link { padding: 7px 0; font-size: 16px; }

.nav-languages { font-size: 13px; flex-shrink: 0; color: var(--nav-fg); }
.nav-languages > summary, .nav-languages .nav-drop-link { display: flex; align-items: center; gap: 8px; }
.nav-languages svg { flex-shrink: 0; }
.nav-languages .nav-drop-menu { left: auto; right: 0; min-width: 160px; color: var(--text); }
.nav-languages a[aria-current="true"] { font-weight: 700; text-decoration: underline; }
.site-skip-link { position: absolute; left: 12px; top: -100px; z-index: 100; padding: 12px; background: var(--bg); color: var(--text); }
.site-skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible, select:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
@media (max-width: 700px) { .nav-inner { flex-wrap: wrap; gap: 12px; } }
main { display: block; }
.block { padding: var(--section-py) 24px; }
.block-inner { max-width: 1100px; margin: 0 auto; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  font-size: 13px;
  color: var(--footer-fg);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-links a { color: var(--footer-fg); margin: 0 4px; }

button, .btn-primary {
  display: inline-block;
  background: var(--brand); color: #ffffff;
  border: 0; border-radius: var(--btn-radius);
  padding: 12px 22px;
  font: inherit;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  cursor: pointer;
  text-decoration: none;
}
button:hover, .btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.14); color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
  border-radius: var(--btn-radius);
  padding: 12px 22px;
  font-family: var(--body-font); font-weight: 600; font-size: 15px;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); text-decoration: none; }

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
}
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: 20px; font-weight: calc(var(--heading-weight) - 100); }
p  { margin: 0 0 12px; }

@media (max-width: 640px) {
  .nav-inner { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-actions { gap: 6px; }
  .nav-cta { padding: 8px 12px; font-size: 13px; }
  /* On a phone the nav wraps, and an absolutely-positioned menu would
     hang off the screen — let it push the page instead. */
  .nav-drop:not(.nav-languages) > .nav-drop-menu { position: static; box-shadow: none; padding: 4px 0 4px 12px; min-width: 0; }
  .block { padding: var(--section-py-mobile) 16px; }
  h1 { font-size: calc(var(--h1-size) * 0.72); }
  h2 { font-size: calc(var(--h2-size) * 0.78); }
}


/* hero */

.block-hero { padding: var(--hero-py) 24px; background: color-mix(in oklab, var(--brand) 6%, var(--bg)); }
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-center { text-align: center; }
.hero-image { border-radius: var(--r); margin: 0 auto 24px; max-height: 360px; object-fit: cover; }
.hero-sub { font-size: 18px; opacity: 0.78; margin: 0 0 24px; }
/* The second button on a normal (light) hero cannot use the white-on-
   photo ghost treatment — it would be invisible. */
.btn-ghost-solid { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--border); margin-left: 8px; }
.btn-ghost-solid:hover { background: rgba(0,0,0,0.05); }

/* ----- full-screen variant -----
   :has() lets the block strip the section padding it inherits from
   .block-hero without the renderer needing to reach up and put a class
   on the section element wrapping it. */
.block-hero:has(.hero-fill) { padding: 0; background: none; }
.hero-fill {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 96px 24px;
  color: #ffffff;
  background: #1a1a1a;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
/* Darkening lives on a pseudo-element so the operator can dial it per
   photo — a bright shot needs more than a dim one. */
.hero-fill::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.hero-scrim-none::after   { background: none; }
.hero-scrim-soft::after   { background: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.42)); }
.hero-scrim-strong::after { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.66)); }
.hero-fill-inner { max-width: 900px; width: 100%; margin: 0 auto; }
.hero-fill.hero-left .hero-fill-inner { margin-left: 0; }
.hero-fill h1 { font-size: calc(var(--h1-size) * 1.35); text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero-fill .hero-sub { opacity: 0.95; font-size: 20px; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-center .hero-actions { justify-content: center; }
@media (max-width: 640px) {
  .block-hero { padding: var(--section-py-mobile) 16px; }
  .hero-sub { font-size: 16px; }
  .hero-fill { padding: 88px 18px; }
  .hero-fill h1 { font-size: calc(var(--h1-size) * 0.85); }
  .hero-fill .hero-sub { font-size: 17px; }
}


/* reservation-widget */

.rsv-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.rsv-launcher-wrap { padding: 12px 0; }
.rsv-note { opacity: 0.75; margin-bottom: 20px; }
.rsv-frame {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  background: var(--bg);
}

/* Inline "Book a table" button (mode=button) — reuses .btn-primary
   from styles.css, plus a little extra prominence. */
.rsv-launch { font-size: 16px; padding: 14px 28px; }

/* Floating launcher (mode=floating) — fixed bottom-right corner,
   brand-tinted pill. Safe-area inset handles iPhone notch bottom. */
.rsv-floating {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 18px;
  background: var(--brand);
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.rsv-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.12);
}
.rsv-floating-icon { font-size: 18px; line-height: 1; }

/* Restaurant chooser — a right-hand drawer listing every venue by city.
   Painted in the brand colour with dark ink, like a menu card. */
.rsv-drawer { position: fixed; inset: 0; z-index: 9998; }
.rsv-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 200ms ease; }
.rsv-drawer-panel {
  position: absolute; top: var(--rsv-nav-offset, 16px); right: 16px; bottom: 16px;
  width: min(380px, calc(100vw - 32px));
  display: flex; flex-direction: column;
  border-radius: 14px;
  background: color-mix(in oklab, var(--brand) 78%, white);
  color: #1b1b1b;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
}
.rsv-drawer.is-open .rsv-drawer-backdrop { opacity: 1; }
.rsv-drawer.is-open .rsv-drawer-panel { transform: none; }
.rsv-drawer-hd {
  display: flex; align-items: center; justify-content: center; position: relative;
  padding: 14px 44px; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.rsv-drawer-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; font-size: 22px; line-height: 1; cursor: pointer; color: inherit; padding: 4px 8px;
}
.rsv-drawer-list { overflow: auto; padding: 10px 14px 16px; }
.rsv-drawer-city { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 14px 2px 6px; opacity: 0.85; }
.rsv-drawer-venue {
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: center;
  width: 100%; text-align: left; margin: 0 0 6px;
  padding: 10px 12px; border: 0; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.22); color: inherit; font: inherit;
}
.rsv-drawer-venue:hover { background: rgba(0,0,0,0.12); }
.rsv-drawer-venue-name { grid-column: 1; font-size: 14px; font-weight: 600; }
.rsv-drawer-venue-street { grid-column: 1; font-size: 12px; opacity: 0.8; }
.rsv-drawer-chevron { grid-column: 2; grid-row: 1 / span 2; font-size: 20px; opacity: 0.7; }
@media (max-width: 480px) {
  .rsv-floating-label { display: none; }
  .rsv-floating { padding: 14px; }
  .rsv-floating-icon { font-size: 22px; }
}

/* Modal scaffolding (button + floating both use this). Created on
   demand by the inline script — the CSS is here so first-open looks
   right without a layout flash. */
.rsv-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 9100;
  padding: 16px;
}
.rsv-modal.is-open { display: flex; }
.rsv-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: rsv-fade 180ms ease;
}
.rsv-modal-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  /* Nothing of the frame itself should show: the iframe paints the
     venue's colour edge to edge, so a white frame behind it would only
     ever appear as a flash when the widget bounces or repaints. */
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  /* Rounded by the iframe, not by clipping the frame: the close button
     hangs OUTSIDE the corner, where it can never sit on top of the
     widget's own header controls (its language menu lives there). */
  overflow: visible;
  display: flex;
  flex-direction: column;
  animation: rsv-pop 200ms cubic-bezier(0.2, 0.8, 0.2, 1.05);
}
.rsv-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  /* The site's own button rule pads every <button> (12px 22px) — that
     turned this circle into an oval. Pin the box outright. */
  box-sizing: border-box;
  width: 34px; height: 34px;
  padding: 0; margin: 0;
  line-height: 1;
  background: #1b1b1b;
  color: #ffffff;
  border: 2px solid #ffffff; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.rsv-modal-close:hover { background: #000000; }

/* Side panel presentation — docked to the right edge, the page behind
   it stays scrollable and clickable; only the panel catches pointer
   events. */
.rsv-modal--side { pointer-events: none; align-items: stretch; justify-content: flex-end; padding: var(--rsv-nav-offset, 16px) 16px 16px; }
.rsv-modal--side .rsv-modal-backdrop { display: none; }
.rsv-modal--side .rsv-modal-frame {
  pointer-events: auto;
  width: min(440px, calc(100vw - 32px));
  max-width: none;
  max-height: none;
  height: auto;
  animation: rsv-slide-in 220ms ease;
}
@keyframes rsv-slide-in { from { transform: translateX(calc(100% + 24px)); } to { transform: none; } }
.rsv-modal-iframe {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  border: 0;
  border-radius: inherit;
}
@keyframes rsv-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rsv-pop  { from { opacity: 0; transform: scale(0.96) translateY(8px); }
                     to   { opacity: 1; transform: none; } }

.rsv-placeholder {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 22px;
  border: 1px dashed var(--border);
  border-radius: var(--r);
  background: color-mix(in oklab, var(--brand) 4%, var(--bg));
  text-align: center;
}
.rsv-placeholder-glyph { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.rsv-placeholder-title { font-weight: 600; margin-bottom: 8px; }
.rsv-placeholder-hint { font-size: 13px; opacity: 0.78; line-height: 1.5; margin: 0; }
.rsv-placeholder-hint code {
  font-family: monospace;
  background: color-mix(in oklab, var(--brand) 10%, var(--bg));
  padding: 1px 4px; border-radius: 3px; font-size: 12px;
}


/* contact */

.contact-grid { display: grid; gap: 24px; }
.contact-addr { font-size: 16px; line-height: 1.6; }
.contact-meta { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.contact-meta a { font-weight: 600; }


/* vacancies */

.vac-heading { text-align: center; margin-bottom: 8px; }
.vac-intro { max-width: 760px; margin: 0 auto 28px; text-align: center; opacity: 0.85; font-size: 17px; }
.vac-filters {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px; margin: 0 -24px 32px;
  background: color-mix(in oklab, var(--brand) 8%, var(--bg));
}
.vac-filters-hd { font-family: var(--heading-font); font-weight: var(--heading-weight); text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; margin-bottom: 4px; }
.vac-filter { width: min(320px, 100%); padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--btn-radius); background: var(--bg); color: var(--text); font: inherit; }
.vac-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vac-card {
  display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
  background: color-mix(in oklab, var(--brand) 8%, var(--bg));
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.vac-card-media { display: block; aspect-ratio: 2 / 1; background: color-mix(in oklab, var(--brand) 20%, var(--bg)); }
.vac-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vac-card-nomedia { display: block; width: 100%; height: 100%; }
.vac-card-body { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; padding: 16px 16px 4px; }
.vac-card-title { font-size: 15px; margin: 0; }
.vac-card-place { font-size: 12px; opacity: 0.8; white-space: nowrap; }
.vac-card-btn { margin: 14px auto 18px; }
.vac-empty { text-align: center; opacity: 0.7; grid-column: 1 / -1; }
.vac-more-row { text-align: center; margin-top: 28px; }
@media (max-width: 900px) { .vac-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vac-list { grid-template-columns: 1fr; } .vac-filters { margin: 0 -16px 24px; } }


:root {
  --brand: #cdad72;
  --text:  #1b1b1b;
  --bg:    #f3f0e9;
  --r:     4px;

  --body-font:        'Asap', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --heading-font:     'Asap Condensed', 'Roboto Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', system-ui, sans-serif;
  --heading-weight:   900;
  --heading-tracking: 0.03em;
  --heading-case:     normal;

  --section-py:       64px;
  --section-py-mobile: 42px;
  --hero-py:          96px;
  --btn-radius:       4px;
  --border:           rgba(0,0,0,0.08);
  --footer-fg:        rgba(0,0,0,0.6);

  --h1-size: 44px;
  --h2-size: 30px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}
/* Background pattern: a fixed tiled layer under the content, so its
   opacity is independent of the page colour beneath it. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  background-image: url("/assets/1196b10e88547388.png");
  background-repeat: repeat;
  background-position: top center;
  
  opacity: 1;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.site-nav {
  --nav-fg: var(--text);
  position: sticky; top: 0; z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.nav-logo { display: block; max-height: 44px; max-width: 180px; width: auto; object-fit: contain; }
.nav-brand {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  font-size: 18px;
  color: var(--nav-fg);
}
.nav-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.nav-links { display: flex; gap: 22px; align-items: center; }
/* Venue dropdown, built on the details element so it works without
   JavaScript and on touch; the menu is absolutely positioned so opening
   it does not shove the rest of the nav sideways. */
.nav-drop { position: relative; }
.nav-drop > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-caret { font-size: .7em; opacity: .7; }
.nav-drop[open] .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  min-width: 220px;
  max-height: 70vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: var(--radius, 10px);
  background: var(--bg, #fff);
  box-shadow: 0 10px 30px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.08);
}
.nav-drop-link { padding: 8px 10px; border-radius: 6px; text-decoration: none; color: inherit; white-space: nowrap; }
.nav-drop-link:hover, .nav-drop-link.active { background: rgba(0,0,0,.06); }
.nav-link {
  color: var(--nav-fg); font-size: 14px; font-weight: 500; opacity: 0.78;
  text-transform: var(--heading-case);
  letter-spacing: var(--heading-tracking);
}
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--brand); text-decoration: none; }

/* Right-hand call-to-action buttons. They sit outside the menu on
   purpose: when the links are behind a hamburger these stay on the bar,
   which is the point of putting Reserveer / Bestel there at all. */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  display: inline-block;
  padding: 9px 16px;
  border-radius: var(--btn-radius);
  background: var(--brand); color: #ffffff;
  font-size: 14px; font-weight: 600;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.08); text-decoration: none; }
.nav-cta.ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--nav-fg);
  box-shadow: inset 0 0 0 1px currentColor;
}

/* Overlay bar — transparent, laid over a full-screen hero. Fixed rather
   than sticky so the hero starts at the very top of the viewport; the
   gradient keeps light text readable over a bright photo. */
.site-nav.nav-overlay {
  --nav-fg: #ffffff;
  position: fixed; top: 0; left: 0; right: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0));
  border-bottom-color: transparent;
  transition: background 180ms ease, border-color 180ms ease;
}
/* Past the hero the same bar has to go solid or the light text lands on
   a light section. The class is toggled by a four-line inline script. */
html.nav-scrolled .site-nav.nav-overlay {
  --nav-fg: var(--text);
  background: var(--bg);
  border-bottom-color: var(--border);
}

/* Hamburger + side drawer. Built on details/summary so a published page
   opens its own menu without shipping any JavaScript. */
/* The burger and the brand have to clear the open panel, which is a
   descendant of the burger's own details element — so they are lifted
   individually rather than as a group, or the panel rides up with them
   and paints over both, leaving no visible way to close the drawer. */
.nav-drawer .nav-brand { position: relative; z-index: 41; }
.nav-menu > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  color: var(--nav-fg);
  position: relative; z-index: 41;
}
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-burger-bars { position: relative; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.nav-burger-bars::before, .nav-burger-bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 140ms ease, top 140ms ease; }
.nav-burger-bars::before { top: -6px; }
.nav-burger-bars::after  { top: 6px; }
/* Once the panel is open it is sitting UNDER the top-left of the bar —
   so the burger (now an X) and the brand beside it have to take the
   panel's dark-on-light colours or they vanish into it. */
.nav-menu[open] > summary { color: var(--text); }
.nav-menu[open] ~ .nav-brand { color: var(--text); }
.nav-menu[open] .nav-burger-bars { background: transparent; }
.nav-menu[open] .nav-burger-bars::before { top: 0; transform: rotate(45deg); }
.nav-menu[open] .nav-burger-bars::after  { top: 0; transform: rotate(-45deg); }
.nav-menu-panel {
  --nav-fg: var(--text);
  position: fixed; top: 0; bottom: 0; left: 0;
  width: min(340px, 86vw);
  z-index: 40; overflow: auto;
  padding: 84px 28px 28px;
  background: var(--bg); color: var(--text);
  /* The huge spread doubles as the backdrop dimmer — no extra element,
     and no click-outside handler to write. */
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.42), 0 18px 50px rgba(0,0,0,0.3);
}
.nav-menu-links { display: flex; flex-direction: column; gap: 2px; align-items: stretch; }
.nav-menu-links .nav-link { font-size: 20px; padding: 10px 0; opacity: 1; }
.nav-menu-links .nav-drop { width: 100%; }
.nav-menu-links .nav-drop-menu { position: static; box-shadow: none; padding: 2px 0 8px 14px; min-width: 0; max-height: none; background: none; }
.nav-menu-links .nav-drop-link { padding: 7px 0; font-size: 16px; }

.nav-languages { font-size: 13px; flex-shrink: 0; color: var(--nav-fg); }
.nav-languages > summary, .nav-languages .nav-drop-link { display: flex; align-items: center; gap: 8px; }
.nav-languages svg { flex-shrink: 0; }
.nav-languages .nav-drop-menu { left: auto; right: 0; min-width: 160px; color: var(--text); }
.nav-languages a[aria-current="true"] { font-weight: 700; text-decoration: underline; }
.site-skip-link { position: absolute; left: 12px; top: -100px; z-index: 100; padding: 12px; background: var(--bg); color: var(--text); }
.site-skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible, select:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
@media (max-width: 700px) { .nav-inner { flex-wrap: wrap; gap: 12px; } }
main { display: block; }
.block { padding: var(--section-py) 24px; }
.block-inner { max-width: 1100px; margin: 0 auto; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  font-size: 13px;
  color: var(--footer-fg);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-links a { color: var(--footer-fg); margin: 0 4px; }

button, .btn-primary {
  display: inline-block;
  background: var(--brand); color: #ffffff;
  border: 0; border-radius: var(--btn-radius);
  padding: 12px 22px;
  font: inherit;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  cursor: pointer;
  text-decoration: none;
}
button:hover, .btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.14); color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
  border-radius: var(--btn-radius);
  padding: 12px 22px;
  font-family: var(--body-font); font-weight: 600; font-size: 15px;
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); text-decoration: none; }

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: var(--heading-case);
}
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: 20px; font-weight: calc(var(--heading-weight) - 100); }
p  { margin: 0 0 12px; }

@media (max-width: 640px) {
  .nav-inner { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-actions { gap: 6px; }
  .nav-cta { padding: 8px 12px; font-size: 13px; }
  /* On a phone the nav wraps, and an absolutely-positioned menu would
     hang off the screen — let it push the page instead. */
  .nav-drop:not(.nav-languages) > .nav-drop-menu { position: static; box-shadow: none; padding: 4px 0 4px 12px; min-width: 0; }
  .block { padding: var(--section-py-mobile) 16px; }
  h1 { font-size: calc(var(--h1-size) * 0.72); }
  h2 { font-size: calc(var(--h2-size) * 0.78); }
}


/* hero */

.block-hero { padding: var(--hero-py) 24px; background: color-mix(in oklab, var(--brand) 6%, var(--bg)); }
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-center { text-align: center; }
.hero-image { border-radius: var(--r); margin: 0 auto 24px; max-height: 360px; object-fit: cover; }
.hero-sub { font-size: 18px; opacity: 0.78; margin: 0 0 24px; }
/* The second button on a normal (light) hero cannot use the white-on-
   photo ghost treatment — it would be invisible. */
.btn-ghost-solid { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--border); margin-left: 8px; }
.btn-ghost-solid:hover { background: rgba(0,0,0,0.05); }

/* ----- full-screen variant -----
   :has() lets the block strip the section padding it inherits from
   .block-hero without the renderer needing to reach up and put a class
   on the section element wrapping it. */
.block-hero:has(.hero-fill) { padding: 0; background: none; }
.hero-fill {
  position: relative; isolation: isolate;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 96px 24px;
  color: #ffffff;
  background: #1a1a1a;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
/* Darkening lives on a pseudo-element so the operator can dial it per
   photo — a bright shot needs more than a dim one. */
.hero-fill::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.hero-scrim-none::after   { background: none; }
.hero-scrim-soft::after   { background: linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.42)); }
.hero-scrim-strong::after { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.66)); }
.hero-fill-inner { max-width: 900px; width: 100%; margin: 0 auto; }
.hero-fill.hero-left .hero-fill-inner { margin-left: 0; }
.hero-fill h1 { font-size: calc(var(--h1-size) * 1.35); text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero-fill .hero-sub { opacity: 0.95; font-size: 20px; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-center .hero-actions { justify-content: center; }
@media (max-width: 640px) {
  .block-hero { padding: var(--section-py-mobile) 16px; }
  .hero-sub { font-size: 16px; }
  .hero-fill { padding: 88px 18px; }
  .hero-fill h1 { font-size: calc(var(--h1-size) * 0.85); }
  .hero-fill .hero-sub { font-size: 17px; }
}


/* reservation-widget */

.rsv-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.rsv-launcher-wrap { padding: 12px 0; }
.rsv-note { opacity: 0.75; margin-bottom: 20px; }
.rsv-frame {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  background: var(--bg);
}

/* Inline "Book a table" button (mode=button) — reuses .btn-primary
   from styles.css, plus a little extra prominence. */
.rsv-launch { font-size: 16px; padding: 14px 28px; }

/* Floating launcher (mode=floating) — fixed bottom-right corner,
   brand-tinted pill. Safe-area inset handles iPhone notch bottom. */
.rsv-floating {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 18px;
  background: var(--brand);
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.rsv-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.12);
}
.rsv-floating-icon { font-size: 18px; line-height: 1; }

/* Restaurant chooser — a right-hand drawer listing every venue by city.
   Painted in the brand colour with dark ink, like a menu card. */
.rsv-drawer { position: fixed; inset: 0; z-index: 9998; }
.rsv-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 200ms ease; }
.rsv-drawer-panel {
  position: absolute; top: var(--rsv-nav-offset, 16px); right: 16px; bottom: 16px;
  width: min(380px, calc(100vw - 32px));
  display: flex; flex-direction: column;
  border-radius: 14px;
  background: color-mix(in oklab, var(--brand) 78%, white);
  color: #1b1b1b;
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
}
.rsv-drawer.is-open .rsv-drawer-backdrop { opacity: 1; }
.rsv-drawer.is-open .rsv-drawer-panel { transform: none; }
.rsv-drawer-hd {
  display: flex; align-items: center; justify-content: center; position: relative;
  padding: 14px 44px; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.rsv-drawer-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; font-size: 22px; line-height: 1; cursor: pointer; color: inherit; padding: 4px 8px;
}
.rsv-drawer-list { overflow: auto; padding: 10px 14px 16px; }
.rsv-drawer-city { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 14px 2px 6px; opacity: 0.85; }
.rsv-drawer-venue {
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: center;
  width: 100%; text-align: left; margin: 0 0 6px;
  padding: 10px 12px; border: 0; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,0.22); color: inherit; font: inherit;
}
.rsv-drawer-venue:hover { background: rgba(0,0,0,0.12); }
.rsv-drawer-venue-name { grid-column: 1; font-size: 14px; font-weight: 600; }
.rsv-drawer-venue-street { grid-column: 1; font-size: 12px; opacity: 0.8; }
.rsv-drawer-chevron { grid-column: 2; grid-row: 1 / span 2; font-size: 20px; opacity: 0.7; }
@media (max-width: 480px) {
  .rsv-floating-label { display: none; }
  .rsv-floating { padding: 14px; }
  .rsv-floating-icon { font-size: 22px; }
}

/* Modal scaffolding (button + floating both use this). Created on
   demand by the inline script — the CSS is here so first-open looks
   right without a layout flash. */
.rsv-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 9100;
  padding: 16px;
}
.rsv-modal.is-open { display: flex; }
.rsv-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: rsv-fade 180ms ease;
}
.rsv-modal-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  /* Nothing of the frame itself should show: the iframe paints the
     venue's colour edge to edge, so a white frame behind it would only
     ever appear as a flash when the widget bounces or repaints. */
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  /* Rounded by the iframe, not by clipping the frame: the close button
     hangs OUTSIDE the corner, where it can never sit on top of the
     widget's own header controls (its language menu lives there). */
  overflow: visible;
  display: flex;
  flex-direction: column;
  animation: rsv-pop 200ms cubic-bezier(0.2, 0.8, 0.2, 1.05);
}
.rsv-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  /* The site's own button rule pads every <button> (12px 22px) — that
     turned this circle into an oval. Pin the box outright. */
  box-sizing: border-box;
  width: 34px; height: 34px;
  padding: 0; margin: 0;
  line-height: 1;
  background: #1b1b1b;
  color: #ffffff;
  border: 2px solid #ffffff; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.rsv-modal-close:hover { background: #000000; }

/* Side panel presentation — docked to the right edge, the page behind
   it stays scrollable and clickable; only the panel catches pointer
   events. */
.rsv-modal--side { pointer-events: none; align-items: stretch; justify-content: flex-end; padding: var(--rsv-nav-offset, 16px) 16px 16px; }
.rsv-modal--side .rsv-modal-backdrop { display: none; }
.rsv-modal--side .rsv-modal-frame {
  pointer-events: auto;
  width: min(440px, calc(100vw - 32px));
  max-width: none;
  max-height: none;
  height: auto;
  animation: rsv-slide-in 220ms ease;
}
@keyframes rsv-slide-in { from { transform: translateX(calc(100% + 24px)); } to { transform: none; } }
.rsv-modal-iframe {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  border: 0;
  border-radius: inherit;
}
@keyframes rsv-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rsv-pop  { from { opacity: 0; transform: scale(0.96) translateY(8px); }
                     to   { opacity: 1; transform: none; } }

.rsv-placeholder {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 22px;
  border: 1px dashed var(--border);
  border-radius: var(--r);
  background: color-mix(in oklab, var(--brand) 4%, var(--bg));
  text-align: center;
}
.rsv-placeholder-glyph { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.rsv-placeholder-title { font-weight: 600; margin-bottom: 8px; }
.rsv-placeholder-hint { font-size: 13px; opacity: 0.78; line-height: 1.5; margin: 0; }
.rsv-placeholder-hint code {
  font-family: monospace;
  background: color-mix(in oklab, var(--brand) 10%, var(--bg));
  padding: 1px 4px; border-radius: 3px; font-size: 12px;
}


/* contact */

.contact-grid { display: grid; gap: 24px; }
.contact-addr { font-size: 16px; line-height: 1.6; }
.contact-meta { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.contact-meta a { font-weight: 600; }


/* quote */

.quote-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-text {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.25;
  font-size: clamp(24px, 3.4vw, 44px);
}
.quote-medium .quote-text { font-size: clamp(20px, 2.4vw, 30px); }
.quote-name { margin-top: 16px; font-size: 15px; opacity: 0.8; }
.quote-name::before { content: "— "; }


/* vacancies */

.vac-heading { text-align: center; margin-bottom: 8px; }
.vac-intro { max-width: 760px; margin: 0 auto 28px; text-align: center; opacity: 0.85; font-size: 17px; }
.vac-filters {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px; margin: 0 -24px 32px;
  background: color-mix(in oklab, var(--brand) 8%, var(--bg));
}
.vac-filters-hd { font-family: var(--heading-font); font-weight: var(--heading-weight); text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; margin-bottom: 4px; }
.vac-filter { width: min(320px, 100%); padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--btn-radius); background: var(--bg); color: var(--text); font: inherit; }
.vac-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vac-card {
  display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
  background: color-mix(in oklab, var(--brand) 8%, var(--bg));
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.vac-card-media { display: block; aspect-ratio: 2 / 1; background: color-mix(in oklab, var(--brand) 20%, var(--bg)); }
.vac-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vac-card-nomedia { display: block; width: 100%; height: 100%; }
.vac-card-body { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; padding: 16px 16px 4px; }
.vac-card-title { font-size: 15px; margin: 0; }
.vac-card-place { font-size: 12px; opacity: 0.8; white-space: nowrap; }
.vac-card-btn { margin: 14px auto 18px; }
.vac-empty { text-align: center; opacity: 0.7; grid-column: 1 / -1; }
.vac-more-row { text-align: center; margin-top: 28px; }
@media (max-width: 900px) { .vac-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vac-list { grid-template-columns: 1fr; } .vac-filters { margin: 0 -16px 24px; } }


