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

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

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;

  /* --- 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;
}

.sbh-status-badge__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sbh-status-badge__link svg { flex-shrink: 0; }

@media (hover: hover) and (pointer: fine) {
  .sbh-status-badge__link:hover { opacity: 0.75; }
}

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

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


/* ============================================================
   NAVIGATION
============================================================ */
.header {
  position: fixed;
  top: 0;
  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: 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; }

/* 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; }
}


/* ============================================================
   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);
}


/* ============================================================
   SBH SECTION DIVIDER — Trennung zwischen Sections
============================================================ */
.sbh-section-divider {
  position: relative;
  height: clamp(40px, 6vw, 64px);
  background-color: #f2f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sbh-section-divider::before {
  content: '';
  width: min(320px, 42%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(26, 26, 26, 0.16) 50%,
    transparent 100%
  );
}

.sbh-section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
}

/* Auf dunklem Grund (Hero → Content / Content → Footer) */
.sbh-section-divider--on-dark {
  background-color: #0a0a0a;
}

.sbh-section-divider--on-dark::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 240, 234, 0.18) 50%,
    transparent 100%
  );
}


/* ============================================================
   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; }
}


/* ============================================================
   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: var(--space-6);
    right: var(--space-4);
  }
}


/* ============================================================
   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(32px, 6vw, 52px);
  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;
}

/* 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-color: #f2f0ea;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}

/* Left: Content */
.sbh-speisekarte__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px) clamp(32px, 4vw, 72px) clamp(64px, 8vw, 120px) 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(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.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(32px, 4.5vw, 52px);
}

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

.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(32px, 5vw, 72px);
}

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

/* Mobile */
@media (max-width: 768px) {
  .sbh-speisekarte {
    grid-template-columns: 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 ÜBER UNS — SBH_UeberUns
============================================================ */
.sbh-ueberuns {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #f2f0ea;
  height: clamp(620px, 48vw, 760px);
  min-height: 420px;
}

/* 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;
}

.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: 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: #f2f0ea;
}

/* 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__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);
  background: #f2f0ea;
}

.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: 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);
  }
}


/* ============================================================
   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 {
  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;
}

@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: var(--header-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;
}


/* ============================================================
   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 {
  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: 10px 18px;
  border-radius: 2px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

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

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

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

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

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

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