/* ============================================================
   FONTS — lokal eingebunden (kein Google-Fonts-Request, DSGVO-konform)
============================================================ */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('assets/fonts/dm-sans-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/lora-normal-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/lora-italic-var.woff2') format('woff2');
}


/* ============================================================
   CSS RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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


/* ============================================================
   DESIGN TOKENS / CSS VARIABLEN
============================================================ */
:root {

  /* --- Farben --- */
  --color-primary:        #9b1c1c;
  --color-primary-dark:   #7f1616;
  --color-primary-light:  #d46060;

  --color-secondary:      #ff6584;
  --color-accent:         #43e97b;

  --color-bg:             #0a0a0a;
  --color-bg-secondary:   #111111;
  --color-bg-card:        #1a1a1a;

  --color-text:           #f0f0f0;
  --color-text-muted:     #8a8a8a;
  --color-text-subtle:    #4a4a4a;

  --color-border:         rgba(255, 255, 255, 0.08);
  --color-border-hover:   rgba(255, 255, 255, 0.16);

  --color-white:          #ffffff;
  --color-black:          #000000;

  /* --- Typografie --- */
  --font-display:         'Lora', Georgia, serif;
  --font-family:          'DM Sans', system-ui, sans-serif;
  --font-mono:            'SF Mono', 'Fira Code', 'Consolas', monospace;

  --font-size-xs:         0.75rem;    /* 12px */
  --font-size-sm:         0.875rem;   /* 14px */
  --font-size-base:       1rem;       /* 16px */
  --font-size-md:         1.125rem;   /* 18px */
  --font-size-lg:         1.25rem;    /* 20px */
  --font-size-xl:         1.5rem;     /* 24px */
  --font-size-2xl:        2rem;       /* 32px */
  --font-size-3xl:        2.5rem;     /* 40px */
  --font-size-4xl:        3.5rem;     /* 56px */
  --font-size-5xl:        4.5rem;     /* 72px */

  --font-weight-light:    300;
  --font-weight-normal:   400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;
  --font-weight-extrabold:800;
  --font-weight-black:    900;

  --line-height-tight:    1.2;
  --line-height-normal:   1.6;
  --line-height-loose:    1.8;

  /* --- Abstände --- */
  --space-1:   0.25rem;   /*  4px */
  --space-2:   0.5rem;    /*  8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */
  --space-32:  8rem;      /* 128px */

  /* --- Border Radius --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* --- Schatten --- */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl:  0 16px 64px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 32px rgba(155, 28, 28, 0.25);

  /* --- Animationen --- */
  --ease-out:          cubic-bezier(0.22, 1, 0.36, 1);   /* starker Ease-out für UI */
  --ease-drawer:       cubic-bezier(0.32, 0.72, 0, 1);   /* iOS-artige Drawer-Kurve */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-slower: 600ms var(--ease-out);            /* Entrance → immer ease-out, nie ease-in-out */

  /* --- Layout --- */
  --container-max:    1200px;
  --container-wide:   1400px;
  --container-narrow:  800px;
  --container-padding: clamp(1rem, 5vw, 2rem);

  --header-height: 70px;
  --announce-height: 44px;
  --sticky-cta-height: 56px;

  /* --- Z-Index --- */
  --z-behind:   -1;
  --z-base:      0;
  --z-above:    10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}


/* ============================================================
   BASIS-STILE
============================================================ */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}


/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-24);
}

.section--sm {
  padding-block: var(--space-16);
}

.section--lg {
  padding-block: var(--space-32);
}


/* ============================================================
   TYPOGRAFIE
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

h1 { font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-5xl)); }
h2 { font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl)); }
h3 { font-size: clamp(var(--font-size-xl),  3vw, var(--font-size-2xl)); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
  color: var(--color-text-muted);
  max-width: 65ch;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-muted   { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Primär */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Sekundär (Ghost) */
.btn--secondary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Outline neutral */
.btn--outline {
  background-color: transparent;
  border-color: var(--color-border-hover);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Ghost */
.btn--ghost {
  background-color: transparent;
  color: var(--color-text-muted);
}

.btn--ghost:hover {
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Icon */
.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--icon:hover {
  border-color: var(--color-border-hover);
  color: var(--color-primary);
}

/* Größen */
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--font-size-sm); }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--font-size-md); }
.btn--xl { padding: var(--space-5) var(--space-10); font-size: var(--font-size-lg); }


/* ============================================================
   STATUS-BADGE — Dynamischer Öffnungsstatus (Element im Hero)
============================================================ */
.sbh-status-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.sbh-status-badge__dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #2f9e56;
}

.sbh-status-badge__dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.55;
  animation: sbhDotPulse 1.8s ease-out infinite;
}

.sbh-status-badge--closing .sbh-status-badge__dot { background: #f2c94c; }
.sbh-status-badge--closed  .sbh-status-badge__dot { background: #e0524a; }

@keyframes sbhDotPulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  70%  { transform: scale(2.3); opacity: 0; }
  100% { transform: scale(2.3); opacity: 0; }
}

.sbh-status-badge__text {
  min-width: 0;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: currentColor;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .sbh-status-badge__text {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sbh-status-badge__dot::before { animation: none; }
}


/* ============================================================
   ANKÜNDIGUNGSLEISTE — "Wir suchen dich"
============================================================ */
.sbh-announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announce-height);
  z-index: 210;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary) 55%, var(--color-primary-dark));
}

.sbh-announce-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 0 16px;
  text-decoration: none;
  color: #ffffff;
}

.sbh-announce-bar__text {
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sbh-announce-bar__text strong {
  font-weight: 700;
  color: #ffffff;
}

.sbh-announce-bar__text--short {
  display: none;
}

.sbh-announce-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding: 5px 12px 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.sbh-announce-bar__cta svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-announce-bar__link:hover .sbh-announce-bar__cta {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-primary-dark);
  }

  .sbh-announce-bar__link:hover .sbh-announce-bar__cta svg {
    transform: translateX(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sbh-announce-bar__cta,
  .sbh-announce-bar__cta svg {
    transition: none;
  }
}

@media (max-width: 560px) {
  .sbh-announce-bar__text:not(.sbh-announce-bar__text--short) {
    display: none;
  }

  .sbh-announce-bar__text--short {
    display: block;
    font-size: 14px;
  }

  .sbh-announce-bar__text--short strong {
    letter-spacing: 0.01em;
  }

  .sbh-announce-bar__link {
    gap: 10px;
  }

  .sbh-announce-bar__cta {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-primary-dark);
  }
}

@media (max-width: 340px) {
  .sbh-announce-bar__cta span { display: none; }
  .sbh-announce-bar__cta { padding: 6px 10px; }
}


/* ============================================================
   NAVIGATION
============================================================ */
.header {
  position: fixed;
  top: var(--announce-height);
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-sticky);
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: #f2f0ea;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-6);
}

/* Logo */
.nav__logo {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: clamp(38px, 9vw, 58px);
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}

/* Hell-Version: sichtbar auf transparentem Nav */
.nav__logo-img--light {
  opacity: 1;
}

/* Dunkel-Version: überlagert, initial unsichtbar */
.nav__logo-img--dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

/* Auf gescrolltem Nav: dunkel einblenden, hell ausblenden */
.header.scrolled .nav__logo-img--light { opacity: 0; }
.header.scrolled .nav__logo-img--dark  { opacity: 1; }

/* Desktop links */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav__link:hover { color: #ffffff; }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.header.scrolled .nav__link       { color: #2a2a2a; }
.header.scrolled .nav__link:hover { color: #000000; }

/* Sprachumschalter — schlicht, textbasiert, passend zur Nav-Typografie */
.sbh-lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  padding: 3px;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease;
}

.sbh-lang-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: var(--radius-full);
  background: #ffffff;
  transition: transform 0.35s var(--ease-out), background-color 0.3s ease;
  z-index: 0;
}

.sbh-lang-switch--en .sbh-lang-switch__thumb {
  transform: translateX(100%);
}

.sbh-lang-switch__opt {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.sbh-lang-switch__opt.is-active {
  color: #1a1a1a;
}

.header.scrolled .sbh-lang-switch { background: rgba(26, 26, 26, 0.08); }
.header.scrolled .sbh-lang-switch__thumb { background: #1a1a1a; }
.header.scrolled .sbh-lang-switch__opt { color: rgba(26, 26, 26, 0.45); }
.header.scrolled .sbh-lang-switch__opt.is-active { color: #ffffff; }

@media (prefers-reduced-motion: reduce) {
  .sbh-lang-switch__thumb {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .sbh-lang-switch__opt:not(.is-active):hover { color: rgba(255, 255, 255, 0.9); }
  .header.scrolled .sbh-lang-switch__opt:not(.is-active):hover { color: rgba(26, 26, 26, 0.75); }
}

@media (max-width: 768px) {
  .sbh-lang-switch {
    margin-right: 14px;
    font-size: 10px;
  }
}

/* CTA Button */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

/* Outline button — Jetzt Bestellen */
.nav__cta--outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: transparent;
}

.nav__cta--outline:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav__cta--outline {
  border-color: rgba(26, 26, 26, 0.35);
  color: #1a1a1a;
  background: transparent;
}

.header.scrolled .nav__cta--outline:hover {
  border-color: #1a1a1a;
  background: rgba(26, 26, 26, 0.06);
}

/* Filled button — Reservieren */
.nav__cta--filled {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.nav__cta--filled:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(155, 28, 28, 0.35);
}

.header.scrolled .nav__cta--filled {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.header.scrolled .nav__cta--filled:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(155, 28, 28, 0.35);
}

/* Hover-Lift nur für Geräte mit echtem Hover (kein "stecken bleiben" auf Touch) */
@media (hover: hover) and (pointer: fine) {
  .nav__cta--outline:hover,
  .header.scrolled .nav__cta--outline:hover,
  .nav__cta--filled:hover,
  .header.scrolled .nav__cta--filled:hover {
    transform: translateY(-1px);
  }
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle-bar {
  display: block;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 99px;
  transition:
    width 0.3s ease,
    transform 0.35s var(--ease-out),
    opacity 0.25s ease,
    background-color 0.3s ease;
}

.nav__toggle-bar:nth-child(1) { width: 22px; }
.nav__toggle-bar:nth-child(2) { width: 16px; }
.nav__toggle-bar:nth-child(3) { width: 22px; }

.header.scrolled .nav__toggle-bar { background: #1a1a1a; }

.nav__toggle.open .nav__toggle-bar:nth-child(1) {
  width: 22px;
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle.open .nav__toggle-bar:nth-child(3) {
  width: 22px;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 398;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Mobile bottom sheet */
.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f0ea;
  padding: 28px 28px 0;
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
  z-index: 399;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-drawer);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.12);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile__handle {
  width: 36px;
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 99px;
  margin: 0 auto 28px;
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 4.2vw, 20px);
  font-weight: 300;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: color 0.2s ease;
}

.nav-mobile__list li:last-child .nav-mobile__link { border-bottom: none; }

.nav-mobile__link svg {
  opacity: 0.25;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.nav-mobile__link:hover       { color: var(--color-primary); }
.nav-mobile__link:hover svg   { opacity: 0.7; }

.nav-mobile__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-mobile__cta:hover {
  background: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .nav-mobile__link:hover svg { transform: translateX(4px); }
  .nav-mobile__cta:hover      { transform: translateY(-1px); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav__list,
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  /* Logo links, Sprachumschalter + Hamburger als Gruppe rechts */
  .nav__logo { margin-right: auto; }
}


/* ============================================================
   CARDS
============================================================ */
.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--glow:hover {
  box-shadow: var(--shadow-glow);
}


/* ============================================================
   GRID & FLEX UTILITIES
============================================================ */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex         { display: flex; }
.flex--center { display: flex; align-items: center; justify-content: center; }
.flex--between{ display: flex; align-items: center; justify-content: space-between; }
.flex--gap-sm { gap: var(--space-3); }
.flex--gap    { gap: var(--space-6); }
.flex--gap-lg { gap: var(--space-12); }
.flex--col    { flex-direction: column; }
.flex--wrap   { flex-wrap: wrap; }


/* ============================================================
   UTILITY KLASSEN
============================================================ */
/* Abstände */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-inline: auto; }

/* Sichtbarkeit */
.hidden   { display: none !important; }
.sr-only  {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Trennlinie */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  margin-block: var(--space-6);
}

.divider--center { margin-inline: auto; }

/* Section Label */
.section__label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  background-color: rgba(155, 28, 28, 0.12);
  color: var(--color-primary-light);
  border: 1px solid rgba(155, 28, 28, 0.2);
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-12);
}


/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    visibility 250ms ease,
    transform 250ms var(--ease-out),
    background-color 250ms ease;
  z-index: var(--z-above);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--color-primary-dark);
}

.scroll-top:active {
  transform: translateY(0) scale(0.94);
  transition-duration: 120ms;
}

@media (hover: hover) and (pointer: fine) {
  .scroll-top:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .scroll-top:hover,
  .scroll-top:active { transform: none; }
}


/* ============================================================
   SBH STICKY CTA — Reservieren / Online Bestellen (Mobile)
============================================================ */
.sbh-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: rgba(26, 26, 26, 0.1);
  box-shadow: 0 -4px 24px rgba(26, 26, 26, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sbh-sticky-cta.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sbh-sticky-cta {
    transition: none;
  }
}

.sbh-sticky-cta__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: var(--sticky-cta-height);
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.sbh-sticky-cta__btn--reserve {
  background: #ffffff;
  color: #1a1a1a;
}

.sbh-sticky-cta__btn--order {
  background: var(--color-primary);
  color: #ffffff;
}

@media (max-width: 767px) {
  .sbh-sticky-cta {
    display: flex;
    gap: 1px;
  }
}


/* ============================================================
   ANIMATIONEN (Vorbereitung)
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.fade-in--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.fade-in--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Verzögerungen für gestaffelte Animationen */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }


/* ============================================================
   RESPONSIVE — MOBILE FIRST
============================================================ */

/* sm: ≥ 480px */
@media (min-width: 480px) {
  /* ... */
}

/* md: ≥ 768px */
@media (min-width: 768px) {
  .nav__list   { display: flex; }
  .nav__toggle { display: none; }
}

/* lg: ≥ 1024px */
@media (min-width: 1024px) {
  .grid--3-lg { grid-template-columns: repeat(3, 1fr); }
  .grid--4-lg { grid-template-columns: repeat(4, 1fr); }
}

/* xl: ≥ 1280px */
@media (min-width: 1280px) {
  /* ... */
}

/* Mobile Overrides (max-width) */
@media (max-width: 767px) {
  .nav__list   { display: none; }
  .nav__toggle { display: flex; }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: var(--space-16);
  }

  .scroll-top {
    bottom: calc(var(--sticky-cta-height) + var(--space-4));
    right: var(--space-4);
  }

  body {
    padding-bottom: var(--sticky-cta-height);
  }
}


/* ============================================================
   SBH HERO — VIDEOBANNER
============================================================ */
.sbh-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video background */
.sbh-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sbh-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

/* Gradient overlay */
.sbh-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

/* Content block */
.sbh-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: clamp(118px, 14vw, 156px) clamp(20px, 6vw, 64px) clamp(60px, 10vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow / H1 */
.sbh-hero__content > .sbh-status-badge {
  margin-bottom: clamp(16px, 2.5vw, 24px);
  opacity: 0;
  transform: translateY(16px);
  animation: sbhFadeUp 0.8s var(--ease-out) 0.05s forwards;
}

.sbh-hero__eyebrow {
  font-family: var(--font-family);
  font-size: clamp(10px, 2.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: clamp(14px, 3vw, 22px);
  opacity: 0;
  transform: translateY(16px);
  animation: sbhFadeUp 0.8s var(--ease-out) 0.15s forwards;
}

/* Main title / H2 */
.sbh-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: clamp(16px, 3vw, 24px);
  opacity: 0;
  transform: translateY(22px);
  animation: sbhFadeUp 0.9s var(--ease-out) 0.32s forwards;
}

.sbh-hero__title em {
  font-style: italic;
  font-weight: 300;
}

/* Description */
.sbh-hero__desc {
  font-family: var(--font-family);
  font-size: clamp(14px, 2.8vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 42ch;
  margin-bottom: clamp(28px, 5vw, 42px);
  opacity: 0;
  transform: translateY(18px);
  animation: sbhFadeUp 0.9s var(--ease-out) 0.48s forwards;
}

/* Button group */
.sbh-hero__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(16px, 2.4vw, 22px);
  opacity: 0;
  transform: translateY(16px);
  animation: sbhFadeUp 0.9s var(--ease-out) 0.62s forwards;
}

/* Primary button */
.sbh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.38s var(--ease-out),
    border-color 0.38s var(--ease-out),
    box-shadow 0.38s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.sbh-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sbh-btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow:
    0 8px 28px rgba(155, 28, 28, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.sbh-btn-primary:hover::before { opacity: 1; }

.sbh-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 12px rgba(155, 28, 28, 0.45);
  transition-duration: 0.12s;
}

.sbh-btn-primary svg {
  transition: transform 0.28s var(--ease-out);
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-btn-primary:hover      { transform: translateY(-2px); }
  .sbh-btn-primary:hover svg  { transform: translateX(3px); }
}

/* Secondary button */
.sbh-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    border-color 0.32s ease,
    background 0.32s ease,
    transform 0.25s var(--ease-out);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sbh-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-btn-secondary:hover { transform: translateY(-2px); }
}

.sbh-btn-secondary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

/* Speisekarte-Link — kein Button, auffälliger Text-Link mit Icon + Pfeil */
.sbh-hero__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: clamp(32px, 6vw, 52px);
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(16px);
  animation: sbhFadeUp 0.9s var(--ease-out) 0.72s forwards;
}

.sbh-hero__menu-link span {
  position: relative;
}

.sbh-hero__menu-link span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  opacity: 0.5;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.sbh-hero__menu-link-icon {
  flex-shrink: 0;
  color: #ffffff;
}

.sbh-hero__menu-link-arrow {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-hero__menu-link:hover span::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .sbh-hero__menu-link:hover .sbh-hero__menu-link-arrow {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sbh-hero__menu-link span::after,
  .sbh-hero__menu-link-arrow {
    transition: none;
  }
}

/* Benefits list */
.sbh-hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px);
  animation: sbhFadeUp 0.9s var(--ease-out) 0.78s forwards;
}

.sbh-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sbh-benefit__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.sbh-benefit__icon svg {
  width: 16px;
  height: 16px;
}

.sbh-benefit__text {
  font-family: var(--font-family);
  font-size: clamp(12px, 2.4vw, 13px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.58);
}

/* Scroll indicator */
.sbh-hero__scroll {
  position: absolute;
  bottom: clamp(88px, 11vw, 108px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: sbhFadeIn 1s ease 1.2s forwards;
}

.sbh-hero__scroll span {
  font-family: var(--font-family);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.sbh-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  animation: sbhScrollPulse 2s ease-in-out 1.4s infinite;
}

/* Info bar — Öffnungsstatus & Adresse */
.sbh-hero__infobar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: sbhFadeIn 1s ease 1s forwards;
}

.sbh-hero__infobar-row {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: 14px clamp(20px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.sbh-hero__infobar-row--center {
  justify-content: center;
}

.sbh-hero__address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

.sbh-hero__address svg { flex-shrink: 0; opacity: 0.7; }

/* Keyframes */
@keyframes sbhFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sbhFadeIn {
  to { opacity: 1; }
}

@keyframes sbhScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.8;  transform: scaleY(1.15); }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .sbh-hero__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 138px;
    padding-bottom: 104px;
  }

  .sbh-hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .sbh-btn-primary,
  .sbh-btn-secondary {
    width: 100%;
    padding: 13px 20px;
    justify-content: center;
  }

  .sbh-hero__scroll {
    display: none;
  }

  .sbh-hero__infobar-row {
    padding: 12px 20px;
  }

  .sbh-hero__address { font-size: 11px; }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 900px) {
  .sbh-hero__content { max-width: 600px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sbh-hero__content > .sbh-status-badge,
  .sbh-hero__eyebrow,
  .sbh-hero__title,
  .sbh-hero__desc,
  .sbh-hero__buttons,
  .sbh-hero__benefits,
  .sbh-hero__scroll,
  .sbh-hero__infobar {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .sbh-scroll-line { animation: none; }
  .sbh-status-badge__dot::before { animation: none; }

  /* Scroll-Reveal: Fade bleibt, Bewegung entfällt */
  .fade-in,
  .fade-in--left,
  .fade-in--right {
    transition: opacity 0.2s ease;
    transform: none;
  }

  /* Hover-/Press-Lift überall entfernen, Farb-/Schattenwechsel bleibt */
  .nav__cta--outline:hover,
  .header.scrolled .nav__cta--outline:hover,
  .nav__cta--filled:hover,
  .header.scrolled .nav__cta--filled:hover,
  .nav-mobile__link:hover svg,
  .nav-mobile__cta:hover,
  .sbh-btn-primary:hover,
  .sbh-btn-primary:hover svg,
  .sbh-btn-primary:active,
  .sbh-btn-secondary:hover,
  .sbh-btn-secondary:active,
  .sbh-speisekarte__btn--primary:hover,
  .sbh-speisekarte__btn--primary:active,
  .sbh-speisekarte__btn--secondary:hover,
  .sbh-speisekarte__btn--secondary:active,
  .sbh-ueberuns__block:hover,
  .sbh-ueberuns__img-wrap:hover .sbh-ueberuns__img {
    transform: none;
  }
}


/* ============================================================
   SBH SPEISEKARTE — SPLIT SECTION
============================================================ */
.sbh-speisekarte {
  background: #f1f0eb;
  scroll-margin-top: calc(var(--header-height) + var(--announce-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Auf der Speisekarte-Seite ist dies die erste Section im <main> —
   ohne Hero-Banner braucht sie oben Platz, damit der fixierte Header
   (Ankündigungsleiste + Nav) den Inhalt nicht überdeckt. */
.sbh-speisekarte--page {
  padding-top: calc(var(--header-height) + var(--announce-height) + clamp(32px, 5vw, 64px));
}

/* Left: Content */
.sbh-speisekarte__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(32px, 4vw, 72px) clamp(36px, 5vw, 64px) clamp(40px, 7vw, 120px);
  max-width: 640px;
  margin-left: auto;
}

.sbh-speisekarte__eyebrow {
  font-family: var(--font-family);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.sbh-speisekarte__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.sbh-speisekarte__text {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 400;
  color: #5c5c5c;
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.sbh-speisekarte__subtext {
  font-family: var(--font-family);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 300;
  color: #8a8a8a;
  line-height: 1.8;
  max-width: 44ch;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

/* Buttons */
.sbh-speisekarte__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sbh-speisekarte__note {
  font-family: var(--font-family);
  font-size: 11.5px;
  color: #9a9a9a;
  margin-top: 10px;
}

.sbh-speisekarte__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s ease,
    color 0.3s ease,
    border-color 0.35s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.35s ease;
}

/* Primary: Brand Rot */
.sbh-speisekarte__btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-primary);
}

.sbh-speisekarte__btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 22px rgba(155, 28, 28, 0.32);
}

.sbh-speisekarte__btn--primary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

/* Secondary: Border */
.sbh-speisekarte__btn--secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(26, 26, 26, 0.32);
}

.sbh-speisekarte__btn--secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.sbh-speisekarte__btn--secondary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-speisekarte__btn--primary:hover,
  .sbh-speisekarte__btn--secondary:hover {
    transform: translateY(-2px);
  }
}

/* Right: Image */
.sbh-speisekarte__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 44px);
}

.sbh-speisekarte__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .sbh-speisekarte {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .sbh-speisekarte__img-wrap {
    padding: 0 24px 48px;
  }

  .sbh-speisekarte__content {
    max-width: 100%;
    margin-left: 0;
    padding: 40px 20px 48px;
  }

  .sbh-speisekarte__buttons {
    flex-direction: column;
  }

  .sbh-speisekarte__btn {
    width: 100%;
    padding: 13px 24px;
  }
}


/* ============================================================
   SBH MENÜ — Interaktive Speisekarte
============================================================ */
.sbh-menu {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-8) var(--container-padding) var(--space-24);
}

/* Kategorie-Tabs */
.sbh-menu__nav-wrap {
  position: sticky;
  top: calc(var(--header-height) + var(--announce-height));
  z-index: var(--z-above);
  background: var(--color-bg);
  padding: var(--space-4) 0;
  margin: 0 calc(var(--container-padding) * -1);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  border-bottom: 1px solid var(--color-border);
}

.sbh-menu__nav {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sbh-menu__nav::-webkit-scrollbar {
  display: none;
}

.sbh-menu__tab {
  flex: 0 0 auto;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.sbh-menu__tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-hover);
}

.sbh-menu__tab.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Unterkategorien (Menüs, Don) */
.sbh-menu__subnav {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

.sbh-menu__subnav[hidden] {
  display: none;
}

.sbh-menu__subtab {
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: var(--space-2) 0;
  margin-right: var(--space-5);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.sbh-menu__subtab:hover {
  color: var(--color-text);
}

.sbh-menu__subtab.is-active {
  color: var(--color-primary-light);
  border-bottom-color: var(--color-primary);
}

/* Panels */
.sbh-menu__panel {
  display: none;
  padding-top: var(--space-8);
}

.sbh-menu__panel.is-active {
  display: block;
}

.sbh-menu__panel.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.sbh-menu__panel.is-active:not(.is-entering) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .sbh-menu__panel.is-active:not(.is-entering) {
    transition: none;
  }
}

.sbh-menu__subpanel {
  display: none;
}

.sbh-menu__subpanel.is-active {
  display: block;
}

.sbh-menu__panel-intro {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-6);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.06);
}

.sbh-menu__panel-intro-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-primary);
}

/* Grid */
.sbh-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.sbh-menu__grid--ramen {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Item — Karte mit Foto */
.sbh-menu__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.sbh-menu__item:hover {
  border-color: var(--color-border-hover);
}

.sbh-menu__item--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.sbh-menu__item-img {
  flex: 0 0 auto;
  align-self: flex-start;
  width: clamp(140px, 42%, 220px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

/* Fallback für Browser/Geräte ohne aspect-ratio-Unterstützung (z. B. ältere
   Safari-/iOS-Versionen) — ohne das würde die Box auf Höhe 0 kollabieren. */
@supports not (aspect-ratio: 1 / 1) {
  .sbh-menu__item-img {
    height: 180px;
  }
}

.sbh-menu__item-img--placeholder,
.sbh-menu__ramen-img--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-text-subtle);
}

.sbh-menu__item-img--placeholder svg,
.sbh-menu__ramen-img--placeholder svg {
  opacity: 0.5;
}

.sbh-menu__item-img--placeholder span,
.sbh-menu__ramen-img--placeholder span {
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sbh-menu__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.sbh-menu__item--photo:hover .sbh-menu__item-img img {
  transform: scale(1.04);
}

.sbh-menu__item--photo .sbh-menu__item-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sbh-menu__item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.sbh-menu__item-name {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-tight);
}

.sbh-menu__item-count {
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
}

.sbh-menu__item-num {
  font: inherit;
  color: inherit;
}

.sbh-menu__item-price {
  flex: 0 0 auto;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-light);
  white-space: nowrap;
}

.sbh-menu__item-desc {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

.sbh-menu__item-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(155, 28, 28, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.sbh-menu__item-allergens {
  font-family: var(--font-family);
  font-size: 11px;
  color: var(--color-text-subtle);
  letter-spacing: 0.02em;
  margin-top: var(--space-1);
}

.sbh-menu__item--photo .sbh-menu__item-head {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}

.sbh-menu__item--photo .sbh-menu__item-name {
  font-size: var(--font-size-base);
}

.sbh-menu__item--photo .sbh-menu__item-price {
  font-size: var(--font-size-xs);
}

.sbh-menu__item--photo .sbh-menu__item-desc {
  font-size: var(--font-size-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sbh-menu__item--photo .sbh-menu__item-allergens {
  font-size: 10px;
}

/* Ramen-Karten mit Varianten */
.sbh-menu__ramen {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.sbh-menu__ramen--photo {
  padding: 0;
  overflow: hidden;
}

.sbh-menu__ramen-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

@supports not (aspect-ratio: 1 / 1) {
  .sbh-menu__ramen-img {
    height: 260px;
  }
}

.sbh-menu__ramen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.sbh-menu__ramen--photo:hover .sbh-menu__ramen-img img {
  transform: scale(1.04);
}

.sbh-menu__ramen--photo .sbh-menu__item-name,
.sbh-menu__ramen--photo .sbh-menu__item-desc,
.sbh-menu__ramen--photo .sbh-menu__item-allergens,
.sbh-menu__ramen--photo .sbh-menu__variants {
  margin-left: var(--space-5);
  margin-right: var(--space-5);
}

.sbh-menu__ramen--photo .sbh-menu__item-name {
  margin-top: var(--space-5);
}

.sbh-menu__ramen--photo .sbh-menu__variants {
  margin-bottom: var(--space-5);
}

.sbh-menu__variants {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.sbh-menu__variants li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
}

.sbh-menu__variants li span:last-child {
  color: var(--color-primary-light);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.sbh-menu__legend {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.sbh-menu__allergen-note {
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  color: var(--color-text-subtle);
  text-align: center;
}

.sbh-menu__legend-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-6);
  margin: var(--space-4) 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.sbh-menu__legend-code {
  display: inline-block;
  min-width: 16px;
  margin-right: 4px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

/* Helles Creme-Theme statt dunklem Standard-Hintergrund.
   Überschreibt nur die Farb-Tokens (als body-Klasse auf der Speisekarte-Seite,
   oder als Wrapper-Klasse um die eingebettete Menükarte auf der Startseite).
   Header/Footer bleiben unangetastet (die verwenden eigene, fest codierte
   Farben statt dieser Variablen). */
.page-menu-light {
  background-color: var(--color-bg);
  --color-bg:            #f1f0eb;
  --color-bg-secondary:  #e6e4dc;
  --color-bg-card:       #ffffff;
  --color-text:          #1a1a1a;
  --color-text-muted:    #6b6b6b;
  --color-text-subtle:   #9a9a9a;
  --color-border:        rgba(0, 0, 0, 0.08);
  --color-border-hover:  rgba(0, 0, 0, 0.16);
  --color-primary-light: #a83232;
}

/* Mobile */
@media (max-width: 640px) {
  .sbh-menu__grid,
  .sbh-menu__grid--ramen {
    grid-template-columns: 1fr;
  }

  .sbh-menu__item-name {
    font-size: var(--font-size-base);
  }

  .sbh-menu__item-img {
    width: clamp(90px, 32%, 120px);
  }
}


/* ============================================================
   SBH ÜBER UNS — SBH_UeberUns
============================================================ */
.sbh-ueberuns {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #ffffff;
  min-height: clamp(620px, 48vw, 760px);
  scroll-margin-top: calc(var(--header-height) + var(--announce-height));
}

/* LEFT */
.sbh-ueberuns__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 64px) clamp(48px, 6vw, 88px) clamp(36px, 7vw, 104px);
}

.sbh-ueberuns__eyebrow {
  font-family: var(--font-family);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.sbh-ueberuns__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.sbh-ueberuns__intro {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.7;
  color: #5c5c5c;
  max-width: 46ch;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.sbh-ueberuns__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 18px);
}

.sbh-ueberuns__block {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 4px;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2vw, 22px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sbh-ueberuns__block:hover {
  border-color: rgba(26, 26, 26, 0.16);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-ueberuns__block:hover {
    transform: translateY(-2px);
  }
}

.sbh-ueberuns__block:last-child {
  grid-column: 1 / -1;
}

.sbh-ueberuns__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(155, 28, 28, 0.08);
  color: var(--color-primary);
  margin-bottom: 14px;
}

.sbh-ueberuns__label {
  display: block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.sbh-ueberuns__detail {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.65);
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbh-ueberuns__link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.sbh-ueberuns__link:hover {
  color: var(--color-primary);
}

.sbh-ueberuns__note {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.35);
  font-style: italic;
}

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

.sbh-ueberuns__hours-row {
  display: flex;
  gap: 16px;
}

.sbh-ueberuns__hours-day {
  font-weight: 400;
  color: #1a1a1a;
  min-width: 100px;
  flex-shrink: 0;
}

.sbh-ueberuns__hours-time {
  color: rgba(26, 26, 26, 0.55);
}

/* RIGHT images */
.sbh-ueberuns__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
  position: relative;
}

.sbh-ueberuns__images::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.sbh-ueberuns__img-wrap {
  overflow: hidden;
}

.sbh-ueberuns__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-ueberuns__img-wrap:hover .sbh-ueberuns__img {
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .sbh-ueberuns {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    min-height: auto;
  }

  .sbh-ueberuns__left {
    padding: 40px 20px 32px;
    order: 1;
  }

  .sbh-ueberuns__info-grid {
    grid-template-columns: 1fr;
  }

  .sbh-ueberuns__block:last-child {
    grid-column: 1;
  }

  .sbh-ueberuns__hours-day {
    min-width: 80px;
  }

  .sbh-ueberuns__hours-row {
    flex-direction: column;
    gap: 2px;
  }

  .sbh-ueberuns__images {
    order: 2;
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    height: 220px;
  }
}


/* ============================================================
   SBH RESERVIERUNG — SBH_Reservierung_Split
============================================================ */
.sbh-reservierung {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f1f0eb;
  scroll-margin-top: calc(var(--header-height) + var(--announce-height));
}

/* LEFT content */
.sbh-reservierung__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 64px) clamp(48px, 6vw, 80px) clamp(36px, 7vw, 104px);
  max-width: 520px;
}

.sbh-reservierung__eyebrow {
  display: block;
  font-family: var(--font-family);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.sbh-reservierung__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sbh-reservierung__text {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 0;
}

.sbh-reservierung__divider {
  width: 40px;
  height: 1px;
  background: rgba(26, 26, 26, 0.12);
  margin: 28px 0;
}

.sbh-reservierung__pet-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  background: #fff4d9;
  border: 1.5px solid #e8b23d;
  border-radius: var(--radius-full, 999px);
  box-shadow: 0 2px 10px rgba(232, 178, 61, 0.28);
  font-family: var(--font-family);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 600;
  line-height: 1.35;
  color: #7a5410;
}

.sbh-reservierung__pet-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #c1841c;
}

.sbh-reservierung__call-label {
  font-family: var(--font-family);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 500;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 12px;
}

.sbh-reservierung__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.sbh-reservierung__phone:hover {
  color: var(--color-primary);
}

.sbh-reservierung__phone .sbh-reservierung__icon {
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sbh-reservierung__hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-family);
  font-size: clamp(11px, 1.1vw, 12px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.35);
}

.sbh-reservierung__hours .sbh-reservierung__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(26, 26, 26, 0.28);
  display: flex;
  align-items: center;
}

/* RIGHT widget */
.sbh-reservierung__widget {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 4vw, 64px) clamp(32px, 5vw, 64px) clamp(20px, 3vw, 48px);
}

.sbh-reservierung__widget > div {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.07), 0 1px 4px rgba(26, 26, 26, 0.04);
  overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .sbh-reservierung {
    grid-template-columns: minmax(0, 1fr);
  }

  .sbh-reservierung__content {
    max-width: 100%;
    padding: 40px 20px 28px;
  }

  .sbh-reservierung__widget {
    padding: 0 20px 48px;
    border: none;
    justify-content: flex-start;
  }

  .sbh-reservierung__widget > div {
    max-width: 100%;
  }

  .sbh-reservierung__phone {
    font-size: clamp(20px, 6vw, 28px);
  }
}


/* ============================================================
   BEWERTUNGEN — Google Reviews
============================================================ */
.sbh-reviews {
  background: linear-gradient(to bottom, #ffffff 0, #f1f0eb 90px);
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 104px);
}

.sbh-reviews__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

.sbh-reviews__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.sbh-reviews__eyebrow {
  display: block;
  font-family: var(--font-family);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.sbh-reviews__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: clamp(18px, 2.5vw, 26px);
}

.sbh-reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-reviews__rating:hover {
    border-color: rgba(26, 26, 26, 0.2);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.08);
  }
}

.sbh-reviews__rating-score {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.sbh-reviews__rating .sbh-reviews__stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: #f0b429;
}

.sbh-reviews__rating-text {
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 400;
  color: #5c5c5c;
}

.sbh-reviews__write-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0 0 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.25s ease, color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-reviews__write-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
  }
}

/* ---- Slider (generisch, für Bewertungen & Kundenfotos) ---- */
.sbh-slider {
  position: relative;
}

.sbh-slider__track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sbh-slider__track::-webkit-scrollbar {
  display: none;
}

.sbh-slider__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: #1a1a1a;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.12);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.sbh-slider__arrow--prev {
  left: -8px;
}

.sbh-slider__arrow--next {
  right: -8px;
}

.sbh-slider__arrow:disabled {
  opacity: 0.35;
  box-shadow: none;
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-slider__arrow {
    display: flex;
  }

  .sbh-slider__arrow:not(:disabled):hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
  }
}

.sbh-reviews__grid {
  gap: 18px;
  padding-bottom: 4px;
  scroll-padding-left: 0;
}

.sbh-reviews__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2 * 18px) / 3);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 4px;
  padding: clamp(22px, 2.6vw, 28px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-reviews__card:hover {
    border-color: rgba(26, 26, 26, 0.16);
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
  }
}

.sbh-reviews__card .sbh-reviews__stars {
  display: flex;
  gap: 2px;
  color: #f0b429;
  margin-bottom: 14px;
}

.sbh-reviews__text {
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.72);
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* -webkit-line-clamp bleibt trotz overflow:hidden per Touch/Trackpad
     scrollbar (Browser-Eigenheit) — Text ist nicht interaktiv, daher
     Events durchreichen statt hier abfangen zu lassen */
  pointer-events: none;
}

.sbh-reviews__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 26, 26, 0.07);
}

.sbh-reviews__author-name {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.sbh-reviews__author-meta {
  font-family: var(--font-family);
  font-size: 11.5px;
  font-weight: 400;
  color: #8a8a8a;
}

.sbh-reviews__photos-slider {
  margin-top: clamp(28px, 3.5vw, 40px);
}

.sbh-reviews__photos {
  gap: 12px;
}

.sbh-reviews__photo {
  flex: 0 0 calc((100% - 5 * 12px) / 6);
  scroll-snap-align: start;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sbh-reviews__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-reviews__photo:hover img {
    transform: scale(1.06);
  }
}

.sbh-reviews__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(26, 26, 26, 0.03);
  border: 1px dashed rgba(26, 26, 26, 0.15);
  color: rgba(26, 26, 26, 0.32);
}

.sbh-reviews__photo--placeholder span {
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .sbh-reviews__card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .sbh-reviews__photo {
    flex-basis: calc((100% - 3 * 12px) / 4);
  }
}

@media (max-width: 640px) {
  .sbh-reviews__card {
    flex-basis: 86%;
  }

  .sbh-reviews__photo {
    flex-basis: calc((100% - 2 * 12px) / 3);
  }
}


/* ============================================================
   SBH LIGHTBOX — Kundenfotos Vollbildansicht
============================================================ */
.sbh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sbh-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.sbh-lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(920px, 100%);
  max-height: 100%;
  margin: 0;
}

.sbh-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.sbh-lightbox__caption {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.sbh-lightbox__close,
.sbh-lightbox__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-lightbox__close:hover,
  .sbh-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

.sbh-lightbox__close {
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
}

.sbh-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.sbh-lightbox__nav--prev {
  left: clamp(8px, 3vw, 28px);
}

.sbh-lightbox__nav--next {
  right: clamp(8px, 3vw, 28px);
}

@media (max-width: 640px) {
  .sbh-lightbox__nav {
    width: 38px;
    height: 38px;
  }
}


/* ============================================================
   SBH TIKTOK — Videokarussell (innerhalb .sbh-reviews)
============================================================ */
.sbh-reviews__subheading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(40px, 5vw, 56px) 0 clamp(16px, 2vw, 20px);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
}

.sbh-tiktok__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: -2px 0 0 rgba(37, 244, 238, 0.5), 2px 0 0 rgba(254, 44, 85, 0.5);
}

.sbh-tiktok__grid {
  gap: 18px;
  padding-bottom: 4px;
}

.sbh-tiktok__card {
  flex: 0 0 calc((100% - 2 * 18px) / 3);
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 8px;
  /* Reserviert Platz in der finalen Embed-Höhe, damit die Karte beim
     asynchronen Laden von embed.js nicht sichtbar nachträglich aufspringt */
  min-height: 740px;
}

.sbh-tiktok__card blockquote.tiktok-embed {
  margin: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .sbh-tiktok__card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .sbh-tiktok__card {
    flex-basis: 86%;
  }
}


/* ============================================================
   SBH KARRIERE — Wir suchen dich
============================================================ */
.sbh-karriere {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 11vw, 128px) 24px;
}

.sbh-karriere__bg {
  position: absolute;
  inset: -80px 0;
  background-image: url('assets/SBH_Karriere.jpg');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
  will-change: transform;
}

.sbh-karriere__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.78));
}

.sbh-karriere__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sbh-karriere__eyebrow {
  font-family: var(--font-family);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: clamp(12px, 2vw, 16px);
}

.sbh-karriere__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: #f2f0ea;
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.sbh-karriere__text {
  font-family: var(--font-family);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.sbh-karriere__jobs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: clamp(28px, 3.5vw, 36px);
}

.sbh-karriere__job {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  text-align: left;
}

.sbh-karriere__job-label {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6bcf7f;
  margin-bottom: 10px;
}

.sbh-karriere__job-title {
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.sbh-karriere__job-desc {
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.sbh-karriere__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s var(--ease-out);
}

.sbh-karriere__btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-karriere__btn:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sbh-karriere__btn:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .sbh-karriere__bg {
    background-attachment: scroll;
    inset: 0;
  }

  .sbh-karriere {
    padding: 64px 20px;
  }

  .sbh-karriere__job {
    padding: 20px;
  }
}


/* ============================================================
   SBH FOOTER
============================================================ */
.sbh-footer {
  background: #0a0a0a;
  color: #f2f0ea;
}

.sbh-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.6fr;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(56px, 7vw, 88px) clamp(36px, 7vw, 104px);
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}

/* Brand col */
.sbh-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sbh-footer__logo {
  height: 38px;
  width: auto;
}

.sbh-footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  font-style: italic;
  color: rgba(242, 240, 234, 0.4);
  line-height: 1.5;
}

/* Columns */
.sbh-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sbh-footer__heading {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.35);
  margin-bottom: 4px;
}

.sbh-footer__address {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242, 240, 234, 0.5);
  font-style: normal;
}

.sbh-footer__link {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 300;
  color: rgba(242, 240, 234, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.sbh-footer__link:hover {
  color: #f2f0ea;
}

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

.sbh-footer__hours-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-family);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 300;
  line-height: 1.5;
}

.sbh-footer__hours-row span:first-child {
  color: rgba(242, 240, 234, 0.6);
}

.sbh-footer__hours-row span:last-child {
  color: rgba(242, 240, 234, 0.35);
}

/* Bottom bar */
.sbh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px clamp(36px, 7vw, 104px);
}

.sbh-footer__copy {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 300;
  color: rgba(242, 240, 234, 0.25);
  letter-spacing: 0.02em;
}

.sbh-footer__team-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f2f0ea;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-footer__team-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
}

@media (max-width: 900px) {
  .sbh-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 560px) {
  .sbh-footer__main {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 28px;
  }

  .sbh-footer__bottom {
    padding: 16px 20px;
  }

  .sbh-footer__copy {
    font-size: 11px;
  }
}


/* ============================================================
   IMPRESSUM PAGE — Parallax Hero + Content
============================================================ */

/* Parallax Hero Banner */
.sbh-imp-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sbh-imp-hero__bg {
  position: absolute;
  inset: -80px 0;
  background-image: url('assets/SBH_Sashimicut.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.sbh-imp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
}

.sbh-imp-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  color: #f2f0ea;
  letter-spacing: 0.02em;
  margin-top: calc(var(--header-height) + var(--announce-height));
}

@media (max-width: 768px) {
  .sbh-imp-hero {
    height: 260px;
  }

  .sbh-imp-hero__bg {
    background-attachment: scroll;
    inset: 0;
  }
}

/* Content */
.sbh-impressum {
  background: #f5f4f0;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.sbh-impressum__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

.sbh-impressum__block {
  margin-bottom: clamp(28px, 3.5vw, 40px);
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.sbh-impressum__block:last-of-type {
  border-bottom: none;
}

.sbh-impressum__heading {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.sbh-impressum__block p {
  font-family: var(--font-family);
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 10px;
}

.sbh-impressum__block p:last-child {
  margin-bottom: 0;
}

.sbh-impressum__link {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sbh-impressum__link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.sbh-impressum__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.45);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.sbh-impressum__back:hover {
  color: #1a1a1a;
}


/* ============================================================
   ONBOARDING PAGE — Team-Bereich mit Passwortsperre (Notion-Optik)
============================================================ */

/* Schlanke Kopfzeile — kein Logo-Bild, nur Text */
.sbh-notion-bar {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  background: #ffffff;
}

.sbh-notion-bar__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sbh-notion-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.sbh-notion-bar__logo {
  display: block;
  height: 32px;
  width: auto;
}

.sbh-notion-bar__brand span {
  font-family: var(--font-family);
  font-weight: 600;
  color: #1a1a1a;
}

.sbh-notion-bar__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-notion-bar__back:hover {
    color: var(--color-primary);
  }
}

/* Seiteninhalt */
.sbh-notion {
  background: #ffffff;
  min-height: calc(100dvh - 250px);
  padding: clamp(32px, 6vw, 56px) 0 clamp(56px, 8vw, 88px);
}

.sbh-notion__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.sbh-notion__titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.sbh-notion__icon {
  font-size: 34px;
  line-height: 1;
}

.sbh-notion__title {
  font-family: var(--font-family);
  font-size: clamp(24px, 3.4vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.sbh-notion__block {
  margin-bottom: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.sbh-notion__block:last-child {
  border-bottom: none;
}

.sbh-notion__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.sbh-notion__block p {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.65);
}

.sbh-onboarding__gate {
  max-width: 400px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
  padding: clamp(32px, 5vw, 44px) clamp(24px, 4vw, 36px);
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
}

.sbh-onboarding__gate-eyebrow {
  display: block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.sbh-onboarding__gate-title {
  font-family: var(--font-family);
  font-size: clamp(18px, 2.6vw, 21px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 22px;
}

.sbh-onboarding__gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sbh-onboarding__gate-input {
  padding: 12px 16px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 4px;
  background: #f7f6f3;
  font-family: var(--font-family);
  font-size: 14px;
  color: #1a1a1a;
  transition: border-color 0.2s ease;
}

.sbh-onboarding__gate-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.sbh-onboarding__gate-btn {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-onboarding__gate-btn:hover {
    background: var(--color-primary-dark);
  }
}

.sbh-onboarding__gate-error {
  margin-top: 14px;
  font-family: var(--font-family);
  font-size: 13px;
  color: #b3261e;
}

.sbh-onboarding__tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sbh-onboarding__tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-onboarding__tool:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.06);
  }
}

.sbh-onboarding__tool-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbh-onboarding__tool-name {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.sbh-onboarding__tool-desc {
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.55);
}

.sbh-onboarding__tool-icon {
  flex-shrink: 0;
  color: var(--color-primary);
}


/* ============================================================
   JOBS PAGE — Offene Stellen
============================================================ */
.sbh-jobs {
  background: #f5f4f0;
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 112px);
}

.sbh-jobs__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

.sbh-jobs__eyebrow {
  display: block;
  font-family: var(--font-family);
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.sbh-jobs__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.sbh-jobs__intro {
  font-family: var(--font-family);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.7;
  color: #5c5c5c;
  max-width: 60ch;
  margin-bottom: clamp(32px, 4vw, 44px);
}

.sbh-jobs__empty {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.6);
}

.sbh-jobs__empty-link {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sbh-jobs__empty-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.sbh-jobs__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sbh-jobs__card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 4px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sbh-jobs__card:hover {
  border-color: rgba(26, 26, 26, 0.16);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-jobs__card:hover {
    transform: translateY(-2px);
  }
}

/* Aufklappbare Karte — eigenes Akkordeon (Button + CSS-Grid-Trick),
   damit die Höhe sauber animiert (natives <details> springt sofort). */
.sbh-jobs__card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(20px, 2.6vw, 26px) clamp(22px, 3vw, 30px);
  background: none;
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sbh-jobs__card-chevron {
  flex-shrink: 0;
  color: rgba(26, 26, 26, 0.35);
  transition: transform 0.3s var(--ease-out), color 0.2s ease;
}

.sbh-jobs__card.is-open .sbh-jobs__card-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

@media (hover: hover) and (pointer: fine) {
  .sbh-jobs__card-summary:hover .sbh-jobs__card-title {
    color: var(--color-primary);
  }
}

/* Grid-Zeile 0fr → 1fr animiert die Höhe von 0 bis "auto", ganz ohne
   dass JS die Pixel-Höhe messen muss. */
.sbh-jobs__card-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.sbh-jobs__card.is-open .sbh-jobs__card-panel {
  grid-template-rows: 1fr;
}

.sbh-jobs__card-body {
  min-height: 0;
  overflow: hidden;
  padding: 0 clamp(22px, 3vw, 30px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sbh-jobs__card.is-open .sbh-jobs__card-body {
  padding-bottom: clamp(22px, 3vw, 30px);
  opacity: 1;
  transition: opacity 0.3s ease 0.05s;
}

.sbh-jobs__card-title {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.sbh-jobs__card-desc {
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.65);
  white-space: pre-line;
  margin-bottom: 18px;
}

.sbh-jobs__card-apply-note {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.65);
}

.sbh-jobs__card-apply-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sbh-jobs__card-apply-link:hover {
    color: var(--color-primary-dark);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sbh-jobs__card:hover {
    transform: none;
  }

  .sbh-jobs__card-chevron {
    transition: none;
  }

  .sbh-jobs__card-panel {
    transition: none;
  }

  .sbh-jobs__card-body {
    transition: none;
  }
}


/* ============================================================
   404 — Seite nicht gefunden
============================================================ */
.sbh-404 {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
  padding: calc(var(--header-height) + var(--announce-height) + 48px) 24px 64px;
}

.sbh-404__inner {
  max-width: 560px;
  text-align: center;
}

.sbh-404__code {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 140px);
  line-height: 1;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.sbh-404__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sbh-404__text {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 36px;
}

.sbh-404__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 480px) {
  .sbh-404__buttons {
    flex-direction: column;
    width: 100%;
  }

  .sbh-404__buttons .sbh-speisekarte__btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   BEWERTUNGSBELEG — Kontaktformular
============================================================ */
.sbh-beleg {
  background: #ffffff;
  padding-top: calc(var(--header-height) + var(--announce-height) + clamp(40px, 6vw, 64px));
  padding-bottom: clamp(64px, 8vw, 112px);
}

.sbh-beleg__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 48px);
}

.sbh-beleg__title {
  font-family: var(--font-family);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.sbh-beleg__title span {
  font-weight: 400;
  color: rgba(26, 26, 26, 0.5);
}

.sbh-beleg__required-legend {
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.4);
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sbh-beleg__required {
  color: var(--color-primary);
}

.sbh-beleg__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sbh-beleg__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sbh-beleg__label {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}

.sbh-beleg__label-optional,
.sbh-beleg__label-en {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.35);
}

.sbh-beleg__input,
.sbh-beleg__textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sbh-beleg__input::placeholder,
.sbh-beleg__textarea::placeholder {
  color: rgba(26, 26, 26, 0.32);
}

.sbh-beleg__input:focus,
.sbh-beleg__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.1);
}

.sbh-beleg__textarea {
  resize: vertical;
  min-height: 100px;
}

.sbh-beleg__input-suffix {
  position: relative;
}

.sbh-beleg__input-suffix input {
  padding-right: 38px;
}

.sbh-beleg__input-suffix span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(26, 26, 26, 0.4);
  pointer-events: none;
}

.sbh-beleg__hint {
  font-family: var(--font-family);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.45);
}

.sbh-beleg__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.75);
  margin-top: -6px;
}

.sbh-beleg__checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.sbh-beleg__checkbox-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(26, 26, 26, 0.28);
  border-radius: 4px;
  background: #ffffff;
  color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sbh-beleg__checkbox input:checked + .sbh-beleg__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.sbh-beleg__checkbox input:focus-visible + .sbh-beleg__checkbox-box {
  box-shadow: 0 0 0 3px rgba(155, 28, 28, 0.18);
}

.sbh-beleg__alt {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: rgba(155, 28, 28, 0.045);
  border: 1px solid rgba(155, 28, 28, 0.14);
  border-radius: var(--radius-md);
  margin-top: -6px;
}

.sbh-beleg__alt-intro {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.6);
}

.sbh-beleg__submit {
  align-self: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.sbh-beleg__note {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #1f7a3d;
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: -8px;
}

.sbh-beleg__note--error {
  color: var(--color-primary-dark);
  background: rgba(155, 28, 28, 0.07);
  border-color: rgba(155, 28, 28, 0.18);
}

.sbh-beleg__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sbh-beleg__submit:disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 480px) {
  .sbh-beleg__submit {
    align-self: stretch;
    justify-content: center;
  }
}
