/* ============================================================
   Vorster — /beispiele demo sites (Café Auszeit)
   One fictional café, three tiers. Same content, escalating
   design + features:
     .vd-basic   — plain, classic onepager
     .vd-modern  — warm cream/terracotta, live status, lightbox
     .vd-premium — dark luxe, events/countdown, slider, reservation
   All rules are scoped under the tier wrappers (demo pages render
   with no_header/no_footer, so the main theme look never leaks in).
   ============================================================ */

/* ---- Vorster demo bar (shared, sits above every demo site) ---- */

.v-demobar {
  position: sticky; top: 0; z-index: 2000;
  background: #0A1130; color: #C7CFEE;
  font-family: var(--v-font); font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.v-demobar__inner {
  max-width: 1280px; margin-inline: auto; padding: 8px clamp(14px, 3vw, 28px);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.v-demobar__back { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
#wrapwrap .v-demobar a { color: #C7CFEE; text-decoration: none; }
#wrapwrap .v-demobar a:hover { color: #fff; }
.v-demobar__label { color: #7E89B8; }
.v-demobar__label strong { color: #fff; font-weight: 600; }
.v-demobar__switch { display: flex; gap: 6px; margin-left: auto; }
.v-demobar__switch a {
  padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 500;
}
#wrapwrap .v-demobar__switch a.is-active {
  background: var(--v-blue); border-color: var(--v-blue); color: #fff; font-weight: 600;
}
@media (max-width: 640px) {
  .v-demobar__label { display: none; }
}

/* ---- shared demo primitives ---------------------------------- */

/* no hover underlines inside the demo sites either (vd-basic's always-on
   underline is set below with matching specificity and stays) */
#wrapwrap .vd a:hover { text-decoration: none; }

.vd { min-height: 100vh; }
.vd img { max-width: 100%; height: auto; display: block; }
.vd .vd-wrap { max-width: 1080px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }

/* live open-status pill (modern + premium) */
.vd-open {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
}
.vd-open__dot { width: 9px; height: 9px; border-radius: 50%; background: #999; }
.vd-open.is-open  .vd-open__dot { background: #3DBB6E; box-shadow: 0 0 0 4px rgba(61, 187, 110, .25); }
.vd-open.is-closed .vd-open__dot { background: #E05252; box-shadow: 0 0 0 4px rgba(224, 82, 82, .2); }

/* lightbox overlay (built by demo.js) */
.vd-lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(15, 10, 6, .92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.vd-lightbox.is-open { opacity: 1; pointer-events: auto; }
.vd-lightbox img {
  max-width: min(92vw, 1100px); max-height: 84vh;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.vd-lightbox__btn {
  position: absolute; background: rgba(255, 255, 255, .12); color: #fff;
  border: 0; border-radius: 50%; width: 48px; height: 48px;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.vd-lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.vd-lightbox__close { top: 20px; right: 20px; }
.vd-lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.vd-lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ==============================================================
   TIER 1 — BASIC: a real multi-page site in the Gasthaus-Monika
   mould (warm paper, rust red, Fraunces serif) — just WITHOUT the
   live features (no open-status, no event countdown, no reveal).
   Pages: / (Start), /karte, /fotos, /kontakt
   ============================================================== */

.vd-basic {
  --b-bg: #FAF6EF; --b-bg-2: #F2E9DA; --b-surface: #fff;
  --b-ink: #2E2015; --b-body: #5C4B3A; --b-muted: #8A7A66;
  --b-accent: #C4643B; --b-accent-deep: #9E4A28;
  --b-line: rgba(46, 32, 21, .13);
  background: var(--b-bg); color: var(--b-body);
  font-family: var(--v-font);
  font-size: 16.5px; line-height: 1.7;
}
.vd-basic h1, .vd-basic h2, .vd-basic h3 {
  color: var(--b-ink); font-family: var(--v-serif);
  font-weight: 600; line-height: 1.15; margin: 0 0 .5em;
}
#wrapwrap .vd-basic a,
#wrapwrap .vd-basic a:hover { color: var(--b-accent); text-decoration: none; }

.vdb-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--b-accent); margin-bottom: 12px;
}
.vdb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  background: var(--b-accent); color: #fff;
  transition: background .25s ease, transform .25s ease;
}
#wrapwrap .vd-basic .vdb-btn,
#wrapwrap .vd-basic .vdb-btn:hover { color: #fff; }
.vdb-btn:hover { background: var(--b-accent-deep); transform: translateY(-2px); }
.vdb-btn--ghost { background: transparent; border: 1.5px solid var(--b-ink); color: var(--b-ink); }
#wrapwrap .vd-basic .vdb-btn--ghost { color: var(--b-ink); }
#wrapwrap .vd-basic .vdb-btn--ghost:hover { color: #fff; }
.vdb-btn--ghost:hover { background: var(--b-ink); }
.vdb-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.vdb-center { text-align: center; margin-top: clamp(26px, 4vw, 40px); }
.vdb-section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 44px); }
.vdb-note { color: var(--b-muted); font-size: 14px; text-align: center; margin: 26px 0 0; }
/* ghost button on the dark photo hero — light border/text for legibility */
.vdb-hero__inner .vdb-btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; }
#wrapwrap .vd-basic .vdb-hero__inner .vdb-btn--ghost { color: #fff; }
.vdb-hero__inner .vdb-btn--ghost:hover { background: #fff; color: var(--b-ink); }
#wrapwrap .vd-basic .vdb-hero__inner .vdb-btn--ghost:hover { color: var(--b-ink); }

/* header — logo glyph + name, nav pills, red phone pill (monika-style) */
.vdb-header {
  position: sticky; top: var(--vd-demobar-h, 41px); z-index: 1500;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--b-line);
}
.vdb-header .vd-wrap { display: flex; align-items: center; gap: 18px; height: 72px; }
.vdb-header__brand { display: flex; align-items: center; gap: 11px; }
.vdb-header__brand svg { width: 34px; height: 34px; color: var(--b-accent); flex: none; }
.vdb-header__name {
  font-family: var(--v-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--b-ink); margin: 0; line-height: 1.05;
}
.vdb-header__tagline { margin: 1px 0 0; font-size: 11px; color: var(--b-muted); letter-spacing: .08em; }
.vdb-header nav { margin-left: auto; display: flex; gap: 2px; }
.vdb-header nav a {
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: var(--b-ink); transition: background .2s ease, color .2s ease;
}
#wrapwrap .vd-basic .vdb-header nav a { color: var(--b-ink); }
.vdb-header nav a:hover { background: rgba(196, 100, 59, .12); color: var(--b-accent); }
#wrapwrap .vd-basic .vdb-header nav a.is-active { background: var(--b-accent); color: #fff; }
.vdb-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: var(--b-accent); color: #fff; font-weight: 600; font-size: 14px;
  transition: background .25s ease;
}
#wrapwrap .vd-basic .vdb-header__phone,
#wrapwrap .vd-basic .vdb-header__phone:hover { color: #fff; }
.vdb-header__phone:hover { background: var(--b-accent-deep); }
.vdb-header__phone svg { width: 15px; height: 15px; }
@media (max-width: 880px) {
  .vdb-header nav { display: none; }
  .vdb-header__phone { margin-left: auto; }
}

/* full-bleed photo hero with overlay (monika front page) */
.vdb-hero { position: relative; overflow: hidden; }
/* photo slightly muted so the cream/white copy always reads */
.vdb-hero img {
  width: 100%; height: min(62vh, 540px); object-fit: cover; display: block;
  filter: saturate(.75) brightness(.8);
}
.vdb-hero--tall img { height: min(72vh, 620px); }
/* start page: full viewport (minus demo bar 41px + café header 72px);
   extra bottom padding keeps the copy clear of the scroll cue */
.vdb-hero--full img { height: calc(100vh - 113px); min-height: 480px; }
.vdb-hero--full .vdb-hero__inner { padding-bottom: clamp(72px, 10vh, 110px); }
.vdb-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(30, 20, 12, .78),
    rgba(30, 20, 12, .30) 55%,
    rgba(30, 20, 12, .22));
}
/* bouncing scroll cue */
.vdb-hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .65);
  display: grid; place-items: center;
  animation: vdb-scroll-bounce 2.2s ease-in-out infinite;
}
.vdb-hero__scroll span {
  width: 9px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
@keyframes vdb-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) { .vdb-hero__scroll { animation: none; } }
.vdb-hero__inner {
  position: absolute; inset: auto 0 0 0;
  padding-bottom: clamp(28px, 5vw, 56px); color: #fff;
}
.vdb-hero__inner .vdb-eyebrow { color: #F7DCC0; text-shadow: 0 1px 8px rgba(30, 20, 12, .55); }
.vdb-hero__inner h1 {
  color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.6rem); max-width: 18ch;
  margin-bottom: .35em;
}
.vdb-hero__inner p { color: #F5E9DB; max-width: 50ch; margin: 0 0 20px; }

/* small page-hero for subpages */
.vdb-page-hero { background: var(--b-bg-2); border-bottom: 1px solid var(--b-line); padding: clamp(36px, 5vw, 60px) 0; }
.vdb-page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }
.vdb-page-hero p { margin: 10px 0 0; color: var(--b-muted); }

.vd-basic section { padding: clamp(44px, 6vw, 80px) 0; }
.vd-basic section.vdb-section--cream { background: var(--b-bg-2); border-block: 1px solid var(--b-line); }

/* split feature (Willkommen) */
.vdb-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 5vw, 60px); align-items: center; }
@media (max-width: 800px) { .vdb-split { grid-template-columns: 1fr; } }
.vdb-split__media img { border-radius: 16px; box-shadow: 0 18px 50px -24px rgba(46, 32, 21, .45); display: block; }

/* specialty / dish cards */
.vdb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .vdb-cards { grid-template-columns: 1fr; } }
.vdb-card {
  background: var(--b-surface); border: 1px solid var(--b-line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(46, 32, 21, .4);
}
.vdb-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; display: block; }
.vdb-card__body { padding: 18px 20px 22px; }
.vdb-card h3 { font-size: 1.15rem; margin-bottom: .3em; }
.vdb-card p { font-size: 14.5px; margin: 0; }

/* menu (Karte) — category blocks with dotted price rows */
.vdb-menu { max-width: 760px; margin-inline: auto; }
.vdb-menu h2 {
  font-size: 1.5rem; text-align: center; margin: 0 0 6px;
}
.vdb-menu__cat + .vdb-menu__cat { margin-top: clamp(34px, 5vw, 54px); }
.vdb-menu__cat-note { text-align: center; color: var(--b-muted); font-size: 14px; margin: 0 0 22px; }
.vdb-dish { display: flex; align-items: baseline; gap: 10px; padding: 10px 0; }
.vdb-dish__name { font-weight: 600; color: var(--b-ink); }
.vdb-dish__dots { flex: 1; border-bottom: 2px dotted var(--b-line); transform: translateY(-4px); }
.vdb-dish__price { font-weight: 600; color: var(--b-accent); white-space: nowrap; }
.vdb-dish__desc { font-size: 14px; color: var(--b-muted); margin: -6px 0 0; }

/* photo grid (Fotos page + teaser) */
.vdb-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .vdb-gallery { grid-template-columns: repeat(2, 1fr); } }
.vdb-gallery a { display: block; border-radius: 12px; overflow: hidden; }
.vdb-gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; display: block; transition: transform .4s ease; }
.vdb-gallery a:hover img { transform: scale(1.05); }

/* contact page */
.vdb-contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 60px); align-items: start; }
@media (max-width: 760px) { .vdb-contact { grid-template-columns: 1fr; } }
.vdb-contact h2 { font-size: 1.4rem; }
.vdb-hours { border-collapse: collapse; width: 100%; max-width: 420px; }
.vdb-hours td { border-bottom: 1px solid var(--b-line); padding: 10px 12px 10px 0; font-size: 15px; }
.vdb-hours td:first-child { font-weight: 600; color: var(--b-ink); width: 45%; }

/* footer — dark, 3 columns + legal (monika-style) */
.vdb-footer { background: #241811; color: #C9BEB2; font-size: 14.5px; }
#wrapwrap .vd-basic .vdb-footer a { color: #E8DDCE; }
#wrapwrap .vd-basic .vdb-footer a:hover { color: #fff; }
.vdb-footer__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(38px, 5vw, 60px) 0 30px;
}
@media (max-width: 760px) { .vdb-footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.vdb-footer h3 { color: #fff; font-family: var(--v-serif); font-size: 1.1rem; margin-bottom: 12px; }
.vdb-footer ul { list-style: none; margin: 0; padding: 0; }
.vdb-footer li { padding: 4px 0; }
.vdb-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0 60px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.vdb-footer__legal p { margin: 0; }

/* ==============================================================
   TIER 2 — MODERN: warm, editorial, alive
   ============================================================== */

.vd-modern {
  --m-bg: #FAF5EC; --m-ink: #2E2015; --m-body: #5C4B3A;
  --m-accent: #C4643B; --m-accent-deep: #9E4A28; --m-card: #fff;
  --m-line: #E8DCC8;
  background: var(--m-bg); color: var(--m-body);
  font-family: var(--v-font); font-size: 17px; line-height: 1.7;
}
.vd-modern h1, .vd-modern h2, .vd-modern h3 {
  color: var(--m-ink); font-weight: 700; letter-spacing: -.015em; line-height: 1.15; margin: 0 0 .5em;
}
#wrapwrap .vd-modern a { color: var(--m-accent); text-decoration: none; }

.vdm-kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--m-accent); margin-bottom: 14px;
}

.vdm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 15.5px;
  background: var(--m-accent); color: #fff; transition: background .25s ease, transform .25s ease;
}
#wrapwrap .vd-modern .vdm-btn,
#wrapwrap .vd-modern .vdm-btn:hover { color: #fff; text-decoration: none; }
.vdm-btn:hover { background: var(--m-accent-deep); transform: translateY(-2px); }
.vdm-btn--ghost { background: transparent; border: 1.5px solid var(--m-ink); color: var(--m-ink); }
#wrapwrap .vd-modern .vdm-btn--ghost { color: var(--m-ink); }
.vdm-btn--ghost:hover { background: var(--m-ink); color: #fff; }
#wrapwrap .vd-modern .vdm-btn--ghost:hover { color: #fff; }

/* header — same STRUCTURE as Basic (glyph + name + tagline, nav, terracotta
   phone pill), but it lies transparent over the hero and turns solid once the
   hero is scrolled past. Base rules below = the SOLID look (Basic-style cream
   glass); `.vdm-header--clear` makes it transparent, `.is-solid` restores it. */
.vdm-header {
  position: sticky; top: var(--vd-demobar-h, 41px); /* below the demo bar */ z-index: 1500;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--m-line);
  transition: background .3s ease, border-color .3s ease;
}
.vdm-header .vd-wrap { display: flex; align-items: center; gap: 18px; height: 72px; }
.vdm-header__brand { display: flex; align-items: center; gap: 11px; }
.vdm-header__brand svg { width: 34px; height: 34px; color: var(--m-accent); flex: none; transition: color .3s ease; }
.vdm-header__name {
  font-size: 1.3rem; font-weight: 700; color: var(--m-ink);
  margin: 0; line-height: 1.05; letter-spacing: -.01em; transition: color .3s ease;
}
.vdm-header__tagline { margin: 1px 0 0; font-size: 11px; color: #8A7A66; letter-spacing: .08em; transition: color .3s ease; }
.vdm-header nav { margin-left: auto; display: flex; gap: 2px; }
.vdm-header nav a {
  padding: 9px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: var(--m-ink); transition: background .3s ease, color .3s ease;
}
#wrapwrap .vd-modern .vdm-header nav a { color: var(--m-ink); }
#wrapwrap .vd-modern .vdm-header nav a:hover { background: rgba(196, 100, 59, .12); color: var(--m-accent); text-decoration: none; }
.vdm-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: var(--m-accent); color: #fff; font-weight: 600; font-size: 14px;
  transition: background .25s ease;
}
#wrapwrap .vd-modern .vdm-header__phone,
#wrapwrap .vd-modern .vdm-header__phone:hover { color: #fff; text-decoration: none; }
.vdm-header__phone:hover { background: var(--m-accent-deep); }
.vdm-header__phone svg { width: 15px; height: 15px; }
@media (max-width: 880px) {
  .vdm-header nav { display: none; }
  .vdm-header__phone { margin-left: auto; }
}

/* transparent-over-hero mode (default at the top of the start page) */
.vdm-header--clear {
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.vdm-header--clear .vdm-header__brand svg { color: #fff; }
#wrapwrap .vd-modern .vdm-header--clear .vdm-header__name { color: #fff; }
.vdm-header--clear .vdm-header__name { color: #fff; }
.vdm-header--clear .vdm-header__tagline { color: rgba(255, 255, 255, .82); }
#wrapwrap .vd-modern .vdm-header--clear nav a { color: #fff; }
#wrapwrap .vd-modern .vdm-header--clear nav a:hover { background: rgba(255, 255, 255, .18); color: #fff; }
/* phone pill stays terracotta in both modes (inherits the base rules) */

/* scrolled past the hero → solid again (matches the Basic look) */
.vdm-header--clear.is-solid {
  background: rgba(250, 246, 239, .92); border-bottom-color: var(--m-line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.vdm-header--clear.is-solid .vdm-header__brand svg { color: var(--m-accent); }
#wrapwrap .vd-modern .vdm-header--clear.is-solid .vdm-header__name { color: var(--m-ink); }
.vdm-header--clear.is-solid .vdm-header__name { color: var(--m-ink); }
.vdm-header--clear.is-solid .vdm-header__tagline { color: #8A7A66; }
#wrapwrap .vd-modern .vdm-header--clear.is-solid nav a { color: var(--m-ink); }
#wrapwrap .vd-modern .vdm-header--clear.is-solid nav a:hover { background: rgba(196, 100, 59, .12); color: var(--m-accent); }

/* hero — taller and running up behind the transparent header.
   padding: 0 is load-bearing: the hero is a <section>, and the generic
   `.vd-modern section` rule would add 84px bands above/below the photo. */
.vd-modern section.vdm-hero,
.vdm-hero { position: relative; overflow: hidden; margin-top: -73px; /* header height incl. 1px border */ padding: 0; }
/* full screen: fills the viewport below the demo bar exactly — the bar's
   real height is measured by demo.js into --vd-demobar-h (it varies with
   viewport width/wrapping). Hero top sits at the bar's bottom edge. */
.vdm-hero img {
  width: 100%;
  height: calc(100vh - var(--vd-demobar-h, 52px));
  min-height: 520px; object-fit: cover; display: block;
}
.vdm-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(30, 18, 8, .74), rgba(30, 18, 8, .12) 55%),
    linear-gradient(to bottom, rgba(30, 18, 8, .40), rgba(30, 18, 8, 0) 24%);
}
.vdm-hero__inner {
  position: absolute; inset: auto 0 0 0; padding-bottom: clamp(30px, 6vw, 64px);
  color: #fff; z-index: 3;
}
.vdm-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #F4C9A8; text-shadow: 0 1px 8px rgba(30, 18, 8, .5); }
.vdm-hero__eyebrow svg { width: 16px; height: 16px; }
.vdm-hero__inner h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.8rem); max-width: 16ch; }
.vdm-hero__accent { position: relative; color: #F4B996; white-space: nowrap; }
.vdm-hero__squiggle {
  position: absolute; left: 0; bottom: -.16em; width: 100%; height: .42em;
  color: #EFA982; overflow: visible;
}
.vdm-hero__inner p { color: #F3E7D4; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 46ch; }
.vdm-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }
.vd-modern .vd-open { background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(6px); }

/* floating decorative badge chips over the hero (cute, aria-hidden) */
.vdm-hero__badges { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.vdm-badge {
  position: absolute; width: 54px; height: 54px; border-radius: 50%;
  background: #FBF3E7; color: var(--m-accent);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(30, 18, 8, .28);
  animation: vdm-float 7s ease-in-out infinite;
}
.vdm-badge svg { width: 26px; height: 26px; }
.vdm-badge--1 { top: 19%; right: 8%;  animation-duration: 6.5s; animation-delay: -.6s; }
.vdm-badge--2 { top: 30%; right: 29%; animation-duration: 8s;   animation-delay: -3.4s; }
.vdm-badge--3 { top: 45%; right: 17%; animation-duration: 7.4s; animation-delay: -1.9s; }
@keyframes vdm-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@media (max-width: 700px) { .vdm-hero__badges { display: none; } }
@media (prefers-reduced-motion: reduce) { .vdm-badge { animation: none; } }

.vd-modern section { padding: clamp(48px, 7vw, 84px) 0; }

/* about split */
.vdm-about .vd-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(26px, 5vw, 60px); align-items: center; }
@media (max-width: 800px) { .vdm-about .vd-wrap { grid-template-columns: 1fr; } }
.vdm-about img { border-radius: 20px; box-shadow: 0 22px 50px rgba(46, 32, 21, .18); }

/* specialties cards */
.vdm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .vdm-cards { grid-template-columns: 1fr; } }
.vdm-card {
  background: var(--m-card); border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 32, 21, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.vdm-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(46, 32, 21, .16); }
.vdm-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.vdm-card__body { padding: 20px 22px 24px; }
.vdm-card h3 { font-size: 1.1rem; margin-bottom: .3em; }
.vdm-card p { font-size: 15px; margin: 0; }

/* gallery */
.vdm-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .vdm-gallery { grid-template-columns: repeat(2, 1fr); } }
.vdm-gallery a { display: block; border-radius: 14px; overflow: hidden; position: relative; }
.vdm-gallery img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.vdm-gallery a:hover img { transform: scale(1.06); }

/* hours + contact band */
.vdm-info { background: var(--m-ink); color: #D8C7B2; }
.vdm-info h2, .vdm-info h3 { color: #fff; }
.vdm-info .vd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 70px); }
@media (max-width: 760px) { .vdm-info .vd-wrap { grid-template-columns: 1fr; } }
.vdm-hours { list-style: none; margin: 0; padding: 0; }
.vdm-hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 12px; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 15.5px;
}
.vdm-hours li.is-today {
  background: rgba(196, 100, 59, .22); border-radius: 8px; border-bottom-color: transparent;
  font-weight: 600; color: #fff;
}
.vdm-hours li.is-today::after { content: "heute"; font-size: 12px; color: #E8A582; align-self: center; }
#wrapwrap .vd-modern .vdm-info a { color: #E8A582; }
.vdm-info .vd-open { background: rgba(255, 255, 255, .1); color: #fff; margin-bottom: 18px; }

.vdm-footer { background: #241811; color: #A08A73; font-size: 14px; padding: 22px 0 60px; }
.vdm-footer .vd-wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* ==============================================================
   TIER 3 — PREMIUM: dark luxe, events, motion
   ============================================================== */

.vd-premium {
  --p-bg: #17100B; --p-surface: #221812; --p-ink: #F5EBDD; --p-body: #C9B8A3;
  --p-gold: #D9A441; --p-terra: #D97B4F; --p-line: rgba(245, 235, 221, .12);
  background: var(--p-bg); color: var(--p-body);
  font-family: var(--v-font); font-size: 17px; line-height: 1.7;
}
.vd-premium h1, .vd-premium h2, .vd-premium h3 {
  color: var(--p-ink); font-weight: 700; letter-spacing: -.015em; line-height: 1.12; margin: 0 0 .5em;
}
#wrapwrap .vd-premium a { color: var(--p-gold); text-decoration: none; }

.vdp-kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--p-gold); margin-bottom: 14px;
}
.vdp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: 15.5px;
  background: var(--p-gold); color: #17100B;
  transition: transform .25s ease, box-shadow .25s ease;
}
#wrapwrap .vd-premium .vdp-btn,
#wrapwrap .vd-premium .vdp-btn:hover { color: #17100B; text-decoration: none; }
.vdp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(217, 164, 65, .35); }
.vdp-btn--ghost { background: transparent; border: 1.5px solid var(--p-line); color: var(--p-ink); }
#wrapwrap .vd-premium .vdp-btn--ghost { color: var(--p-ink); }
.vdp-btn--ghost:hover { border-color: var(--p-gold); color: var(--p-gold); box-shadow: none; }
#wrapwrap .vd-premium .vdp-btn--ghost:hover { color: var(--p-gold); }

/* header */
.vdp-header {
  position: sticky; top: var(--vd-demobar-h, 41px); z-index: 1500;
  background: rgba(23, 16, 11, .8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--p-line);
}
.vdp-header .vd-wrap { display: flex; align-items: center; gap: 22px; height: 70px; max-width: 1180px; }
.vdp-header__name { font-size: 1.3rem; font-weight: 700; color: var(--p-ink); margin: 0; letter-spacing: .02em; }
.vdp-header__name span { color: var(--p-gold); }
.vdp-header nav { margin-left: auto; display: flex; gap: 2px; }
.vdp-header nav a { padding: 8px 13px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--p-ink); }
#wrapwrap .vd-premium .vdp-header nav a { color: var(--p-ink); }
.vdp-header nav a:hover { color: var(--p-gold); }
.vdp-header .vdp-btn { padding: 9px 20px; font-size: 14px; }
@media (max-width: 860px) { .vdp-header nav { display: none; } }

/* hero with Ken Burns */
.vdp-hero { position: relative; overflow: hidden; height: min(88vh, 760px); display: flex; align-items: flex-end; }
.vdp-hero__media { position: absolute; inset: 0; }
.vdp-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: vdp-kenburns 18s ease-in-out infinite alternate;
}
@keyframes vdp-kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.12) translateX(-2%); }
}
@media (prefers-reduced-motion: reduce) { .vdp-hero__media img { animation: none; } }
.vdp-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 20% 100%, rgba(23, 16, 11, .85), transparent 70%),
    linear-gradient(to top, #17100B, rgba(23, 16, 11, .25) 60%, rgba(23, 16, 11, .35));
}
.vdp-hero__inner { position: relative; z-index: 1; padding-bottom: clamp(40px, 7vw, 90px); width: 100%; }
.vdp-hero__inner h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); max-width: 15ch; }
.vdp-hero__inner p { font-size: clamp(1.02rem, 2vw, 1.25rem); max-width: 46ch; color: #E4D5C0; }
.vdp-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.vd-premium .vd-open { background: rgba(245, 235, 221, .1); color: var(--p-ink); backdrop-filter: blur(6px); }

/* live event banner */
.vdp-event {
  background: linear-gradient(100deg, #2A1C10, #3A2712 60%, #2A1C10);
  border-block: 1px solid var(--p-line);
}
.vdp-event .vd-wrap {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 3vw, 36px);
  padding-block: 18px; max-width: 1180px;
}
.vdp-event__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--p-gold);
}
.vdp-event__label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--p-gold);
  animation: vdp-pulse 1.6s ease-in-out infinite;
}
@keyframes vdp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.vdp-event__title { font-weight: 600; color: var(--p-ink); font-size: 16.5px; }
.vdp-event__when { font-size: 14px; color: var(--p-body); }
.vdp-countdown { display: flex; gap: 10px; margin-left: auto; }
.vdp-countdown__cell {
  min-width: 58px; text-align: center; padding: 8px 6px;
  background: rgba(245, 235, 221, .06); border: 1px solid var(--p-line); border-radius: 10px;
}
.vdp-countdown__num { font-size: 1.25rem; font-weight: 700; color: var(--p-ink); font-variant-numeric: tabular-nums; }
.vdp-countdown__unit { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--p-body); }
@media (max-width: 720px) { .vdp-countdown { margin-left: 0; } }

.vd-premium section { padding: clamp(56px, 8vw, 100px) 0; }
.vd-premium .vd-wrap { max-width: 1180px; }

/* about */
.vdp-about .vd-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
@media (max-width: 820px) { .vdp-about .vd-wrap { grid-template-columns: 1fr; } }
.vdp-about__media { position: relative; }
.vdp-about__media img { border-radius: 22px; }
.vdp-about__media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--p-gold); border-radius: 22px; z-index: -1; opacity: .5;
}

/* specialties */
.vdp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .vdp-cards { grid-template-columns: 1fr; } }
.vdp-card {
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 20px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.vdp-card:hover { transform: translateY(-6px); border-color: rgba(217, 164, 65, .5); }
.vdp-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.vdp-card__body { padding: 22px 24px 26px; }
.vdp-card h3 { font-size: 1.12rem; }
.vdp-card p { font-size: 15px; margin: 0; }

/* gallery — large mosaic */
.vdp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
@media (max-width: 800px) { .vdp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }
.vdp-gallery a { display: block; border-radius: 16px; overflow: hidden; }
.vdp-gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.vdp-gallery a:nth-child(4) { grid-row: span 2; }
.vdp-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.vdp-gallery a:hover img { transform: scale(1.07); filter: brightness(1.1); }

/* news */
.vdp-news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .vdp-news { grid-template-columns: 1fr; } }
.vdp-news article {
  position: relative;
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 18px; padding: 26px;
}
/* stretched link: whole start-page news card is clickable (title + more share one target) */
.vdp-news__more::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.vdp-news time { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--p-gold); }
.vdp-news h3 { font-size: 1.08rem; margin: 10px 0 8px; }
.vdp-news p { font-size: 15px; margin: 0; }
/* start-page news: linked titles + Weiterlesen link */
#wrapwrap .vd-premium .vdp-news h3 a { color: var(--p-ink); text-decoration: none; }
#wrapwrap .vd-premium .vdp-news h3 a:hover { color: var(--p-gold); }
.vdp-news__more { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; letter-spacing: .01em; }
#wrapwrap .vd-premium .vdp-news__more,
#wrapwrap .vd-premium .vdp-news__more:hover { color: var(--p-gold); text-decoration: none; }

/* Aktuelles — listing grid of post cards */
.vdp-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .vdp-posts { grid-template-columns: 1fr; } }
.vdp-post-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 20px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.vdp-post-card:hover { transform: translateY(-6px); border-color: rgba(217, 164, 65, .5); }
/* stretched link: whole listing card clickable — scoped to __more so injected
   own posts (.vdp-post-card--own, no link) and the editor preview get no overlay */
.vdp-post-card__more::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.vdp-post-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.vdp-post-card__body { display: flex; flex-direction: column; padding: 22px 24px 26px; flex: 1; }
.vdp-post-card time { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--p-gold); }
.vdp-post-card h3 { font-size: 1.12rem; margin: 10px 0 8px; }
#wrapwrap .vd-premium .vdp-post-card h3 a { color: var(--p-ink); text-decoration: none; }
#wrapwrap .vd-premium .vdp-post-card h3 a:hover { color: var(--p-gold); }
.vdp-post-card p { font-size: 15px; margin: 0; }
.vdp-post-card__more { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; letter-spacing: .01em; }
#wrapwrap .vd-premium .vdp-post-card__more,
#wrapwrap .vd-premium .vdp-post-card__more:hover { color: var(--p-gold); text-decoration: none; }

/* Aktuelles — post detail hero (full-width image + overlay + meta) */
.vdp-post-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; }
.vdp-post-hero__media { position: absolute; inset: 0; }
.vdp-post-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.vdp-post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 16, 11, .45) 0%, rgba(23, 16, 11, .82) 100%);
}
.vdp-post-hero__inner { position: relative; width: 100%; padding: clamp(32px, 6vw, 64px) 0; }
.vdp-post-hero__date { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--p-gold); margin: 0 0 12px; }
.vdp-post-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0; max-width: 20ch; }

/* Aktuelles — post detail: CTA row + back link */
.vdp-prose__cta { margin-top: 1.6em; }
.vdp-postback { display: inline-block; margin-top: clamp(26px, 4vw, 40px); font-size: 15px; font-weight: 600; }
#wrapwrap .vd-premium .vdp-postback,
#wrapwrap .vd-premium .vdp-postback:hover { color: var(--p-gold); text-decoration: none; }

/* testimonials slider */
.vdp-quotes { background: var(--p-surface); border-block: 1px solid var(--p-line); }
.vdp-slider { position: relative; max-width: 760px; margin-inline: auto; text-align: center; min-height: 190px; }
.vdp-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease; pointer-events: none;
}
.vdp-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.vdp-slide blockquote {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--p-ink); font-weight: 500;
  line-height: 1.5; margin: 0 0 18px; font-style: italic;
}
.vdp-slide cite { font-style: normal; font-size: 14.5px; color: var(--p-gold); }
.vdp-slider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; position: relative; z-index: 1; }
.vdp-slider__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(245, 235, 221, .25); cursor: pointer; transition: background .3s ease, transform .3s ease;
}
.vdp-slider__dots button.is-active { background: var(--p-gold); transform: scale(1.3); }

/* reservation */
.vdp-reserve {
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(217, 164, 65, .16), transparent 70%),
    var(--p-bg);
}
.vdp-reserve .vd-wrap {
  border: 1px solid var(--p-line); border-radius: 26px;
  padding: clamp(34px, 5vw, 64px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 30px;
  background: rgba(34, 24, 18, .6);
}
.vdp-reserve__body { flex: 1 1 380px; }
.vdp-reserve p { margin: 0; max-width: 50ch; }
.vdp-reserve__actions { display: flex; flex-direction: column; gap: 12px; }
.vdp-reserve__phone { text-align: center; font-size: 14px; }

/* seasonal notice */
.vdp-notice {
  background: rgba(217, 123, 79, .12); border: 1px solid rgba(217, 123, 79, .35);
  border-radius: 14px; padding: 14px 20px; font-size: 15px;
  display: flex; gap: 12px; align-items: center; margin-top: 30px;
}
.vdp-notice::before { content: "☀"; font-size: 20px; }

/* hours/contact */
.vdp-info .vd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); }
@media (max-width: 780px) { .vdp-info .vd-wrap { grid-template-columns: 1fr; } }
.vdp-hours { list-style: none; margin: 0; padding: 0; }
.vdp-hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 14px; border-bottom: 1px solid var(--p-line); font-size: 15.5px;
}
.vdp-hours li.is-today {
  background: rgba(217, 164, 65, .14); border-radius: 10px; border-bottom-color: transparent;
  color: var(--p-ink); font-weight: 600;
}
.vdp-hours li.is-today::after { content: "heute"; font-size: 12px; color: var(--p-gold); align-self: center; }

/* header nav — active page marker (gold text + gold dot) */
#wrapwrap .vd-premium .vdp-header nav a.is-active { color: var(--p-gold); }
.vdp-header nav a.is-active { position: relative; }
.vdp-header nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 1px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--p-gold);
}

/* scroll-progress bar pinned to the header's lower edge */
.vdp-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--p-gold); z-index: 3; transition: width .1s linear;
}

/* live band under the hero (daily special + detailed open-status) */
.vdp-live { background: var(--p-surface); border-bottom: 1px solid var(--p-line); }
.vdp-live .vd-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-block: 22px; }
@media (max-width: 720px) { .vdp-live .vd-wrap { grid-template-columns: 1fr; } }
.vdp-live__card {
  display: flex; flex-direction: column; gap: 8px; padding: 18px 22px;
  background: rgba(245, 235, 221, .04); border: 1px solid var(--p-line); border-radius: 16px;
}
.vdp-live__day { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--p-gold); }
.vdp-live__label { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--p-gold); }
/* min-height reserves the line before demo.js fills it — the card must not
   grow when the text arrives (that jump was the reported "glitch") */
.vdp-live__text { color: var(--p-ink); font-weight: 500; font-size: 16px; min-height: 1.55em; }
.vdp-live__card .vd-open { align-self: flex-start; margin-top: 2px; }

/* gallery teaser (3-up) + centered action */
.vdp-center { text-align: center; margin-top: clamp(26px, 4vw, 40px); }
.vdp-gteaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .vdp-gteaser { grid-template-columns: 1fr; } }
.vdp-gteaser img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; }

/* dark page-hero for the sub-pages */
.vdp-page-hero {
  background: radial-gradient(700px 300px at 15% 0%, rgba(217, 164, 65, .12), transparent 70%), var(--p-surface);
  border-bottom: 1px solid var(--p-line); padding: clamp(48px, 7vw, 92px) 0 clamp(30px, 4vw, 52px);
}
.vdp-page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0; }
.vdp-page-hero p { margin: 12px 0 0; color: var(--p-body); font-size: 1.12rem; max-width: 54ch; }

/* menu — parchment leaders on dark, gold prices */
.vdp-menu { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: clamp(32px, 5vw, 54px); }
.vdp-menu__cat h2 { font-size: 1.5rem; }
.vdp-menu__cat-note { color: var(--p-gold); font-size: 14px; letter-spacing: .04em; margin: -4px 0 18px; }
.vdp-dish { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; }
.vdp-dish__name { color: var(--p-ink); font-weight: 500; }
.vdp-dish__dots { flex: 1; border-bottom: 1px dotted rgba(217, 164, 65, .5); transform: translateY(-4px); }
.vdp-dish__price { color: var(--p-gold); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.vdp-dish__desc { color: var(--p-body); font-size: 14.5px; margin: -4px 0 6px; }
.vdp-note { text-align: center; color: #8A7963; font-size: 13.5px; margin: 6px 0 0; }

/* filterable gallery */
.vdp-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.vdp-filter button {
  padding: 8px 20px; border-radius: 999px; border: 1.5px solid var(--p-line);
  background: transparent; color: var(--p-ink); font-family: var(--v-font);
  font-size: 14.5px; font-weight: 500; cursor: pointer; transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.vdp-filter button:hover { border-color: var(--p-gold); color: var(--p-gold); }
.vdp-filter button.is-active { background: var(--p-gold); border-color: var(--p-gold); color: #17100B; }
.vdp-filtergrid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 14px; }
@media (max-width: 800px) { .vdp-filtergrid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
.vdp-filtergrid a { display: block; border-radius: 16px; overflow: hidden; transition: opacity .35s ease, transform .35s ease; }
.vdp-filtergrid a.is-hidden { display: none; }
.vdp-filtergrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.vdp-filtergrid a:hover img { transform: scale(1.07); filter: brightness(1.1); }

/* booking widget + confirmation */
.vdp-booking-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
@media (max-width: 860px) { .vdp-booking-grid { grid-template-columns: 1fr; } }
.vdp-booking, .vdp-booking__confirm, .vdp-sidecard {
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 22px; padding: clamp(24px, 3vw, 34px);
}
.vdp-booking__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.vdp-booking label { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p-gold); }
.vdp-booking input[type="text"], .vdp-booking input[type="date"], .vdp-booking select {
  background: var(--p-bg); border: 1px solid var(--p-line); border-radius: 12px;
  padding: 12px 14px; color: var(--p-ink); font-family: var(--v-font); font-size: 15.5px; width: 100%;
}
.vdp-booking input:focus, .vdp-booking select:focus { outline: none; border-color: var(--p-gold); }
.vdp-booking select:disabled { opacity: .5; }
.vdp-booking input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(3) hue-rotate(5deg); cursor: pointer; }
.vdp-stepper {
  display: inline-flex; align-items: center; border: 1px solid var(--p-line);
  border-radius: 12px; overflow: hidden; background: var(--p-bg); width: max-content;
}
.vdp-stepper button {
  width: 46px; height: 46px; border: 0; background: transparent; color: var(--p-gold);
  font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s ease;
}
.vdp-stepper button:hover { background: rgba(217, 164, 65, .15); }
.vdp-stepper input {
  width: 56px; text-align: center; border: 0; background: transparent;
  color: var(--p-ink); font-size: 16px; font-weight: 600; font-family: var(--v-font); -moz-appearance: textfield;
}
.vdp-stepper input::-webkit-outer-spin-button, .vdp-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vdp-booking__notice {
  background: rgba(217, 123, 79, .12); border: 1px solid rgba(217, 123, 79, .35);
  border-radius: 12px; padding: 12px 16px; font-size: 14.5px; color: var(--p-ink); margin-bottom: 16px;
}
.vdp-booking__group {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  padding: 16px; background: rgba(217, 164, 65, .08); border: 1px solid rgba(217, 164, 65, .3); border-radius: 14px;
}
.vdp-booking__group p { margin: 0; color: var(--p-ink); font-weight: 500; }
#wrapwrap .vd-premium button.vdp-btn { border: 0; cursor: pointer; font-family: var(--v-font); }
.vdp-booking [data-booking-submit] { width: 100%; margin-top: 4px; }
.vdp-booking__disclaimer { font-size: 12.5px; color: #8A7963; margin: 14px 0 0; }
.vdp-booking__confirm { text-align: center; animation: vdp-pop .5s var(--v-ease) both; }
@keyframes vdp-pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .vdp-booking__confirm { animation: none; } }
.vdp-check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: rgba(217, 164, 65, .15); border: 2px solid var(--p-gold); color: var(--p-gold);
  display: grid; place-items: center; font-size: 30px; line-height: 1;
}
.vdp-confirm__summary { color: var(--p-gold); font-weight: 600; margin: 6px 0 14px; }
#wrapwrap .vd-premium .vdp-booking__reset { display: inline-block; margin-top: 12px; font-size: 14px; color: var(--p-body); text-decoration: underline; }
#wrapwrap .vd-premium .vdp-booking__reset:hover { color: var(--p-gold); }

/* reservation side card (contact + hours) */
.vdp-sidecard h3 { font-size: 1.1rem; }
.vdp-sidecard h3:not(:first-child) { margin-top: 26px; }
.vdp-sidecard .vd-open { margin-top: 10px; }
.vdp-sidecard .vdp-hours { margin-top: 8px; }

/* back-to-top button (fixed, bottom-left) */
.vdp-backtop {
  position: fixed; left: 22px; bottom: 22px; z-index: 1400;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--p-line);
  background: rgba(34, 24, 18, .9); color: var(--p-gold); font-size: 20px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, color .2s ease;
}
.vdp-backtop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.vdp-backtop:hover { background: var(--p-gold); color: #17100B; }

/* footer — 3 columns, dark luxe */
.vdp-footer { border-top: 1px solid var(--p-line); padding: 54px 0 62px; font-size: 14.5px; color: #8A7963; }
.vdp-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(24px, 4vw, 50px); }
@media (max-width: 760px) { .vdp-footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.vdp-footer h3 { font-size: 1.05rem; color: var(--p-ink); margin: 0 0 12px; }
.vdp-footer ul { list-style: none; margin: 0; padding: 0; }
.vdp-footer li { margin: 5px 0; }
.vdp-footer__legal {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  border-top: 1px solid var(--p-line); margin-top: 36px; padding-top: 22px;
}
.vdp-footer__legal p { margin: 0; }

/* ==============================================================
   Aktuelles self-service (Premium) — the owner writes posts:
   slim explainer band on the listing, the "Beitrag schreiben"
   editor (template chips + thumb picker + live preview), the
   confirmation, the "Ihr Demo-Beitrag" badge on injected cards,
   and the post-page self-service hint. Dark inputs match the
   booking form; single-column < 900px; reduced-motion respected
   (the global .v-a11y-noanim * rule also halts the confirm pop).
   ============================================================== */

/* slim explainer band under the listing page-hero */
.vdp-selfservice { border-bottom: 1px solid var(--p-line); background: rgba(217, 164, 65, .05); }
.vdp-selfservice .vd-wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 18px;
}
.vdp-selfservice p { margin: 0; color: var(--p-body); font-size: 15px; max-width: 62ch; }

/* three numbered explainer steps */
.vdp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: clamp(30px, 4vw, 48px); }
@media (max-width: 760px) { .vdp-steps { grid-template-columns: 1fr; } }
.vdp-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 16px; padding: 20px 22px;
}
.vdp-step__num {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(217, 164, 65, .15); border: 1px solid var(--p-gold); color: var(--p-gold);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
}
.vdp-step h3 { font-size: 1.02rem; margin: 2px 0 4px; }
.vdp-step p { font-size: 14.5px; margin: 0; color: var(--p-body); }

/* editor — form left, live preview right */
.vdp-editor { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.vdp-editor[hidden] { display: none; }
@media (max-width: 900px) { .vdp-editor { grid-template-columns: 1fr; } }
.vdp-editor__form {
  background: var(--p-surface); border: 1px solid var(--p-line); border-radius: 22px; padding: clamp(24px, 3vw, 34px);
}
.vdp-editor__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.vdp-editor__form label { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p-gold); }
.vdp-editor__form input[type="text"], .vdp-editor__form textarea {
  background: var(--p-bg); border: 1px solid var(--p-line); border-radius: 12px;
  padding: 12px 14px; color: var(--p-ink); font-family: var(--v-font); font-size: 15.5px; width: 100%;
}
.vdp-editor__form textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.vdp-editor__form input:focus, .vdp-editor__form textarea:focus { outline: none; border-color: var(--p-gold); }

/* template quick-start chips */
.vdp-editor__templates { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 22px; }
.vdp-editor__tlabel { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p-gold); }
.vdp-tchip {
  padding: 7px 15px; border-radius: 999px; border: 1.5px solid var(--p-line);
  background: transparent; color: var(--p-ink); font-family: var(--v-font);
  font-size: 13.5px; font-weight: 500; cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.vdp-tchip:hover { border-color: var(--p-gold); color: var(--p-gold); background: rgba(217, 164, 65, .08); }
.vdp-tchip:focus-visible { outline: 3px solid var(--v-blue); outline-offset: 2px; }

/* image thumb picker — selectable, gold ring when active */
.vdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 480px) { .vdp-thumbs { grid-template-columns: repeat(2, 1fr); } }
.vdp-thumb { position: relative; cursor: pointer; display: block; border-radius: 12px; }
.vdp-thumb input { position: absolute; opacity: 0; width: 0; height: 0; }
.vdp-thumb img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  border: 2px solid transparent; border-radius: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vdp-thumb:hover img { transform: scale(1.04); }
.vdp-thumb input:checked + img { border-color: var(--p-gold); box-shadow: 0 0 0 3px rgba(217, 164, 65, .35); }
.vdp-thumb input:focus-visible + img { outline: 3px solid var(--v-blue); outline-offset: 2px; }

.vdp-editor__form [data-post-submit] { width: 100%; margin-top: 6px; }
.vdp-editor__note { font-size: 12.5px; color: #8A7963; margin: 14px 0 0; }

/* live preview column */
.vdp-editor__preview { position: sticky; top: 100px; }
.vdp-editor__plabel { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--p-gold); margin: 0 0 12px; }
.vdp-editor__preview .vdp-post-card { max-width: 380px; }
.vdp-editor__preview .vdp-post-card:hover { transform: none; border-color: var(--p-line); }

/* confirmation (reuses .vdp-check + the vdp-pop keyframes) */
.vdp-editor__confirm {
  text-align: center; background: var(--p-surface); border: 1px solid var(--p-line);
  border-radius: 22px; padding: clamp(30px, 4vw, 48px); max-width: 560px; margin-inline: auto;
  animation: vdp-pop .5s var(--v-ease) both;
}
.vdp-editor__confirm[hidden] { display: none; }
.vdp-editor__confirm h2 { font-size: 1.6rem; margin: 0 0 8px; }
.vdp-editor__confirm > p { margin: 0 auto; max-width: 44ch; color: var(--p-body); }
.vdp-editor__confirm-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; margin-top: 22px; }
#wrapwrap .vd-premium .vdp-editor__reset { font-size: 14px; color: var(--p-body); text-decoration: underline; }
#wrapwrap .vd-premium .vdp-editor__reset:hover { color: var(--p-gold); }
@media (prefers-reduced-motion: reduce) { .vdp-editor__confirm { animation: none; } }

/* "Ihr Demo-Beitrag" badge on injected cards (replaces the Weiterlesen link) */
.vdp-post-card--own { border-color: rgba(217, 164, 65, .4); }
.vdp-post-card__badge {
  display: inline-block; align-self: flex-start; margin-top: 16px;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--p-gold); background: rgba(217, 164, 65, .12); border: 1px solid rgba(217, 164, 65, .4);
}

/* self-service hint under a post's back link */
.vdp-selfhint { margin: 18px 0 0; font-size: 14px; color: #8A7963; }
#wrapwrap .vd-premium .vdp-selfhint a { color: var(--p-gold); text-decoration: none; }
#wrapwrap .vd-premium .vdp-selfhint a:hover { text-decoration: underline; }

/* ==============================================================
   Legal / prose blocks for the demo tiers (fake Impressum +
   Datenschutz). Readable measure, tier-appropriate heading sizes.
   ============================================================== */
.vdb-prose, .vdm-prose, .vdp-prose { max-width: 720px; }
.vdb-prose h1, .vdm-prose h1, .vdp-prose h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.vdb-prose h2, .vdm-prose h2, .vdp-prose h2 { font-size: 1.3rem; margin-top: 1.7em; }
.vdb-prose ul, .vdm-prose ul, .vdp-prose ul { padding-left: 1.2em; }
.vdb-prose li, .vdm-prose li, .vdp-prose li { margin: .3em 0; }
.vdb-prose p, .vdm-prose p, .vdp-prose p { margin: 0 0 1em; }
/* premium sits on a dark scroll-margin so #datenschutz clears the sticky header */
.vdm-prose [id], .vdp-prose [id] { scroll-margin-top: 120px; }

/* ==============================================================
   Demo language switcher — DE/EN pill per tier + shared popover.
   The pill sits in each demo footer's legal row; "EN" opens a
   dismissible toast (built by demo.js) instead of navigating.
   ============================================================== */

/* shared segmented-pill shape */
.vdb-lang, .vdm-lang, .vdp-lang {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 3px;
}
.vdb-lang__seg, .vdm-lang__seg, .vdp-lang__seg {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; padding: 5px 12px; border-radius: 999px; line-height: 1;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  transition: background .2s ease, color .2s ease;
}

/* Basic — warm café colours on the dark footer */
.vdb-lang { border: 1px solid rgba(255, 255, 255, .22); }
#wrapwrap .vd-basic .vdb-lang__seg { color: #C9BEB2; }
#wrapwrap .vd-basic .vdb-lang__seg:hover { color: #fff; }
#wrapwrap .vd-basic .vdb-lang__seg.is-active,
#wrapwrap .vd-basic .vdb-lang__seg.is-active:hover { background: var(--b-accent); color: #fff; }

/* Modern — terracotta on the dark footer */
.vdm-lang { border: 1px solid rgba(255, 255, 255, .22); }
#wrapwrap .vd-modern .vdm-lang__seg { color: #C9BEB2; }
#wrapwrap .vd-modern .vdm-lang__seg:hover { color: #fff; }
#wrapwrap .vd-modern .vdm-lang__seg.is-active,
#wrapwrap .vd-modern .vdm-lang__seg.is-active:hover { background: var(--m-accent); color: #fff; }

/* Premium — gold on dark */
.vdp-lang { border: 1px solid var(--p-line); }
#wrapwrap .vd-premium .vdp-lang__seg { color: var(--p-body); }
#wrapwrap .vd-premium .vdp-lang__seg:hover { color: var(--p-ink); }
#wrapwrap .vd-premium .vdp-lang__seg.is-active,
#wrapwrap .vd-premium .vdp-lang__seg.is-active:hover { background: var(--p-gold); color: #17100B; }

/* round accessibility button in each demo footer's legal row — opens the same
   shared a11y drawer ([data-a11y-open]) now that the floating fab is gone.
   Shared circle shape; per-tier colours to match each footer. */
.vd-a11y-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0; border-radius: 50%;
  background: transparent; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.vd-a11y-btn svg { width: 19px; height: 19px; display: block; }
.vd-a11y-btn:focus-visible { outline: 3px solid var(--v-blue); outline-offset: 2px; }

/* Basic — warm café on the dark footer */
#wrapwrap .vd-basic .vd-a11y-btn { border: 1px solid rgba(255, 255, 255, .22); color: #C9BEB2; }
#wrapwrap .vd-basic .vd-a11y-btn:hover { background: var(--b-accent); border-color: var(--b-accent); color: #fff; }
/* Modern — terracotta on the dark footer */
#wrapwrap .vd-modern .vd-a11y-btn { border: 1px solid rgba(255, 255, 255, .22); color: #C9BEB2; }
#wrapwrap .vd-modern .vd-a11y-btn:hover { background: var(--m-accent); border-color: var(--m-accent); color: #fff; }
/* Premium — gold on dark */
#wrapwrap .vd-premium .vd-a11y-btn { border: 1px solid var(--p-line); color: var(--p-body); }
#wrapwrap .vd-premium .vd-a11y-btn:hover { background: var(--p-gold); border-color: var(--p-gold); color: #17100B; }

/* popover / toast (appended to <body>, positioned by JS) */
.vd-langpop {
  position: fixed; z-index: 2100; max-width: 300px;
  padding: 14px 40px 14px 16px; border-radius: 14px;
  font-family: var(--v-font); font-size: 13.5px; line-height: 1.5;
  box-shadow: 0 20px 48px -18px rgba(10, 8, 6, .55);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.vd-langpop.is-open { opacity: 1; transform: none; }
.vd-langpop p { margin: 0; }
.vd-langpop__close {
  position: absolute; top: 6px; right: 8px;
  background: none; border: 0; cursor: pointer;
  font-size: 20px; line-height: 1; padding: 2px 6px;
}
.vd-langpop--basic {
  background: #fff; color: var(--b-body); border: 1px solid var(--b-line);
}
.vd-langpop--basic .vd-langpop__close { color: var(--b-muted); }
.vd-langpop--modern {
  background: var(--m-card); color: var(--m-body); border: 1px solid var(--m-line);
}
.vd-langpop--modern .vd-langpop__close { color: var(--m-body); }
.vd-langpop--premium {
  background: var(--p-surface); color: var(--p-body); border: 1px solid var(--p-line);
}
.vd-langpop--premium .vd-langpop__close { color: var(--p-gold); }

@media (prefers-reduced-motion: reduce) {
  .vd-langpop { transition: none; transform: none; }
}

/* ==============================================================
   Mobile navigation (customer feedback 2026-07-22): burger button
   + slide-in drawer for every demo tier, icon-only phone pill, and
   a slim live open-status strip in the Modern/Premium headers.
   The drawer/backdrop live OUTSIDE the <header> (the header's
   backdrop-filter makes it a containing block for fixed children,
   which would otherwise clip the drawer to the header box).
   ============================================================== */

/* --- burger button: hidden on desktop, shown per tier below --- */
.vd-nav-toggle {
  display: none; flex: none;
  width: 42px; height: 42px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px; background: transparent; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.vd-nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; }
.vd-nav-toggle:focus-visible { outline: 3px solid var(--v-blue); outline-offset: 2px; }

.vd-nav-toggle--basic { border: 1px solid var(--b-line); color: var(--b-ink); }
.vd-nav-toggle--basic:hover { background: rgba(196, 100, 59, .12); color: var(--b-accent); }

.vd-nav-toggle--modern { border: 1px solid var(--m-line); color: var(--m-ink); }
.vd-nav-toggle--modern:hover { background: rgba(196, 100, 59, .12); color: var(--m-accent); }
/* over the transparent hero the lines are white; solid again once scrolled */
.vdm-header--clear .vd-nav-toggle--modern { border-color: rgba(255, 255, 255, .5); color: #fff; }
.vdm-header--clear .vd-nav-toggle--modern:hover { background: rgba(255, 255, 255, .18); color: #fff; }
.vdm-header--clear.is-solid .vd-nav-toggle--modern { border-color: var(--m-line); color: var(--m-ink); }

.vd-nav-toggle--premium { border: 1px solid var(--p-line); color: var(--p-gold); }
.vd-nav-toggle--premium:hover { border-color: var(--p-gold); background: rgba(217, 164, 65, .12); }

/* --- brand block is now a link to the tier start page --- */
a.vdb-header__brand, a.vdm-header__brand { text-decoration: none; transition: opacity .2s ease; }
#wrapwrap .vd-basic a.vdb-header__brand:hover .vdb-header__name { color: var(--b-accent); }
a.vdm-header__brand:hover { opacity: .78; }
#wrapwrap .vd-premium .vdp-header__brandlink { color: var(--p-ink); }
#wrapwrap .vd-premium .vdp-header__brandlink:hover { color: var(--p-gold); }

/* --- slide-in drawer + backdrop (shared shell) --- */
.vd-drawer-backdrop {
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(10, 8, 6, .5);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
body.vd-nav-open .vd-drawer-backdrop { opacity: 1; pointer-events: auto; }
body.vd-nav-open { overflow: hidden; }

.vd-drawer {
  position: fixed; top: 0; right: 0; z-index: 2200;
  display: flex; flex-direction: column;
  width: min(360px, 84vw); height: 100vh; height: 100dvh;
  padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%); transition: transform .32s var(--v-ease, ease);
  box-shadow: -18px 0 50px -24px rgba(0, 0, 0, .5);
}
body.vd-nav-open .vd-drawer { transform: none; }
.vd-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vd-drawer__head p { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.vd-drawer__close { background: none; border: 0; cursor: pointer; font-size: 30px; line-height: 1; padding: 0 4px; }
.vd-drawer nav { display: flex; flex-direction: column; gap: 2px; }
.vd-drawer nav a { padding: 13px 14px; border-radius: 12px; font-size: 17px; font-weight: 600; }
.vd-drawer__phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 16px; padding: 13px 20px; border-radius: 999px; font-weight: 600; font-size: 15px;
}
.vd-drawer__phone svg { width: 16px; height: 16px; flex: none; }
.vd-drawer .vdp-btn { margin-top: 16px; }
@media (prefers-reduced-motion: reduce) {
  .vd-drawer { transition: none; }
  .vd-drawer-backdrop { transition: none; }
}

/* Basic drawer — warm cream panel, serif nav */
.vd-drawer--basic { background: var(--b-bg); color: var(--b-body); }
.vd-drawer--basic .vd-drawer__head p { color: var(--b-muted); }
.vd-drawer--basic .vd-drawer__close { color: var(--b-ink); }
#wrapwrap .vd-basic .vd-drawer nav a { color: var(--b-ink); font-family: var(--v-serif); }
#wrapwrap .vd-basic .vd-drawer nav a:hover { background: rgba(196, 100, 59, .12); color: var(--b-accent); }
#wrapwrap .vd-basic .vd-drawer nav a.is-active { background: var(--b-accent); color: #fff; }
#wrapwrap .vd-basic .vd-drawer__phone,
#wrapwrap .vd-basic .vd-drawer__phone:hover { background: var(--b-accent); color: #fff; }

/* Modern drawer — cream/terracotta */
.vd-drawer--modern { background: var(--m-bg); color: var(--m-body); }
.vd-drawer--modern .vd-drawer__head p { color: #8A7A66; }
.vd-drawer--modern .vd-drawer__close { color: var(--m-ink); }
#wrapwrap .vd-modern .vd-drawer nav a { color: var(--m-ink); }
#wrapwrap .vd-modern .vd-drawer nav a:hover { background: rgba(196, 100, 59, .12); color: var(--m-accent); }
#wrapwrap .vd-modern .vd-drawer nav a.is-active { background: var(--m-accent); color: #fff; }
#wrapwrap .vd-modern .vd-drawer__phone,
#wrapwrap .vd-modern .vd-drawer__phone:hover { background: var(--m-accent); color: #fff; }

/* Premium drawer — dark surface + gold */
.vd-drawer--premium { background: var(--p-surface); color: var(--p-body); border-left: 1px solid var(--p-line); }
.vd-drawer--premium .vd-drawer__head p { color: var(--p-gold); }
.vd-drawer--premium .vd-drawer__close { color: var(--p-ink); }
#wrapwrap .vd-premium .vd-drawer nav a { color: var(--p-ink); }
#wrapwrap .vd-premium .vd-drawer nav a:hover { color: var(--p-gold); }
#wrapwrap .vd-premium .vd-drawer nav a.is-active { color: var(--p-gold); background: rgba(217, 164, 65, .12); }

/* --- live open-status strip in the header (Modern + Premium) --- */
.vd-header-status { display: none; }

/* --- Basic + Modern: ≤880px = burger in, phone pill icon-only, status --- */
@media (max-width: 880px) {
  .vd-nav-toggle--basic, .vd-nav-toggle--modern { display: inline-flex; }
  /* transparent header state: on mobile the photo behind the bar is often
     light (lamps/wall) — give the clear header a translucent dark tint so
     the white brand/nav stays readable (drawer is a sibling, so this
     backdrop-filter cannot trap it) */
  .vdm-header--clear:not(.is-solid) {
    background: rgba(30, 18, 8, .38);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  }
  .vdb-header__phone span, .vdm-header__phone span { display: none; }
  .vdb-header__phone, .vdm-header__phone {
    flex: none; width: 40px; min-width: 40px; height: 40px;
    padding: 0; gap: 0; justify-content: center; margin-left: auto;
  }
  .vdb-header__phone svg, .vdm-header__phone svg { width: 17px; height: 17px; }
  .vdm-header .vd-header-status {
    display: flex; justify-content: center; align-items: center;
    padding: 7px 14px; border-top: 1px solid var(--m-line); background: rgba(250, 246, 239, .95);
  }
  .vdm-header .vd-header-status .vd-open {
    background: transparent; color: var(--m-ink); padding: 3px 8px; font-size: 13px;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .vdm-header--clear .vd-header-status {
    background: rgba(30, 18, 8, .55); border-top-color: rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .vdm-header--clear .vd-header-status .vd-open { color: #fff; }
  .vdm-header--clear.is-solid .vd-header-status {
    background: rgba(250, 246, 239, .95); border-top-color: var(--m-line);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .vdm-header--clear.is-solid .vd-header-status .vd-open { color: var(--m-ink); }
}

/* --- Premium: ≤860px = burger in, drawer holds the reserve CTA, status --- */
@media (max-width: 860px) {
  .vd-nav-toggle--premium { display: inline-flex; margin-left: auto; }
  /* reserve CTA lives in the drawer on mobile to keep the bar uncluttered */
  .vdp-header .vd-wrap > .vdp-btn { display: none; }
  .vdp-header .vd-header-status {
    display: flex; justify-content: center; align-items: center;
    padding: 7px 14px; border-top: 1px solid var(--p-line); background: rgba(23, 16, 11, .88);
  }
  .vdp-header .vd-header-status .vd-open {
    background: transparent; color: var(--p-ink); padding: 3px 8px; font-size: 13px;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}
