/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg:          #0E0D0C;
  --bg-alt:      #151514;
  --bg-card:     #1a1918;
  --nav-bg:      #010101;
  --text:        #FFFFFF;
  --text-dark:   #0E0D0C;
  --muted:       #A7A7A7;
  --muted-2:     #C2C2C2;
  --border:      rgba(255,255,255,0.08);
  --accent:      #B71F1E;
  --gold:        #C8A96E;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;

  --container: min(94%, 1340px);
  --nav-h:     96px;

  --radius-sm:   10px;
  --radius:      20px;
  --radius-pill: 100px;

  --font-body:    "Roboto", system-ui, sans-serif;
  --font-display: "League Gothic", sans-serif;
  --font-ui:      "DM Sans", sans-serif;

  --ease-out: cubic-bezier(.15, .85, .31, 1);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

body {
  overscroll-behavior: none;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Global fixed background for ghost button Tafel-Fenster effect */
.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../../references/Tafel 2-opt.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: var(--container);
  margin: 0 auto;
}

h1 { font-size: clamp(44px, 6vw, 80px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text);
}
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 15px; font-weight: 700; letter-spacing: 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============================================================
   REVEAL ANIMATIONS (IntersectionObserver)
============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

/* Roll-Text Effekt */
.btn-label {
  display: block;
  white-space: nowrap;
  transition: transform 0.55s, opacity 0.55s;
  transition-timing-function: var(--ease-out);
}
.btn-label:last-child {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
}
.btn:hover .btn-label:first-child { transform: translateY(-150%); opacity: 0; }
.btn:hover .btn-label:last-child  { transform: translate(-50%, -50%); opacity: 1; }

/* Primary */
.btn--primary {
  background: #fff;
  color: var(--text-dark);
}
.btn--primary:hover { background: #f0ede8; }

/* CTA (Nav) — filled white */
.btn--cta {
  background: #fff;
  color: var(--text-dark);
}
.btn--cta:hover { background: #f0ede8; }

/* Ghost — Tafel-Fenster */
.btn--ghost {
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../../references/Tafel 2-opt.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  border: none;
  padding: 14px 40px;
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
  z-index: 0;
}
.btn--ghost:hover::before { opacity: 1; }
.btn--ghost .btn-label {
  z-index: 1;
  transition: transform 0.55s, opacity 0.55s, color 0.55s;
  transition-timing-function: var(--ease-out);
}
.btn--ghost .btn-label:last-child { position: absolute; }
.btn--ghost:hover .btn-label { color: var(--text-dark); }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  background: transparent;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}

/* Gradient overlay */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}
.nav.nav--solid::before { opacity: 0; }

.nav.nav--transparent {
  background: transparent;
}

.nav.nav--solid {
  background: rgba(1,1,1,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo {
  height: 42px;
  width: auto;
  display: block;
}

/* Desktop nav links — absolutely centered */
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  transition: color 0.22s ease;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease-out);
}
.nav__links:hover .nav__link { color: rgba(255,255,255,0.4); }
.nav__links:hover .nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__arrow {
  width: 10px; height: 6px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.nav__item--has-sub:hover .nav__arrow { transform: rotate(180deg); }

/* Submenu */
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  padding: 6px;
  background: rgba(1,1,1,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 10;
}
.nav__item--has-sub:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__sub a {
  display: flex;
  align-items: center;
  padding: 11px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.nav__sub:hover a { color: rgba(255,255,255,0.3); }
.nav__sub a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav__sub a span { position: relative; display: inline; }

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__phone svg { width: 15px; height: 15px; }
.nav__phone:hover { color: #fff; }

/* Hamburger (mobile only) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nav__hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav menu — Full-Page Overlay (startet unterhalb der Navbar) */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: #010101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding-top: var(--space-lg);
  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: none;
}
.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__mobile-group { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }

.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: color 0.2s;
}
.nav__mobile-link:hover,
.nav__mobile-link:active { color: #fff; }

.nav__mobile-link--parent {
  justify-content: flex-start;
  gap: 10px;
}
.nav__mobile-arrow {
  width: 10px; height: 6px;
  opacity: 0.5;
  transition: transform 0.28s ease;
  flex-shrink: 0;
}
.nav__mobile-link--parent.is-open .nav__mobile-arrow { transform: rotate(180deg); }

/* Submenu accordion */
.nav__mobile-sub {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 4px 0 8px;
}
.nav__mobile-sub.is-open { display: flex; }

.nav__mobile-sub-link {
  padding: 10px 48px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: #fff !important;
  justify-content: flex-start !important;
  text-align: left !important;
}
.nav__mobile-sub-link:hover { color: rgba(255,255,255,0.85) !important; }

.nav__mobile-link--reserve {
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 700;
  letter-spacing: 0.16em !important;
  padding: 20px 40px;
}

.nav__mobile-link--phone {
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  padding: 10px 40px 24px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../references/Calabria1.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  z-index: 0;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,13,12,0.35) 0%,
    rgba(14,13,12,0.62) 60%,
    rgba(14,13,12,0.80) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}

/* Status badge */
.hero__status {
  margin-bottom: 28px;
  min-height: 32px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid;
}
.status-badge--open {
  background: rgba(72, 180, 97, 0.12);
  border-color: rgba(72, 180, 97, 0.35);
  color: #6fdb90;
}
.status-badge--closed {
  background: rgba(183, 31, 30, 0.12);
  border-color: rgba(183, 31, 30, 0.35);
  color: #e86c6b;
}
.status-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge--open .status-badge__dot { background: #4ec76a; animation: pulse-green 2s infinite; }
.status-badge--closed .status-badge__dot { background: #c8443f; }

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Logo */
.hero__logo-wrap { margin: 0; }
.hero__logo {
  display: block;
  width: clamp(280px, 30vw, 440px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

.hero__tagline {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: nowrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll:hover { color: rgba(255,255,255,0.85); }
.hero__scroll svg { width: 26px; height: 26px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-strip__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  text-align: center;
}

.trust-item__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.trust-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.trust-item--stars {
  gap: 8px;
}
.trust-item__stars {
  font-size: 14px;
  color: #f5c242;
  letter-spacing: 2px;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: var(--space-2xl) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__text {
  max-width: 500px;
}
.about__text .kicker { display: block; }

.about__text h2 { margin-bottom: 24px; }

.about__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  text-transform: lowercase;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.about__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Images */
.about__media {
  position: relative;
  height: 680px;
}
.about__img {
  position: absolute;
  overflow: hidden;
  border-radius: 0;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img:hover img { transform: scale(1.04); }

.about__img--main {
  width: 65%;
  height: 65%;
  top: 0; right: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about__img--accent {
  width: 50%;
  height: 50%;
  bottom: 80px; left: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1;
}
.about__img--small { display: none; }
.about__img--small {
  width: 34%;
  height: 28%;
  bottom: 0; right: 8%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* ============================================================
   HIGHLIGHTS
============================================================ */
.highlights {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlights__head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.highlights__head .kicker { display: block; }
.highlights__head h2 { margin-top: 4px; }

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.highlight-card__icon {
  width: 52px; height: 52px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
}

.highlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.highlight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.highlight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.2s ease;
}
.highlight-card__link:hover { gap: 11px; }
.highlight-card__link svg { width: 14px; height: 14px; }

/* ============================================================
   EXPERIENCE
============================================================ */
.experience {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('../../references/Vitello.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.experience__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.experience__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.experience__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  max-width: 880px;
  margin-bottom: var(--space-sm);
  font-style: normal;
  text-transform: lowercase;
}

.experience__attribution {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-xl);
}

.experience__kpis {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  max-width: 820px;
  margin-bottom: var(--space-xl);
  flex-wrap: nowrap;
  justify-content: center;
}

.experience__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(20px, 4vw, 56px);
  flex: 1;
}

.experience__kpi-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

.experience__kpi-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.experience__kpi-stars {
  font-size: 0.5em;
  vertical-align: middle;
  position: relative;
  top: -0.25em;
}
.experience__kpi-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ============================================================
   NEWS
============================================================ */
.news {
  padding: var(--space-2xl) 0;
}

.news__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.news__text .kicker { display: block; }
.news__text h2 { margin-bottom: 20px; }
.news__text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.news__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.news__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  transition: color 0.2s;
}
.news__phone svg { width: 16px; height: 16px; }
.news__phone:hover { color: #fff; }

.news__img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.news__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news__img-wrap:hover img { transform: scale(1.04); }

.news__img-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14,13,12,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CTA BLOCKS
============================================================ */
.cta-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cta-block {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  cursor: default;
  padding: 80px var(--space-lg) 120px;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  z-index: 0;
}
.cta-block:hover .cta-block__bg { transform: scale(1.08); }

.cta-block__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,13,12,0.92) 0%,
    rgba(14,13,12,0.5) 50%,
    rgba(14,13,12,0.2) 100%
  );
  transition: background 0.35s ease;
  z-index: 1;
}
.cta-block:hover .cta-block__veil {
  background: linear-gradient(
    to top,
    rgba(14,13,12,0.6) 0%,
    rgba(14,13,12,0.3) 50%,
    rgba(14,13,12,0.1) 100%
  );
}

.cta-block--reservieren .cta-block__veil {
  background: linear-gradient(
    to top,
    rgba(14,13,12,0.7) 0%,
    rgba(14,13,12,0.4) 50%,
    rgba(14,13,12,0.1) 100%
  );
}

.cta-block .kicker {
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
  margin-bottom: 0;
}

.cta-block__text {
  position: relative;
  z-index: 2;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.cta-block__text .btn { margin-top: auto; }

.cta-block p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto var(--space-md);
}

.cta-block--event .cta-block__bg {
  background-image: url('../../references/Sommerfest.png');
}
.cta-block--reservieren .cta-block__bg {
  background-image: url('../../references/Restaurant_Vorne.jpg');
  
}
.cta-block--jobs .cta-block__bg {
  background-image: url('../../references/Pizza_Ofen.png');
  background-size: cover;
  background-position: center;
}

/* ============================================================
   RESERVATION MODAL
============================================================ */
.reserve-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.reserve-modal.is-open {
  display: flex;
}

.reserve-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
}

.reserve-modal__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #1c1a18 0%, #0e0d0c 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 100px rgba(0,0,0,0.9);
  max-width: 600px;
  width: 100%;
  padding: 48px 40px 40px;
  margin-top: auto;
  margin-bottom: auto;
}

.reserve-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.reserve-modal__close svg { width: 15px; height: 15px; }
.reserve-modal__close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.reserve-modal__head {
  text-align: center;
  margin-bottom: 32px;
}
.reserve-modal__head h2 { margin-top: 6px; font-size: clamp(28px, 3vw, 36px); }
.reserve-modal__lead {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.55;
}

/* Reserve tabs */
.reserve-tabs {
  display: flex;
  gap: 6px;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 6px;
  background: rgba(22,20,18,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
}
.reserve-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s, background 0.22s;
}
.reserve-tab svg { width: 16px; height: 16px; }
.reserve-tab.is-active {
  background: linear-gradient(180deg, #fff 0%, #e8e5e0 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reserve-panel { display: none; animation: fadeUp 0.3s ease; }
.reserve-panel.is-active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reserve-widget {
  max-width: 520px;
  margin: 0 auto;
  min-height: 200px;
}
.reserve-widget #reservierung:empty::before {
  content: "Reservierungs-Widget wird geladen…";
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 60px 12px;
}

.reserve-fallback {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.reserve-fallback p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reserve-event {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.reserve-event__intro {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.reserve-event__actions { display: flex; justify-content: center; }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.contact__title {
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.contact__subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Hours */
.contact__hours h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.hours-today {
  margin-bottom: 20px;
}
.hours-today-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}
.hours-today-badge--open {
  background: rgba(72, 180, 97, 0.1);
  border: 1px solid rgba(72, 180, 97, 0.25);
  color: #6fdb90;
}
.hours-today-badge--closed {
  background: rgba(183, 31, 30, 0.1);
  border: 1px solid rgba(183, 31, 30, 0.25);
  color: #e86c6b;
}
.hours-today-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted-2);
  line-height: 1.4;
}
.hours-table td:first-child {
  padding-right: var(--space-sm);
  font-weight: 500;
  color: var(--text);
}
.hours-table tr.hours-closed td { color: rgba(183, 31, 30, 0.8); }
.hours-table tr.is-today td { color: #fff; font-weight: 600; }
.hours-table tr.is-today td:first-child::after {
  content: " ← Heute";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 6px;
}

.contact__kitchen-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.contact__kitchen-note svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Map preview */
.map-preview {
  overflow: hidden;
  margin-bottom: 14px;
}
.map-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.contact__map-btns {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 14px;
}
.contact__map-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Info */
.contact__info h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.contact__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xl);
  transition: color 0.2s;
}
.contact__phone svg { width: 22px; height: 22px; }
.contact__phone:hover { color: var(--gold); }

.contact__reserve-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: var(--space-lg);
}
.contact__reserve-cta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  width: var(--container);
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  height: 42px;
  width: auto;
  display: block;
  align-self: flex-start;
}
.footer__brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 240px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer__col a,
.footer__col span {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--text); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__social-link svg { width: 15px; height: 15px; }
.footer__social-link:hover { color: var(--text); }

.footer__bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer__bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE — ≤ 1100px
============================================================ */
@media (max-width: 1100px) {
  .about__grid { gap: var(--space-lg); }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .contact__info { grid-column: 1 / -1; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — ≤ 900px (MOBILE — vollständig optimiert)
============================================================ */
@media (max-width: 900px) {

  /* Tokens */
  :root {
    --nav-h: 72px;
    --space-2xl: 64px;
    --space-xl: 48px;
    --space-lg: 32px;
  }
  body { font-size: 16px; }
  h2 { font-size: clamp(28px, 7.5vw, 42px); }
  h3 { font-size: clamp(17px, 4.5vw, 21px); }

  /* Kein fixed background auf Mobile — Performance */
  .page-bg { display: none; }

  /* Ghost button ohne fixed attachment */
  .btn--ghost {
    background-attachment: scroll;
    padding: 14px 28px;
  }

  /* ---- ALLE CTAs: full-width, untereinander ---- */
  .hero__cta,
  .about__actions,
  .news__actions,
  .experience__cta,
  .cta-block__text,
  .reserve-fallback,
  .reserve-event__actions,
  .contact__map-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__cta .btn,
  .about__actions .btn,
  .news__actions .btn,
  .experience__cta .btn,
  .cta-block__text .btn,
  .reserve-fallback .btn,
  .reserve-event__actions .btn,
  .contact__map-btns .btn,
  .highlight-card .btn,
  .contact__reserve-cta .btn {
    width: 100% !important;
    justify-content: center;
    align-self: stretch !important;
    margin-top: 0 !important;
  }

  /* CTA-Button in Navbar kleiner */
  .btn--cta { padding: 10px 18px; font-size: 12px; }

  /* ---- NAVIGATION ---- */
  /* Navbar immer solid schwarz auf Mobile — keine Transparenz, keine Transition */
  .nav {
    background: #010101 !important;
    transition: none !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }
  .nav::before { display: none; }
  .nav--transparent,
  .nav--solid { background: #010101 !important; }

  .nav__links { display: none; }
  .nav__phone { display: none; }
  /* Hamburger: kein Rand */
  .nav__hamburger { display: flex; border: none; border-radius: 0; }
  .nav__logo { height: 36px; }
  .nav__inner { justify-content: flex-start; }
  /* Abstand zwischen Reservieren und Hamburger */
  .nav__right { margin-left: auto; margin-right: 12px; gap: 0; }

  /* ---- HERO ---- */
  .hero__logo { width: clamp(200px, 60vw, 340px); }
  .hero__tagline {
    font-size: 15px;
    margin-top: 14px;
    margin-bottom: 28px;
    padding: 0 16px;
  }
  .hero__content { width: 100%; padding: 0 24px; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { padding: 16px 24px; }
  .hero__scroll { bottom: 20px; }
  .hero__status { margin-bottom: 20px; }

  /* ---- TRUST STRIP ---- */
  .trust-strip { padding: 0; }
  .trust-strip__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }
  .trust-item {
    flex: 1;
    flex-direction: column;
    gap: 3px;
    padding: 16px 4px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .trust-item__num { font-size: 20px; line-height: 1.1; }
  .trust-item__label { font-size: 8.5px; letter-spacing: 0.8px; white-space: normal; text-align: center; line-height: 1.3; }
  .trust-item__stars { font-size: 10px; letter-spacing: 1px; }
  .trust-item--stars { flex-direction: column; gap: 1px; }
  .trust-divider { width: 1px; height: auto; align-self: stretch; flex-shrink: 0; }

  /* ---- ABOUT ---- */
  .about { padding: var(--space-xl) 0; }
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .about__text { max-width: 100%; text-align: center; }
  .about__text .kicker { display: block; }
  .about__quote { text-align: center; border-left: none; padding-left: 0; border-top: 2px solid var(--gold); padding-top: 20px; }
  .about__actions { align-items: stretch; }
  /* Single full-width image on mobile */
  .about__media {
    height: 260px;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .about__img--main {
    position: relative;
    width: 100%;
    height: 100%;
    top: auto; right: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .about__img--accent { display: none; }
  .about__img--small  { display: none; }

  /* ---- HIGHLIGHTS ---- */
  .highlights { padding: var(--space-xl) 0; }
  .highlights__head { text-align: center; }
  .highlights__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 8px;
  }
  .highlight-card {
    border-radius: var(--radius);
    padding: 20px 16px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .highlight-card__icon { flex-shrink: 0; }
  .highlight-card h3 { font-size: 17px; }
  .highlight-card p { font-size: 14px; margin: 0; }
  .highlight-card .btn { display: none !important; }

  /* ---- EXPERIENCE ---- */
  .experience { min-height: auto; }
  .experience__content {
    padding: var(--space-2xl) var(--space-md);
  }
  .experience__quote {
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }
  .experience__attribution { margin-bottom: var(--space-xl); }
  .experience__cta { width: 100%; padding: 0 var(--space-md); }
  /* KPIs horizontal auf mobile */
  .experience__kpis {
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-xl);
    max-width: 100%;
  }
  .experience__kpi {
    padding: 0 12px;
    gap: 6px;
  }
  .experience__kpi-num {
    font-size: 34px;
    white-space: nowrap;
  }
  .experience__kpi-sep { height: 44px; }
  .experience__kpi-label {
    font-size: 10px;
    letter-spacing: 1px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* ---- NEWS ---- */
  .news { padding: var(--space-xl) 0; }
  .news__layout { grid-template-columns: 1fr; gap: var(--space-md); }
  .news__text { text-align: center; }
  .news__actions { align-items: stretch; }
  .news__image { order: -1; }
  .news__img-wrap { border-radius: var(--radius-sm); }

  /* ---- CTA BLOCKS ---- */
  .cta-blocks { grid-template-columns: 1fr; gap: 2px; }
  .cta-block {
    min-height: 240px;
    padding: 40px var(--space-md) 48px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
  }
  .cta-block .kicker {
    position: static;
    transform: none;
    font-size: 11px;
    margin-bottom: 0;
    order: -1;
  }
  .cta-block__text { min-height: auto; gap: 12px; }
  .cta-block__text .btn { margin-top: 0; }
  .cta-block p { font-size: 15px; margin-bottom: 0; }

  /* ---- RESERVATION MODAL — Bottom Sheet ---- */
  .reserve-modal {
    padding: 0;
    align-items: flex-end;
    justify-content: stretch;
  }
  .reserve-modal__box {
    border-radius: 20px 20px 0 0;
    padding: 28px 20px env(safe-area-inset-bottom, 32px);
    max-height: 90svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
  .reserve-modal__head h2 { font-size: clamp(22px, 6vw, 30px); }
  .reserve-modal__lead { font-size: 14px; }

  /* ---- CONTACT ---- */
  .contact { padding: var(--space-xl) 0; }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact__info { grid-column: 1; }
  /* Gesamte Contact Section zentriert */
  .contact__hours { text-align: center; }
  .contact__hours h3 { text-align: center; }
  .hours-today { display: flex; justify-content: center; }
  .hours-table td:first-child::after { display: none; }
  .contact__map { text-align: center; }
  .contact__map-note { text-align: center; }
  .contact__info { text-align: center; }
  .contact__info h3 { text-align: center; }
  .contact__phone { justify-content: center; font-size: 19px; }
  .contact__reserve-cta { text-align: center; }

  /* ---- FOOTER ---- */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0 var(--space-lg);
  }
  .footer__links { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ============================================================
   RESPONSIVE — ≤ 480px (kleine Smartphones)
============================================================ */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }

  /* Trust strip: 3 Spalten bleiben, aber noch kompakter */
  .trust-item { padding: 14px 4px; }
  .trust-item__num { font-size: 19px; }
  .trust-item__label { font-size: 8px; letter-spacing: 0.5px; }

  /* About: etwas höher für bessere Proportion */
  .about__media { height: 220px; }

  /* KPIs: auf sehr kleinen Screens vertikal stapeln */
  .experience__kpis {
    flex-direction: column;
    gap: var(--space-sm);
    border: none;
    padding: 0;
  }
  .experience__kpi-sep {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.15);
  }
  .experience__kpi { padding: var(--space-xs) 0; }
  .experience__kpi-num { font-size: 36px; }
  .experience__kpi-label { font-size: 10px; letter-spacing: 1.5px; white-space: nowrap; }

  /* Highlight-Cards bleiben zentriert auf kleinen Screens */
  .highlight-card h3 { flex: 0 0 auto; align-self: center; }

  /* Footer: 1 Spalte */
  .footer__links { grid-template-columns: 1fr; }

  /* Modal auf kleinen Screens */
  .reserve-modal__box { padding: 24px 16px env(safe-area-inset-bottom, 28px); }
}
