    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:      #F4F4F2;
      --black:      #1C1C1E;
      --accent:     #8B2E1A;
      --grey-light: #E5E5E2;
      --grey-mid:   #D8D8D5;
      --grey-text:  #888888;
      --off-white:  rgba(255,255,255,0.82);
      --dim-white:  rgba(255,255,255,0.52);
      --hero-bg:    #F4F4F2;

      /* SPACING */
      --space-xs:   8px;
      --space-sm:   16px;
      --space-md:   24px;
      --space-lg:   48px;
      --space-xl:   88px;
      --space-2xl:  120px;

      /* BUTTON SYSTEM */
      --btn-height:     48px;
      --btn-radius:     100px;
      --btn-padding:    0 28px;
      --btn-font-size:  12px;
      --btn-weight:     600;
      --btn-tracking:   0.12em;

      /* BORDER RADIUS */
      --radius-sm:   4px;
      --radius-md:   8px;
      --radius-pill: 100px;

      /* Z-INDEX LAYERS */
      --z-base:    0;
      --z-float:   10;
      --z-nav:     100;
      --z-overlay: 200;
    }


    body {
      font-family: 'Be Vietnam Pro', sans-serif;
      background: #141412;
      color: var(--black);
      overflow-x: hidden;
    }


    /* ============================================================
       NAVBAR — approved header-v4 (immer weißer Balken)
       ============================================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 80px;
      display: flex; align-items: center;
      padding: 0 48px;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.07);
      will-change: transform, opacity;
    }

    .navbar__logo {
      display: flex; align-items: center;
      gap: 13px; text-decoration: none; flex-shrink: 0;
    }

    .navbar__logo-img { width: 64px; height: 64px; object-fit: contain; }

    .navbar__logo-wordmark { display: flex; flex-direction: column; line-height: 1; }

    .navbar__logo-name {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 18px; font-weight: 800;
      letter-spacing: -0.01em; color: var(--black); line-height: 1;
    }

    .navbar__logo-sub {
      font-size: 10px; font-weight: 400;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--grey-text); margin-top: 4px;
    }

    .navbar__right { display: flex; align-items: center; margin-left: auto; }
    .navbar__nav   { display: flex; align-items: center; gap: 2px; }

    .navbar__link {
      font-size: 11.5px; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--black); text-decoration: none;
      padding: 8px 13px; transition: color 0.2s; position: relative;
    }

    .navbar__link::after {
      content: ''; position: absolute;
      bottom: 4px; left: 13px; right: 13px;
      height: 1px; background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s ease;
    }

    .navbar__link:hover { color: var(--accent); }
    .navbar__link:hover::after { transform: scaleX(1); }

    .navbar__mobile-trigger {
      display: none; align-items: center; justify-content: center;
      margin-left: auto; width: 44px; height: 44px;
      background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 0;
    }

    .navbar__mobile-trigger .line {
      width: 22px; height: 1.5px;
      background: var(--black); border-radius: 2px; display: block;
    }

    /* --- Reserve Button (btn-17) --- */
    .btn-reserve, .btn-reserve *, .btn-reserve::after, .btn-reserve::before {
      border: 0 solid; box-sizing: border-box;
    }

    .btn-reserve {
      -webkit-tap-highlight-color: transparent;
      background-color: var(--black); color: #fff;
      cursor: pointer; font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 600; line-height: 1;
      margin-left: 14px;
      -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
      text-transform: uppercase; letter-spacing: 0.12em;
      text-decoration: none; display: inline-flex; align-items: center;
      border-radius: 99rem; border: 1.5px solid var(--black);
      padding: 0 20px; height: 40px;
      position: relative; overflow: hidden; z-index: 0; will-change: transform;
    }

    .btn-reserve .text-container {
      display: block; overflow: hidden; position: relative; mix-blend-mode: difference;
    }

    .btn-reserve .text { display: block; position: relative; }
    .btn-reserve:hover .text { animation: btn-move-up 0.3s forwards; }

    @keyframes btn-move-up {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(80%); }
      51%  { transform: translateY(-80%); }
      100% { transform: translateY(0); }
    }

    .btn-reserve::before, .btn-reserve::after {
      --skew: 0.2; background: #fff; content: "";
      display: block; height: 102%;
      left: calc(-50% - 50% * var(--skew));
      pointer-events: none; position: absolute; top: -104%;
      transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
      transition: transform 0.2s ease; width: 100%;
    }

    .btn-reserve::after {
      --progress: 0%; left: calc(50% + 50% * var(--skew)); top: 102%; z-index: -1;
    }

    .btn-reserve:hover::before { --progress: 100%; }
    .btn-reserve:hover::after  { --progress: -102%; }

    /* --- Language Dropdown --- */
    .lang-dropdown {
      position: relative; margin-left: 24px; padding-left: 24px;
      border-left: 1px solid var(--grey-mid);
    }

    .lang-toggle {
      display: flex; align-items: center; gap: 6px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--black); background: none; border: none;
      cursor: pointer; padding: 4px 0; min-height: 44px; user-select: none;
    }

    .lang-toggle__chevron {
      width: 8px; height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: 0.5; transition: transform 0.2s ease, opacity 0.2s; flex-shrink: 0;
    }

    .lang-dropdown.is-open .lang-toggle__chevron {
      transform: rotate(-135deg) translateY(-2px); opacity: 0.8;
    }

    .lang-menu {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--white); border: 1px solid var(--grey-mid);
      border-radius: 3px; padding: 6px 0; min-width: 72px;
      opacity: 0; pointer-events: none; transform: translateY(-6px);
      transition: opacity 0.18s ease, transform 0.18s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .lang-dropdown.is-open .lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

    .lang-option {
      display: flex; align-items: center; width: 100%; padding: 10px 18px;
      font-family: 'Be Vietnam Pro', sans-serif; font-size: 11px; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--grey-text); background: none; border: none;
      cursor: pointer; text-align: left; transition: color 0.15s; min-height: 44px;
    }

    .lang-option:hover { color: var(--black); }
    .lang-option.active { color: var(--black); font-weight: 500; }

    /* --- Floating Hamburger --- */
    .float-btn {
      position: fixed; top: 18px; right: 24px; z-index: 200;
      width: 52px; height: 52px; background: var(--black);
      border-radius: 50%; border: none; cursor: pointer;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 5px;
      opacity: 0; pointer-events: none;
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
      transition: background 0.2s; will-change: transform, opacity;
    }

    .float-btn:hover { background: var(--accent); }

    .float-btn__line {
      width: 20px; height: 1.5px; background: var(--white); border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .float-btn.is-open .float-btn__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .float-btn.is-open .float-btn__line:nth-child(2) { opacity: 0; }
    .float-btn.is-open .float-btn__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* --- Nav Backdrop + Popup --- */
    .nav-backdrop {
      position: fixed; inset: 0; z-index: 150;
      background: rgba(10,10,10,0.6); backdrop-filter: blur(8px);
      opacity: 0; pointer-events: none;
    }

    .menu-popup {
      position: fixed; top: 50%; left: 50%; z-index: 160;
      transform: translate(-50%, -50%) scale(0.92);
      background: var(--white); padding: 56px 68px 48px;
      width: min(460px, 90vw);
      opacity: 0; pointer-events: none; border-radius: 3px;
      will-change: transform, opacity;
    }

    .menu-popup__link {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 38px; font-weight: 800;
      color: var(--black); text-decoration: none;
      padding: 4px 0; line-height: 1.1; display: block;
      letter-spacing: -0.03em; transition: color 0.2s;
      opacity: 0; transform: translateY(20px);
    }

    .menu-popup__link:hover { color: var(--accent); }
    .menu-popup__link--reserve { font-style: italic; letter-spacing: -0.02em; }

    .menu-popup__footer {
      margin-top: 36px; padding-top: 24px;
      border-top: 1px solid var(--grey-mid);
      display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }

    .menu-popup__contact-btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--black); text-decoration: none;
      border: 1.5px solid rgba(28,28,30,0.3); border-radius: 99rem;
      height: 48px; padding: 0 24px;
      transition: border-color 0.25s, color 0.25s;
    }

    .menu-popup__contact-btn:hover { border-color: var(--black); }

    .menu-popup__lang-dropdown { position: relative; }

    .menu-popup__lang-toggle {
      display: flex; align-items: center; gap: 6px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--black); background: none; border: none;
      cursor: pointer; padding: 4px 0; min-height: 44px;
    }

    .menu-popup__lang-menu {
      position: absolute; bottom: calc(100% + 8px); left: 0;
      background: var(--white); border: 1px solid var(--grey-mid);
      border-radius: 3px; padding: 6px 0; min-width: 72px;
      opacity: 0; pointer-events: none; transform: translateY(4px);
      transition: opacity 0.18s ease, transform 0.18s ease;
      box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
    }

    .menu-popup__lang-dropdown.is-open .menu-popup__lang-menu {
      opacity: 1; pointer-events: auto; transform: translateY(0);
    }


    /* ============================================================
       HERO — Fixed Background Architektur
       ============================================================ */

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      isolation: isolate;
    }

    /* BG Foto: absolute, full-bleed innerhalb Hero */
    .hero__photo-bg {
      position: absolute; inset: 0;
      z-index: 1; pointer-events: none;
      background: #0d0d0b;
    }
    .hero__bg-img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center center;
      display: block;
    }

    /* Scrim: links dunkel, rechts offen */
    .hero__scrim {
      position: absolute; inset: 0;
      z-index: 2; pointer-events: none;
      background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        linear-gradient(
          to right,
          rgba(0,0,0,0.55) 0%,
          rgba(0,0,0,0.20) 50%,
          rgba(0,0,0,0)   100%
        );
    }

    .hero__content-wrap {
      position: absolute;
      top: 50%;
      left: 88px;
      z-index: 3;
      transform: translateY(-50%);
    }

    .hero__content {
      display: flex; flex-direction: column; gap: 20px;
      max-width: 560px;
    }


    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

    .hero-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3.8rem, 8.5vw, 11rem);
      font-weight: 600;
      line-height: 0.92;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-top: 2px;
    }

    .hero-title em { font-style: normal; color: var(--white); }

    .hero-accent-rule {
      width: 52px; height: 2px;
      background: var(--accent); border: none; margin: 0; flex-shrink: 0;
    }

    .hero-sub {
      font-size: 16px; font-weight: 300;
      color: rgba(255,255,255,0.68);
      line-height: 1.85; max-width: 360px; letter-spacing: 0.015em;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 100px; padding: 10px 22px;
      font-size: 13px; font-weight: 400;
      letter-spacing: 0.04em; color: rgba(255,255,255,0.55);
      width: fit-content;
    }

    .hero-badge__dot {
      width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
      transition: background 0.3s;
    }

    .hero-badge__dot--open   { background: #4CAF50; box-shadow: 0 0 6px rgba(76,175,80,0.5); }
    .hero-badge__dot--closed { background: rgba(255,255,255,0.25); }

    .hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

    /* Primär — weißer Pill (btn-17 Stil invertiert, kein mix-blend-mode Bug) */
    .btn-cta, .btn-cta *, .btn-cta::before, .btn-cta::after {
      border: 0 solid; box-sizing: border-box;
    }

    .btn-cta {
      -webkit-tap-highlight-color: transparent;
      background-color: var(--white); color: var(--black);
      cursor: pointer; font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600; line-height: 1;
      -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
      text-transform: uppercase; letter-spacing: 0.12em;
      text-decoration: none; display: inline-flex; align-items: center;
      height: 48px;
      border-radius: 99rem; border: 1.5px solid var(--white);
      padding: 0 28px;
      position: relative; overflow: hidden; z-index: 0;
      transition: color 0.08s 0.07s;
    }

    .btn-cta:hover { color: var(--white); }

    .btn-cta .text-container { display: block; overflow: hidden; position: relative; }
    .btn-cta .text { display: block; position: relative; }
    .btn-cta:hover .text { animation: btn-move-up 0.3s forwards; }

    .btn-cta::before, .btn-cta::after {
      --skew: 0.2; background: var(--accent); content: "";
      display: block; height: 102%;
      left: calc(-50% - 50% * var(--skew));
      pointer-events: none; position: absolute; top: -104%;
      transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
      transition: transform 0.2s ease; width: 100%;
    }

    .btn-cta::after {
      --progress: 0%; left: calc(50% + 50% * var(--skew)); top: 102%; z-index: -1;
    }

    .btn-cta:hover::before { --progress: 100%; }
    .btn-cta:hover::after  { --progress: -102%; }

    /* Sekundär — Ghost Outline */
    .btn-ghost {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.75); text-decoration: none;
      display: inline-flex; align-items: center; height: 48px;
      border-radius: 99rem; border: 1.5px solid rgba(255,255,255,0.45);
      padding: 0 28px;
      transition: border-color 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
                  color 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.8); color: var(--white);
    }

    /* 7. Google Rating Strip */
    .hero-rating {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; font-weight: 400;
      color: var(--dim-white); flex-wrap: wrap;
    }

    .hero-rating__stars {
      color: #C8A96E;
      font-size: 16px; letter-spacing: 2px; line-height: 1;
    }

    .hero-rating__score {
      font-weight: 600; color: var(--white); font-size: 12px;
    }

    .hero-rating__count { opacity: 0.5; }

    .hero-rating__google {
      display: flex; align-items: center; gap: 5px;
      border-left: 1px solid rgba(255,255,255,0.15);
      padding-left: 10px; opacity: 0.65; font-size: 10.5px;
    }

    .hero__grain {
      position: absolute; inset: 0; z-index: 4;
      pointer-events: none; opacity: 0.045;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }


    /* ============================================================
       MENU SECTION — Split Screen
       ============================================================ */
    .menu-section {
      position: relative;
      min-height: 100vh;
    }

    .menu-section__canvas {
      position: relative;
      min-height: 100vh;
      background: #F4F2EE;
    }

    .menu-section__inner {
      display: grid;
      grid-template-columns: 2fr 3fr;
      min-height: 100vh;
      min-width: 0;
    }

    /* Left: sticky col */
    .menu-section__cards-col {
      position: sticky; top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 72px 48px 56px 64px;
      gap: 48px;
      min-width: 0;
    }

    .menu-col__header { }

    .menu-col__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      margin-bottom: 20px;
    }

    .menu-col__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(0,0,0,0.2);
      flex-shrink: 0;
    }

    .menu-col__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3rem, 5.5vw, 6.5rem);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 20px;
    }

    .menu-col__sub {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px; font-weight: 300;
      line-height: 1.7;
      color: rgba(0,0,0,0.5);
      max-width: 36ch;
    }

    .menu-col__ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .menu-col__cta-primary {
      -webkit-tap-highlight-color: transparent;
      background-color: var(--black); color: #FFFFFF;
      cursor: pointer; font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600; line-height: 1;
      text-transform: uppercase; letter-spacing: 0.12em;
      text-decoration: none; display: inline-flex;
      align-items: center; height: 48px;
      border-radius: 99rem; border: 1.5px solid var(--black);
      padding: 0 28px;
      transition: background-color 0.25s, border-color 0.25s;
    }

    .menu-col__cta-primary:hover {
      background-color: var(--accent);
      border-color: var(--accent);
      color: #FFFFFF;
    }

    .menu-col__cta-secondary {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(28,28,30,0.6); text-decoration: none;
      display: inline-flex; align-items: center; height: 48px;
      border-radius: 99rem; border: 1.5px solid rgba(28,28,30,0.25);
      padding: 0 28px;
      transition: border-color 0.25s, color 0.25s;
    }

    .menu-col__cta-secondary:hover {
      border-color: var(--black);
      color: var(--black);
    }

    .menu-col__pdf-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 48px;
      padding: 0 28px;
      border-radius: 99rem;
      border: 1.5px solid rgba(28,28,30,0.25);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(28,28,30,0.6);
      text-decoration: none;
      transition: border-color 0.25s, color 0.25s;
    }

    .menu-col__pdf-link:hover {
      border-color: var(--black);
      color: var(--black);
    }

    /* ── Floating Call Button ── */
    .call-fab {
      display: none;
    }

    .call-fab__icon {
      width: 18px; height: 18px;
      stroke: #fff; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .call-fab {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--accent);
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(139,46,26,0.4);
        transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      }
      .call-fab__label { display: none; }
    }

    /* Floating Reserve-Pill — lokaler Ersatz für den Lightspeed-Docked-Button */
    .reserve-pill {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 100;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 52px;
      padding: 0 22px;
      border: none;
      border-radius: 100px;
      background: #FFFFFF;
      color: var(--black);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.12);
      transition: transform 0.15s, box-shadow 0.2s;
    }

    .reserve-pill:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.12);
    }

    .reserve-pill svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      /* Über dem Call-FAB stapeln, damit sich unten rechts nichts überlappt */
      .reserve-pill {
        right: 20px;
        bottom: 84px;
        height: 48px;
        font-size: 13px;
        padding: 0 18px;
      }
    }

    /* Stacked cards */
    .menu-cards-stack {
      position: relative;
      width: clamp(220px, 24vw, 280px);
      height: clamp(290px, 34vw, 370px);
    }

    /* Polaroid card */
    .menu-card {
      position: absolute; top: 0; left: 0;
      width: clamp(220px, 24vw, 280px);
      background: #FFFFFF;
      padding: 9px 9px 46px;
      border-radius: 2px;
      box-shadow:
        0 2px 6px rgba(0,0,0,0.08),
        0 8px 28px rgba(0,0,0,0.10),
        0 1px 0 rgba(255,255,255,0.9) inset;
    }

    .menu-card:nth-child(1) { z-index: 3; }
    .menu-card:nth-child(2) { z-index: 2; }
    .menu-card:nth-child(3) { z-index: 1; }

    .menu-card__photo-wrap {
      width: 100%;
      aspect-ratio: 5 / 4;
      overflow: hidden;
      background: #e8e8e8;
    }

    .menu-card__photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    .menu-card__label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 300;
      color: #888; text-align: center;
      margin-top: 10px;
      font-style: italic;
      letter-spacing: 0.03em;
    }

    /* Right: overview + CTA */
    .menu-section__menu-col {
      padding: 72px 64px 0;
      border-left: 1px solid rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    /* Panels take remaining space */
    .menu-section__panel { flex: 1; }

    /* Chapter navigation — sticky bottom */
    .menu-chapter-nav {
      position: sticky;
      bottom: 0;
      background: #F4F2EE;
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 18px 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 60px;
    }

    .menu-chapter-nav__btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey-text);
      padding: 0;
      transition: color 0.2s;
    }

    .menu-chapter-nav__btn:hover { color: var(--black); }

    .menu-chapter-nav__btn svg {
      width: 16px; height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .menu-chapter-nav__btn--hidden { visibility: hidden; pointer-events: none; }

    .menu-chapter-nav__current {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--grey-text);
    }

    .menu-chapter-nav__dot {
      display: flex; gap: 6px; align-items: center;
    }

    .menu-chapter-nav__pip {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--grey-mid);
      transition: background 0.2s, transform 0.2s;
    }

    .menu-chapter-nav__pip.active {
      background: var(--black);
      transform: scale(1.4);
    }

    /* Tabs — single scrollable row with fade-edge affordance + side arrow controls (all breakpoints) */
    .menu-section__tabs-wrap {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .menu-section__tabs-scroll {
      position: relative;
      min-width: 0;
      flex: 1;
    }
    .menu-section__tabs-scroll::before,
    .menu-section__tabs-scroll::after {
      content: '';
      position: absolute;
      top: 0; bottom: 1px;
      width: 24px;
      pointer-events: none;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .menu-section__tabs-scroll::before {
      left: 0;
      background: linear-gradient(to right, #F4F2EE 15%, transparent);
    }
    .menu-section__tabs-scroll::after {
      right: 0;
      background: linear-gradient(to left, #F4F2EE 15%, transparent);
    }
    .menu-section__tabs-wrap.has-scroll-start .menu-section__tabs-scroll::before { opacity: 1; }
    .menu-section__tabs-wrap.has-scroll-end .menu-section__tabs-scroll::after { opacity: 1; }

    /* Explicit scroll-arrow buttons — mouse/trackpad users only; touch relies on swipe + fade.
       Laid out as flex siblings (not overlaid) so they never cover tab labels. */
    .menu-section__tabs-arrow {
      display: none;
    }
    @media (hover: hover) and (pointer: fine) {
      .menu-section__tabs-arrow {
        display: flex;
        flex-shrink: 0;
        width: 26px; height: 26px;
        border-radius: 50%;
        border: none;
        background: var(--black);
        color: #fff;
        font-size: 14px;
        line-height: 1;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transform: scale(0.85);
        transition: opacity 0.2s ease, transform 0.15s ease;
      }
      .menu-section__tabs-wrap:not(.has-overflow) .menu-section__tabs-arrow {
        display: none;
      }
      /* Enable-state is driven by the active tab index (JS toggles .is-on),
         NOT by scroll position — see updateState() */
      .menu-section__tabs-arrow.is-on {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
      }
      .menu-section__tabs-arrow.is-on:hover {
        transform: scale(1.1);
      }
    }

    .menu-section__tabs {
      display: flex;
      flex-wrap: nowrap;
      gap: 32px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding-bottom: 0;
      margin-bottom: 0;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    .menu-section__tabs::-webkit-scrollbar { display: none; }

    .menu-panels-wrap {
      flex: 1;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0,0,0,0.12) transparent;
      padding-bottom: 80px;
      padding-top: 32px;
    }

    .menu-section__tab {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(28,28,30,0.4);
      background: none; border: none; cursor: pointer;
      padding: 12px 20px 14px; position: relative;
      transition: color 0.2s; white-space: nowrap;
    }

    .menu-section__tab:hover { color: rgba(28,28,30,0.75); }

    .menu-section__tab::after {
      content: ''; position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 2px; background: var(--black);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .menu-section__tab.active { color: var(--black); font-weight: 700; }
    .menu-section__tab.active::after { transform: scaleX(1); }

    /* Scroll progress hint */
    .menu-scroll-hint {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
      opacity: 0.45;
    }
    .menu-scroll-hint__label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
      white-space: nowrap;
    }
    .menu-scroll-hint__track {
      flex: 1;
      height: 1.5px;
      background: rgba(0,0,0,0.1);
      border-radius: 2px;
      overflow: hidden;
    }
    .menu-scroll-hint__fill {
      height: 100%;
      background: var(--black);
      border-radius: 2px;
      width: 25%;
      transition: width 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    @media (max-width: 768px) {
      .menu-scroll-hint { display: none; }
    }

    /* Panels */
    .menu-section__panel { display: none; }
    .menu-section__panel.active { display: block; }

    /* Category header */
    .menu-cat { margin-bottom: 36px; }

    .menu-cat__title {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--grey-text); margin-bottom: 4px;
    }

    .menu-cat__title-sub {
      font-weight: 400; font-size: 10px;
      letter-spacing: 0.1em; text-transform: none;
    }

    .menu-cat__note {
      font-size: 12px; font-weight: 300;
      color: var(--grey-text); line-height: 1.6;
      margin-bottom: 16px; font-style: italic;
    }

    .menu-pho-sizes {
      display: flex; gap: 24px;
      font-size: 12px; font-weight: 500;
      color: var(--black); margin-bottom: 20px;
      flex-wrap: wrap;
    }

    /* Menu item row */
    .menu-item {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 20px;
      padding: 14px 0;
      border-bottom: 1px solid var(--grey-light);
    }

    .menu-item:first-of-type { border-top: 1px solid var(--grey-light); }

    .menu-item__info { flex: 1; }

    .menu-item__name {
      font-size: 14px; font-weight: 500;
      color: var(--black); line-height: 1.3;
    }

    .menu-item__sub {
      font-size: 12px; font-weight: 300;
      color: var(--grey-text); margin-left: 6px;
    }

    .menu-item__vars {
      font-size: 12px; font-weight: 300;
      color: var(--grey-text); font-style: italic;
    }

    .menu-item__desc {
      font-size: 12px; font-weight: 300;
      color: var(--grey-text); line-height: 1.55;
      margin-top: 3px;
    }

    .menu-item__price {
      font-size: 13px; font-weight: 500;
      color: var(--black); white-space: nowrap;
      flex-shrink: 0; padding-top: 1px;
    }

    .menu-item__badge {
      display: inline-flex; align-items: center;
      font-size: 9px; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 2px 7px; border-radius: 99px;
      vertical-align: middle; margin-left: 6px;
    }

    .menu-item__badge--fav {
      background: rgba(139,46,26,0.08); color: var(--accent);
    }

    .menu-item__badge--vegan {
      background: rgba(60,140,60,0.1); color: #3a7a3a;
    }

    .menu-addons {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-top: 10px;
    }

    .menu-addons span {
      font-size: 11.5px; font-weight: 300;
      color: var(--grey-text);
      padding: 4px 10px; border: 1px solid var(--grey-light);
      border-radius: 99px;
    }

    .menu-footnote {
      font-size: 11px; font-weight: 300; font-style: italic;
      color: var(--grey-text); line-height: 1.6;
      margin-top: 32px; padding-top: 20px;
      border-top: 1px solid var(--grey-light);
    }

    /* ============================================================
       FLOW-ABOUT — dark section that rotates in over menu
       ============================================================ */
    /* ============================================================
       FLOW RESERVE
       ============================================================ */
    .flow-reserve {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .flow-reserve__canvas {
      position: relative;
      min-height: 100vh;
      background: var(--accent);
      will-change: transform;
      transform-origin: bottom left;
    }

    .flow-reserve__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      align-items: center;
    }

    .flow-reserve__left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 72px);
    }

    .flow-reserve__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 20px;
    }

    .flow-reserve__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

    .flow-reserve__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #FFFFFF;
      margin-bottom: 24px;
    }

    .flow-reserve__headline em {
      font-style: normal;
      color: rgba(255,255,255,0.45);
    }

    .flow-reserve__body {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px; font-weight: 300;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
      max-width: 38ch;
      margin-bottom: 36px;
    }

    .flow-reserve__phone {
      display: inline-block;
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: #FFFFFF;
      text-decoration: none;
      border-bottom: 2px solid rgba(255,255,255,0.3);
      padding-bottom: 4px;
      margin-bottom: 16px;
      transition: border-color 0.2s;
    }

    .flow-reserve__phone:hover {
      border-color: rgba(255,255,255,0.8);
    }

    .flow-reserve__ctas {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }

    .flow-reserve__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 28px;
      border-radius: 100px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }

    .flow-reserve__cta:active { transform: scale(0.98); }

    .flow-reserve__cta--primary {
      background: #FFFFFF;
      color: var(--accent);
    }

    .flow-reserve__cta--primary:hover { opacity: 0.9; }

    .flow-reserve__cta--ghost {
      background: transparent;
      color: #FFFFFF;
      border: 1.5px solid rgba(255,255,255,0.45);
    }

    .flow-reserve__cta--ghost:hover { border-color: rgba(255,255,255,0.85); }

    /* ============================================
       UNIFIED BUTTON SYSTEM
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: var(--btn-height, 48px);
      padding: var(--btn-padding, 0 28px);
      border-radius: var(--btn-radius, 100px);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: var(--btn-font-size, 12px);
      font-weight: var(--btn-weight, 600);
      letter-spacing: var(--btn-tracking, 0.12em);
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: background 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
                  border-color 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
                  color 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
                  transform 0.15s ease;
      white-space: nowrap;
    }
    .btn:active { transform: scale(0.97); }

    /* Primary — auf hellem Hintergrund */
    .btn-primary {
      background: var(--black, #1C1C1E);
      color: var(--white, #F4F4F2);
      border-color: var(--black, #1C1C1E);
    }
    .btn-primary:hover { background: var(--accent, #8B2E1A); border-color: var(--accent, #8B2E1A); }

    /* Ghost — auf hellem Hintergrund */
    .btn-ghost-light {
      background: transparent;
      color: var(--black, #1C1C1E);
      border-color: rgba(28,28,30,0.3);
    }
    .btn-ghost-light:hover { border-color: var(--black, #1C1C1E); }

    /* Ghost Inverse — auf dunklem/akzent Hintergrund */
    .btn-ghost-inverse {
      background: transparent;
      color: var(--white, #F4F4F2);
      border-color: rgba(255,255,255,0.4);
    }
    .btn-ghost-inverse:hover { border-color: rgba(255,255,255,0.85); }

    /* Accent — Primärer CTA (Reserve, Hero) */
    .btn-accent {
      background: var(--white, #F4F4F2);
      color: var(--accent, #8B2E1A);
      border-color: var(--white, #F4F4F2);
    }
    .btn-accent:hover { background: rgba(244,244,242,0.9); }

    /* Small Variant */
    .btn-sm {
      height: 40px;
      padding: 0 20px;
      font-size: 11px;
    }

    .flow-reserve__email {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 13px; font-weight: 300;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.02em;
    }

    /* Right: Hours */
    .flow-reserve__right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 72px) clamp(3rem, 8vw, 6rem) 0;
    }

    .flow-reserve__hours-heading {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 24px;
    }

    .flow-reserve__hours-table {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .flow-reserve__hours-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .flow-reserve__hours-row:first-child {
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .flow-reserve__day {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 14px; font-weight: 400;
      color: rgba(255,255,255,0.7);
      min-width: 110px;
    }

    .flow-reserve__times {
      font-family: 'Sora', sans-serif;
      font-size: 13px; font-weight: 400;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.01em;
    }

    .flow-reserve__location {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 300;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
      margin-top: 24px;
    }

    /* ============================================================
       FLOW ABOUT
       ============================================================ */
    .flow-about {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .flow-about__canvas {
      position: relative;
      min-height: 100vh;
      background: #F4F2EE;
      will-change: transform;
      transform-origin: bottom left;
    }

    .flow-about__layout {
      display: grid;
      grid-template-columns: 3fr 2fr;
      min-height: 100vh;
      align-items: center;
    }

    .flow-about__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 72px);
    }

    .flow-about__visual {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      height: 100%;
      padding: 2rem 0 2rem 0;
      overflow: visible;
    }

    .flow-about__illustration-img {
      width: 120%;
      max-width: none;
      display: block;
      transform: translateX(12%);
    }

    .flow-about__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      margin-bottom: 20px;
    }

    .flow-about__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(0,0,0,0.2);
      flex-shrink: 0;
    }

    .flow-about__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3rem, 7vw, 7rem);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: #0d0d0b;
      margin-bottom: 28px;
    }

    .flow-about__headline em {
      font-style: normal;
      color: var(--accent);
    }

    .flow-about__body {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px; font-weight: 300;
      line-height: 1.7;
      color: rgba(0,0,0,0.55);
      max-width: 48ch;
    }

    .flow-about__body--second {
      margin-top: 16px;
    }

    .flow-about__stats {
      display: flex;
      gap: 40px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .flow-about__stat {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .flow-about__stat-number {
      font-family: 'Sora', sans-serif;
      font-size: 30px;
      font-weight: 600;
      color: #0d0d0b;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .flow-about__stat-star {
      font-size: 18px;
      color: var(--accent);
      margin-left: 2px;
    }

    .flow-about__stat-label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 9px;
      font-weight: 500;
      color: rgba(0,0,0,0.35);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    /* ============================================================
       FLOW NEXT — empty placeholder, same structure as about
       ============================================================ */
    /* ===== REVIEWS SECTION ===== */
    .flow-reviews {
      background: #F4F2EE;
      padding: 72px 0;
      overflow: hidden;
    }

    .flow-reviews__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 88px;
      margin-bottom: 40px;
    }

    .flow-reviews__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(0,0,0,0.4);
    }

    .flow-reviews__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(0,0,0,0.2);
      flex-shrink: 0;
    }

    .flow-reviews__score {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.1em;
      color: rgba(0,0,0,0.35);
      text-transform: uppercase;
    }

    .flow-reviews__marquee {
      overflow: hidden;
      width: 100%;
    }

    .flow-reviews__track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: reviews-marquee 40s linear infinite;
    }

    .flow-reviews__track:hover {
      animation-play-state: paused;
    }

    @keyframes reviews-marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .review-card {
      width: 300px;
      flex-shrink: 0;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }

    .review-card__header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-card__avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #333;
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: 14px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      letter-spacing: 0;
    }

    .review-card__name {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 14px; font-weight: 600;
      color: #0d0d0b;
      line-height: 1.2;
    }

    .review-card__meta {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 400;
      color: rgba(0,0,0,0.4);
      margin-top: 1px;
    }

    .review-card__stars {
      display: flex;
      gap: 3px;
    }

    .review-card__star {
      width: 13px; height: 13px;
      fill: #F59E0B;
    }

    .review-card__text {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 13px; font-weight: 300;
      line-height: 1.65;
      color: rgba(0,0,0,0.65);
    }

    @media (max-width: 768px) {
      .flow-reviews {
        padding: 48px 0;
      }
      .flow-reviews__header {
        padding: 0 24px;
        margin-bottom: 28px;
        flex-wrap: wrap;
        gap: 8px;
      }
      .review-card {
        width: 260px;
        padding: 20px;
      }
    }

    /* ===== GALLERY SECTION ===== */
    .flow-gallery {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .flow-gallery__canvas {
      position: relative;
      min-height: 100vh;
      background: #1a1714;
      will-change: transform;
      transform-origin: bottom left;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 0 72px;
      gap: 48px;
    }

    .flow-gallery__canvas::before {
      content: '';
      position: absolute;
      left: 50%; top: 60%;
      transform: translate(-50%, -50%);
      width: 70vw; height: 50vh;
      background: radial-gradient(ellipse, rgba(139,46,26,0.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .flow-gallery__header,
    .flow-gallery__marquee-wrap,
    .flow-gallery__cta-wrap {
      position: relative;
      z-index: 1;
    }

    .flow-gallery__header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 48px;
      width: 100%;
      padding: 0 88px;
    }

    .flow-gallery__header-left {
      display: flex;
      flex-direction: column;
    }

    .flow-gallery__header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .flow-gallery__logo {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      background: #F4F2EE;
      padding: 6px;
    }

    .flow-gallery__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 20px;
    }

    .flow-gallery__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

    .flow-gallery__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3rem, 7vw, 7rem);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin: 0 0 20px;
    }

    .flow-gallery__headline em {
      font-style: italic;
      color: var(--accent);
    }

    .flow-gallery__sub {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px; font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      margin: 0;
    }

    /* Marquee */
    .flow-gallery__marquee-wrap {
      width: 100%;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .flow-gallery__marquee-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: gallery-marquee 36s linear infinite;
    }

    .flow-gallery__marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes gallery-marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .flow-gallery__photo {
      height: 380px;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 12px;
      display: block;
      flex-shrink: 0;
    }

    /* Slight alternating rotation */
    .flow-gallery__photo:nth-child(odd)  { transform: rotate(-1.5deg); }
    .flow-gallery__photo:nth-child(even) { transform: rotate(1.5deg); }

    /* CTA */
    .flow-gallery__cta-wrap {
      text-align: center;
    }

    .flow-gallery__cta {
      display: inline-flex;
      align-items: center;
      height: 48px;
      padding: 0 28px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--black);
      background: var(--white);
      border: 1.5px solid var(--white);
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
                  color 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .flow-gallery__cta:hover {
      background: var(--accent);
      color: #ffffff;
    }

    .flow-placeholder {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .flow-placeholder__canvas {
      position: relative;
      min-height: 100vh;
      will-change: transform;
      transform-origin: bottom left;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flow-placeholder__inner { display: flex; align-items: center; justify-content: center; }

    .flow-placeholder__label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(0,0,0,0.2);
    }

    /* ============================================================
       PHOTO MARQUEE
       ============================================================ */
    .photo-marquee {
      background: #141412;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0;
      overflow: hidden;
      will-change: transform;
      transform-origin: bottom left;
    }

    .photo-marquee__label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      padding: 0 64px;
      margin-bottom: 48px;
    }

    .marquee-row {
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
      mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
      margin-bottom: 14px;
    }

    .marquee-row:last-child { margin-bottom: 0; }

    .marquee-track {
      display: flex;
      gap: 14px;
      width: max-content;
    }

    @keyframes scroll-left {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    @keyframes scroll-right {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }

    .marquee-track--left  { animation: scroll-left  38s linear infinite; }
    .marquee-track--right { animation: scroll-right 44s linear infinite; }

    .marquee-item {
      flex-shrink: 0;
      height: 260px;
      aspect-ratio: 3 / 4;
      border-radius: 10px;
      overflow: hidden;
    }

    .marquee-item:nth-child(odd)  { transform: rotate(-1.5deg); }
    .marquee-item:nth-child(even) { transform: rotate(2.5deg);  }

    .marquee-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* ============================================================
       PLACEHOLDER SECTIONS
       ============================================================ */
    .section-placeholder {
      height: 80vh; display: flex; align-items: center; justify-content: center;
      border-top: 1px solid var(--grey-light);
      position: relative; z-index: 5;
      background: var(--white);
    }

    .section-placeholder p {
      font-size: 11px; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--grey-mid);
    }


    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 768px) {
      .navbar { height: 64px; padding: 0 20px; }
      .navbar__logo-img  { width: 52px; height: 52px; }
      .navbar__logo-name { font-size: 18px; }
      .navbar__logo-sub  { font-size: 9px; letter-spacing: 0.15em; }
      .navbar__nav, .btn-reserve, .lang-dropdown { display: none; }
      .navbar__mobile-trigger { display: flex; }
      .float-btn { top: 12px; right: 16px; width: 44px; height: 44px; }
      .menu-popup { padding: 44px 28px 36px; width: min(460px, 92vw); }
      .menu-popup__link { font-size: 34px; }
      .menu-popup__footer { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }

    }

    @media (max-width: 360px) {
      .hero-title { font-size: 2.8rem; }
      .hero-sub { font-size: 13px; }
      .menu-popup__link { font-size: 28px; }
      .menu-popup { padding: 36px 24px 28px; }
    }

    /* ============================================================
       FLOW INSTAGRAM
       ============================================================ */
    .flow-insta {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .flow-insta__canvas {
      position: relative;
      min-height: 100vh;
      background: var(--white);
      will-change: transform;
      transform-origin: bottom left;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 88px 72px;
      gap: 48px;
    }

    .flow-insta__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .flow-insta__header-left {}

    .flow-insta__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--grey-text);
      margin-bottom: 16px;
    }

    .flow-insta__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: var(--grey-mid);
      flex-shrink: 0;
    }

    .flow-insta__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.8rem, 5vw, 5rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--black);
    }

    .flow-insta__headline em {
      font-style: italic;
      color: var(--accent);
    }

    .flow-insta__follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 48px;
      padding: 0 28px;
      border-radius: 100px;
      background: var(--black);
      color: var(--white);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .flow-insta__follow-btn:hover { background: var(--accent); }
    .flow-insta__follow-btn:active { transform: scale(0.98); }

    .flow-insta__follow-icon {
      width: 16px; height: 16px;
      opacity: 0.7;
    }

    /* 3×2 photo grid */
    .flow-insta__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    /* Items 7+8 sind nur für Mobile — auf Desktop ausblenden */
    .flow-insta__item:nth-child(n+7) {
      display: none;
    }

    .flow-insta__item {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
    }

    .flow-insta__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .flow-insta__item:hover img { transform: scale(1.07); }

    .flow-insta__item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(28,28,30,0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .flow-insta__item:hover .flow-insta__item-overlay {
      background: rgba(28,28,30,0.38);
    }

    .flow-insta__item-icon {
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.25s, transform 0.25s;
      color: #fff;
    }

    .flow-insta__item:hover .flow-insta__item-icon {
      opacity: 1;
      transform: scale(1);
    }

    .flow-insta__handle {
      text-align: center;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 13px; font-weight: 400;
      color: var(--grey-text);
      letter-spacing: 0.04em;
    }

    .flow-insta__handle a {
      color: var(--black);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid var(--grey-mid);
      padding-bottom: 2px;
      transition: border-color 0.2s, color 0.2s;
    }

    .flow-insta__handle a:hover { color: var(--accent); border-color: var(--accent); }

    /* ===== FIND US (normale Section, außerhalb FlowArt) ===== */
    .findus {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
    }

    .findus__canvas {
      position: relative;
      min-height: 100vh;
      background: #1a1714;
      will-change: transform;
      transform-origin: bottom left;
    }

    .findus__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
    }

    .findus__left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 88px;
    }

    .findus__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }

    .findus__eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
    }

    .findus__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(3rem, 5vw, 6rem);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: #FFFFFF;
      margin: 0 0 48px;
    }

    .findus__headline em {
      font-style: italic;
      color: var(--accent);
    }

    .findus__block { margin-bottom: 32px; }
    .findus__block:last-child { margin-bottom: 0; }

    .findus__block-label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin: 0 0 8px;
    }

    .findus__block-value {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px; font-weight: 300;
      line-height: 1.65;
      color: rgba(255,255,255,0.72);
      margin: 0;
    }

    .findus__map-link {
      display: inline-block;
      margin-top: 10px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .findus__map-link:hover { color: #FFFFFF; }

    .findus__phone {
      text-decoration: none;
      color: rgba(255,255,255,0.72);
      transition: color 0.2s;
    }

    .findus__phone:hover { color: #FFFFFF; }

    .findus__hours {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .findus__hours-row {
      display: flex;
      justify-content: space-between;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 15px; font-weight: 300;
      color: rgba(255,255,255,0.6);
      max-width: 300px;
    }

    .findus__right {
      position: relative;
    }

    .findus__map {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      filter: grayscale(100%) invert(1) contrast(0.85) brightness(0.75);
    }

    /* Zwei-Klick-Karte: Container trägt KEINEN Filter (Vorschaubild ist bereits
       vom gefilterten Original geschossen); erst das nachgeladene iframe wieder */
    .map-consent {
      filter: none;
      overflow: hidden;
    }

    .map-consent__preview {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .map-consent__overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: rgba(15,15,17,0.45);
      text-align: center;
      padding: 24px;
    }

    .map-consent__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 32px;
      border: none;
      border-radius: 100px;
      background: #FFFFFF;
      color: var(--black);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }

    .map-consent__btn:hover { opacity: 0.92; transform: scale(1.02); }

    .map-consent__hint {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      max-width: 280px;
      line-height: 1.5;
    }

    .map-consent iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      filter: grayscale(100%) invert(1) contrast(0.85) brightness(0.75);
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--white);
      padding: 64px 88px 0;
    }

    .footer__top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      align-items: start;
    }

    /* Left: Logo + tagline */
    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .footer__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .footer__logo-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }

    .footer__logo-name {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.01em;
    }

    .footer__tagline {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(0,0,0,0.45);
      line-height: 1.6;
      max-width: 26ch;
    }

    .footer__rating {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 4px;
    }

    .footer__stars {
      font-size: 13px;
      letter-spacing: 1px;
      color: #c9973a;
    }

    .footer__rating-text {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(0,0,0,0.4);
    }

    /* Center: Navigation */
    .footer__nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-top: 4px;
    }

    .footer__nav-label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.3);
      margin-bottom: 12px;
    }

    .footer__nav-link {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: rgba(0,0,0,0.55);
      text-decoration: none;
      padding: 5px 0;
      transition: color 0.2s;
      width: fit-content;
    }

    .footer__nav-link:hover { color: var(--black); }

    /* Right: Contact info */
    .footer__contact {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-top: 4px;
    }

    .footer__contact-label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.3);
      margin-bottom: -8px;
    }

    .footer__contact-item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .footer__contact-value {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: rgba(0,0,0,0.6);
      text-decoration: none;
      line-height: 1.5;
      transition: color 0.2s;
    }

    a.footer__contact-value:hover { color: var(--black); }

    /* Bottom bar */
    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0 24px;
    }

    .footer__copy {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px;
      font-weight: 300;
      color: rgba(0,0,0,0.28);
      letter-spacing: 0.02em;
    }

    .footer__socials {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer__social-link {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: rgba(0,0,0,0.35);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .footer__social-link:hover { color: var(--black); }

    .footer__social-link svg { width: 13px; height: 13px; }

    .footer__legal {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer__legal-link {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px;
      font-weight: 400;
      color: rgba(0,0,0,0.35);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }

    .footer__legal-link:hover { color: var(--black); }

    /* ============================================
       MOBILE — max-width: 768px
       ============================================ */
    @media (max-width: 768px) {

      /* Global Section Padding Override */
      [data-flow-canvas] {
        padding-left: 24px !important;
        padding-right: 24px !important;
      }

      /* ── NAV ── */
      /* Navbar already handled in existing mobile breakpoint above */

      /* ── HERO ── */
      .hero {
        height: 100dvh;
      }

      .hero__bg-img {
        object-position: 45% 35%;
      }

      .hero__content-wrap {
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 24px;
      }

      .hero__content {
        align-items: center;
        text-align: center;
      }

      .hero-eyebrow {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        row-gap: 4px;
      }

      .hero-ctas {
        align-items: center;
      }

      .hero__reviews {
        justify-content: center;
      }

      .hero__scrim {
        background: rgba(0,0,0,0.55);
      }

      .hero__content { gap: 12px; }

      .hero-eyebrow { font-size: 9px; }

      .hero-title {
        font-size: clamp(3rem, 12vw, 4.2rem);
        line-height: 0.95;
      }

      .hero-sub {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.65;
      }

      .hero-accent-rule { display: none; }

      .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 320px;
      }

      .btn-cta,
      .btn-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero__reviews {
        justify-content: flex-start;
        margin-top: 16px;
      }

      /* ── MENU SECTION ── */
      .menu-section,
      .menu-section__canvas,
      .menu-section__inner {
        min-height: auto;
      }

      .menu-section__canvas {
        padding: 56px 24px 56px;
        overflow-x: hidden;
      }

      .menu-section__inner {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
      }

      .menu-section__cards-col {
        position: static;
        height: auto;
        gap: 24px;           /* override desktop 48px */
        padding: 0 0 40px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        align-items: center;
        text-align: center;
        max-width: 100%;
        min-width: 0;
        width: 100%;
      }

      .menu-col__header {
        max-width: 100%;
      }

      .menu-col__eyebrow {
        margin-bottom: 14px;
        justify-content: center;
      }

      .menu-col__headline {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 12px;
        max-width: 100%;
        overflow-wrap: break-word;
      }

      .menu-col__sub {
        font-size: 14px;
        max-width: 100%;
        overflow-wrap: break-word;
      }

      .menu-col__ctas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
      }

      .menu-col__cta-primary,
      .menu-col__pdf-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
      }

      .menu-section__menu-col {
        border-left: none !important;
        padding: 32px 0 0;
        min-width: 0;
        width: 100%;
      }

      /* Tabs: horizontally scrollable on mobile */
      .menu-section__tabs-wrap {
        margin: 0 -24px;
      }

      .menu-section__tabs {
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 24px;
      }

      .menu-section__tabs::-webkit-scrollbar { display: none; }

      .menu-section__tab {
        padding: 10px 14px 12px;
        flex-shrink: 0;
      }

      /* Panels: natural height on mobile, no inner scroll */
      .menu-panels-wrap {
        overflow-y: visible;
        height: auto;
        padding-bottom: 48px;
        padding-top: 24px;
      }

      /* Chapter nav: static on mobile, not sticky */
      .menu-chapter-nav {
        position: static;
        margin-top: 24px;
        padding: 16px 0 8px;
      }

      /* ── RESERVE SECTION ── */
      .flow-reserve__canvas {
        padding: 64px 24px 56px;
      }
      .flow-reserve__layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .flow-reserve__headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
      }
      .flow-reserve__right {
        border-left: none !important;
        padding-left: 0 !important;
        padding-top: 32px;
        border-top: 1px solid rgba(255,255,255,0.15);
      }
      .flow-reserve__ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        gap: 10px;
      }
      .flow-reserve__cta {
        width: 100%;
        justify-content: center;
      }

      /* ── ABOUT SECTION ── */
      .flow-about {
        min-height: auto;
      }
      .flow-about__canvas {
        min-height: auto;
        padding: 64px 24px 56px;
        position: relative;
        overflow: hidden;
      }

      /* Scrim damit Hintergrund dominiert */
      .flow-about__canvas::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(244,242,238,0.88);
        z-index: 1;
        pointer-events: none;
      }

      .flow-about__layout {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        z-index: 2;
        min-height: auto;
      }

      .flow-about__text {
        padding: 0;
      }

      /* Vollflächig als Background */
      .flow-about__visual {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
      }

      .flow-about__illustration-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
        filter: grayscale(1);
        opacity: 0.18;
      }

      .flow-about__headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
      }

      /* ── GALLERY ── */
      .flow-gallery__canvas {
        padding: 40px 0 36px;
      }
      .flow-gallery__header {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 24px;
      }
      .flow-gallery__header-right {
        display: none;
      }
      .flow-gallery__headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
      }

      /* ── INSTAGRAM ── */
      .flow-insta__canvas {
        padding: 64px 24px 56px;
        gap: 32px;
      }
      .flow-insta__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
      .flow-insta__headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
      }
      .flow-insta__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
      }

      .flow-insta__item:nth-child(n+7) {
        display: block;
      }

      /* ── SIGNATURE DISHES: auf Mobile ausblenden ── */
      .sig-dishes {
        display: none;
      }

      /* ── FIND US ── */
      .findus__canvas {
        padding: 64px 24px 56px;
      }
      .findus__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
      }
      .findus__left {
        padding: 0 0 48px;
      }
      .findus__headline {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
      }
      .findus__right {
        position: relative;
        height: 280px;
      }
      .findus__map {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }

      /* ── FOOTER ── */
      .site-footer {
        padding: 48px 24px 0;
      }
      .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
      }

    }

    /* ============================================
       TABLET — 769px to 1024px
       ============================================ */
    @media (min-width: 769px) and (max-width: 1024px) {

      [data-flow-canvas] {
        padding-left: 48px !important;
        padding-right: 48px !important;
      }

      .hero-title {
        font-size: clamp(3.5rem, 7vw, 5.5rem);
      }

      .menu-section__inner {
        grid-template-columns: 1fr 1fr;
      }

      .flow-insta__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
      }

      .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

    }

    /* ============================================================
       MENU OVERVIEW (inline right col)
       ============================================================ */
    .menu-overview {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
      margin-bottom: 48px;
    }

    .menu-overview__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      cursor: pointer;
      transition: background 0.2s;
    }

    .menu-overview__row:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

    .menu-overview__row:hover .menu-overview__name { color: var(--accent); }
    .menu-overview__row:hover .menu-overview__arrow { transform: translateX(4px); }

    .menu-overview__cat {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .menu-overview__num {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: rgba(0,0,0,0.25);
      width: 24px;
      flex-shrink: 0;
    }

    .menu-overview__name {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      font-weight: 600;
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1;
      margin-bottom: 5px;
      transition: color 0.2s;
    }

    .menu-overview__items {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(0,0,0,0.4);
      letter-spacing: 0.01em;
    }

    .menu-overview__arrow {
      font-size: 16px;
      color: rgba(0,0,0,0.4);
      transition: transform 0.25s ease, color 0.2s;
      flex-shrink: 0;
    }

    .menu-open-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 48px;
      padding: 0 28px;
      border-radius: 99rem;
      border: 1.5px solid var(--black);
      background: var(--black);
      color: #fff;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      align-self: flex-start;
      transition: background 0.2s, color 0.2s;
      margin-bottom: 32px;
    }

    .menu-open-btn:hover { background: var(--accent); border-color: var(--accent); }

    /* ── SIGNATURE DISHES ── */
    .sig-dishes {
      background: #8B2E1A;
      padding: 100px 64px;
      overflow: hidden;
    }

    .sig-dishes__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
    }

    .sig-dishes__eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 20px;
    }

    .sig-dishes__eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: rgba(255,255,255,0.3);
      flex-shrink: 0;
    }

    .sig-dishes__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.8rem, 5vw, 5.2rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -0.02em;
      color: #FFFFFF;
      margin-bottom: 40px;
    }

    /* Dish navigator */
    .sig-nav {
      display: flex;
      flex-direction: column;
      margin-bottom: 44px;
    }

    .sig-nav__item {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 22px 0 22px 0;
      border-top: 1px solid rgba(255,255,255,0.15);
      cursor: pointer;
      opacity: 0.38;
      transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
    }

    .sig-nav__item::before {
      content: '';
      position: absolute;
      left: -1px;
      top: 22px;
      bottom: 22px;
      width: 2px;
      background: #fff;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    }

    .sig-nav__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }

    .sig-nav__item.active,
    .sig-nav__item:hover { opacity: 1; }

    .sig-nav__item.active {
      padding-left: 18px;
    }

    .sig-nav__item.active::before {
      transform: scaleY(1);
    }

    .sig-nav__num {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      font-weight: 700;
      color: rgba(255,255,255,0.2);
      letter-spacing: -0.02em;
      line-height: 1;
      flex-shrink: 0;
      padding-top: 2px;
      transition: color 0.3s;
    }

    .sig-nav__item.active .sig-nav__num { color: rgba(255,255,255,0.45); }

    .sig-nav__name-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }

    .sig-nav__name {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.05rem, 1.7vw, 1.4rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: #fff;
    }

    .sig-nav__tag {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(255,255,255,0.92);
      padding: 2px 7px;
      border-radius: 99px;
      white-space: nowrap;
    }

    .sig-nav__desc {
      display: block;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.55;
    }

    .sig-dishes__cta-wrap {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .sig-dishes__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 28px;
      border-radius: 100px;
      background: #FFFFFF;
      color: var(--accent);
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.2s;
      align-self: flex-start;
    }

    .sig-dishes__cta:hover { opacity: 0.9; }

    .sig-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 12px;
      color: rgba(255,255,255,0.45);
    }

    .sig-rating__stars { color: rgba(255,255,255,0.8); letter-spacing: 1px; font-size: 11px; }
    .sig-rating__score { color: rgba(255,255,255,0.75); font-weight: 600; }
    .sig-rating__sep { color: rgba(255,255,255,0.2); }

    .sig-dishes__cards {
      position: relative;
      width: 360px;
      height: 450px;
      margin: 0 auto;
    }

    .sig-bg-logo {
      position: absolute;
      width: 600px;
      height: 600px;
      object-fit: contain;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -48%);
      z-index: 0;
      filter: brightness(0);
      opacity: 1;
      pointer-events: none;
      user-select: none;
    }

    .sig-card {
      position: absolute;
      top: 0; left: 0;
      width: 360px;
      background: #FFFFFF;
      padding: 9px 9px 50px;
      border-radius: 2px;
      box-shadow:
        0 2px 6px rgba(0,0,0,0.08),
        0 8px 28px rgba(0,0,0,0.10),
        0 1px 0 rgba(255,255,255,0.9) inset;
      will-change: transform;
    }

    .sig-card:nth-child(1) { z-index: 3; }
    .sig-card:nth-child(2) { z-index: 2; }
    .sig-card:nth-child(3) { z-index: 1; }

    .sig-card__photo-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #e8e8e8;
    }

    .sig-card__photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    .sig-card__label {
      font-family: 'Be Vietnam Pro', sans-serif;
      font-size: 11px; font-weight: 300;
      color: #888; text-align: center;
      margin-top: 10px;
      font-style: italic;
      letter-spacing: 0.03em;
    }

    /* Zwischenbereich 769–900px: 2 Spalten behalten, alles kompakter —
       der 1-Spalten-Umbruch sah kaputt aus (Karten-Stack "bricht nach unten aus") */
    @media (max-width: 900px) {
      .sig-dishes { padding: 72px 32px; }
      .sig-dishes__inner { grid-template-columns: 1fr auto; gap: 40px; }
      .sig-dishes__cards { width: 250px; height: 315px; }
      .sig-card { width: 250px; }
      .sig-bg-logo { width: 420px; height: 420px; }
      .sig-dishes__headline { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
      .sig-nav__desc { font-size: 12px; }
    }

    /* ============================================
       SIGNATURE DISHES — MOBILE ≤768px
       ============================================ */
    @media (max-width: 768px) {
      .sig-dishes { padding: 64px 24px; }

      .sig-dishes__inner {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      /* Cards first on mobile — food before text */
      .sig-dishes__cards {
        order: -1;
        width: 240px;
        height: 300px;
        margin: 0 auto;
      }
      .sig-card { width: 240px; }

      .sig-bg-logo {
        width: 320px;
        height: 320px;
      }

      .sig-dishes__headline {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
        margin-bottom: 28px;
      }

      .sig-nav__num {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
      }

      .sig-nav__name {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
      }

      /* Ensure 44px touch targets on nav items */
      .sig-nav__item {
        min-height: 44px;
        padding: 14px 0;
      }

      .sig-dishes__cta-wrap { gap: 12px; }

      .sig-rating { flex-wrap: wrap; gap: 6px; }
    }

    /* ============================================
       DISABLE HOVER FAN-OUT ON TOUCH DEVICES
       ============================================ */
    @media (hover: none) {
      /* Fans cards out immediately so touch users see the stack */
    }

    /* ============================================
       PREFERS REDUCED MOTION
       ============================================ */
    @media (prefers-reduced-motion: reduce) {
      .sig-nav__item,
      .sig-nav__item::before,
      .sig-nav__num,
      .sig-nav__tag,
      .sig-dishes__cta {
        transition: none !important;
      }
    }

    /* ============================================================
       PRELOADER
       ============================================================ */
    .preloader {
      position: fixed; inset: 0; z-index: 9999;
      background: #FFFFFF;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 20px;
    }
    .preloader__logo {
      width: 100px; height: 100px;
      object-fit: contain;
    }
    .preloader__label {
      font-family: 'Sora', sans-serif;
      font-size: 15px; font-weight: 500;
      color: var(--black);
      letter-spacing: 0.01em;
      opacity: 0.85;
    }
    .preloader__track {
      width: 120px; height: 1.5px;
      background: rgba(0,0,0,0.1);
      border-radius: 2px;
      overflow: hidden;
    }
    .preloader__fill {
      height: 100%; width: 0%;
      background: var(--accent);
      border-radius: 2px;
    }
    .preloader--hidden { pointer-events: none; }

