:root {
  --color-bg: #f6f6f6;
  --color-header: #ffffff;
  --color-text: #444444;
  --color-text-muted: #7a7a7a;
  --color-nav: #7d7d7d;
  --color-accent: #ce1212;
  --color-maroon: #6b2129;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-height: 72px;
  --container: min(1140px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Header (sticky) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-header);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.65rem 24px;
}

.header-inner .logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
}

.header-inner .site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
}

.header-inner .header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  min-width: 0;
}

.header-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #222;
  flex-shrink: 0;
}

.logo-dot {
  color: var(--color-accent);
}

/* Navigation desktop */
.site-nav {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2.2vw, 1.2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list > li > a {
  font-size: 0.875rem;
  color: var(--color-nav);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.nav-list > li > a:hover {
  color: #333;
}

.nav-list > li > a.is-active {
  color: #333;
  border-bottom-color: var(--color-accent);
}

/* „Einblicke“-Untermenü */
.nav-submenu {
  list-style: none;
}

.nav-details {
  position: relative;
}

.nav-details__summary {
  list-style: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-nav);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  user-select: none;
}

.nav-details__summary::-webkit-details-marker {
  display: none;
}

.nav-details__summary:hover {
  color: #333;
}

.nav-details .chevron {
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12em);
  margin-left: 0.08em;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-details[open] > .nav-details__summary .chevron {
  transform: rotate(-135deg) translateY(-0.05em);
  opacity: 0.95;
}

.nav-details[open] > .nav-details__summary {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .site-header.is-open .nav-submenu {
    width: 100%;
  }

  .site-header.is-open .nav-details__summary {
    padding: 0.5rem 0;
    display: flex;
    width: 100%;
  }

  .site-header.is-open .nav-sublist {
    margin: 0.15rem 0 0 0.6rem;
    padding: 0 0 0.35rem;
    border-left: 2px solid rgba(206, 18, 18, 0.25);
    padding-left: 0.85rem;
  }

  .site-header.is-open .nav-sublist a {
    display: block;
    padding: 0.35rem 0 !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
  }
}

@media (min-width: 992px) {
  .nav-submenu {
    position: relative;
  }

  .nav-details {
    position: relative;
    overflow: visible;
  }

  .nav-sublist {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 6px);
    min-width: 11.5rem;
    padding: 0.4rem 0;
    margin: 0;
    background: var(--color-header);
    border-radius: 10px;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease;
  }

  /* Hover-/Fokus-Pfad bleibt auf dem gesamten <li> für lückenloses Überfahren */
  .nav-submenu:hover .nav-sublist,
  .nav-submenu:focus-within .nav-sublist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-sublist a {
    display: block;
    padding: 0.42rem 1rem !important;
    font-size: 0.875rem !important;
    color: var(--color-nav) !important;
    border-bottom: none !important;
  }

  .nav-sublist a:hover {
    color: var(--color-accent) !important;
    background: rgba(206, 18, 18, 0.06);
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle:hover span {
  background: #7a7a7a;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: #c5c5c5;
  border-radius: 1px;
  margin-left: auto;
  transition:
    transform 0.2s,
    opacity 0.2s,
    background-color 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
@media (max-width: 991px) {
  .site-header.is-open .site-nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-header);
    border-top: 1px solid #eee;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem 24px 1.25rem;
  }

  .site-header.is-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-header.is-open .nav-list > li > a {
    display: block;
    padding: 0.5rem 0;
  }
}

@media (min-width: 992px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    gap: 1rem 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-inner .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header-inner .site-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
  }

  .header-inner .header-actions {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  background: var(--color-bg);
  padding: 3rem 24px 4rem;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.hero-visual {
  order: -1;
  position: relative;
  max-width: none;
  margin-left: -24px;
  margin-right: -24px;
  width: calc(100% + 48px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  filter: none;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #37373f;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(206, 18, 18, 0.35);
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.btn-phone-pill:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(206, 18, 18, 0.45);
}

.btn-phone-pill:active {
  transform: scale(0.98) translateY(0);
  filter: brightness(0.96);
}

.btn-phone-pill:focus-visible {
  outline: 2px solid var(--color-maroon);
  outline-offset: 3px;
}

@media (min-width: 992px) {
  .hero {
    padding: 0;
    overflow: hidden;
  }

  .hero-inner {
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: clamp(440px, 58vh, 640px);
    text-align: left;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    width: 100%;
    padding: 4rem clamp(1.5rem, 4vw, 3.5rem);
    padding-left: max(24px, calc((100vw - 1140px) / 2 + 24px));
  }

  .hero-visual {
    order: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    min-height: clamp(440px, 58vh, 640px);
    align-self: stretch;
  }

  .hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .hero-title {
    text-transform: none;
    letter-spacing: 0;
    font-size: clamp(2.25rem, 3.2vw, 3rem);
    font-weight: 500;
  }

  .hero-lead {
    margin-left: 0;
    margin-right: 0;
    max-width: 32rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Sections (Über uns, Warum wir) ——— */
.section {
  padding: 4rem 24px;
}

.section--white {
  background: #ffffff;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-inner--wide {
  max-width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-eyebrow {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.22;
}

.section-title-accent {
  font-weight: 700;
  color: var(--color-maroon);
}

.about-grid {
  display: grid;
  gap: 2.25rem;
}

.about-figure {
  margin: 0;
}

.about-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about-figure--primary img {
  min-height: 240px;
  max-height: 520px;
}

.about-phone-box {
  margin-top: 1.5rem;
  border: 2px solid #2c2c2c;
  padding: 1.35rem 1rem;
  text-align: center;
  background: #fff;
}

.about-reserve-link {
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 0.02em;
  transition: color 0.2s ease, filter 0.2s ease;
}

.about-reserve-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  filter: brightness(1.06);
}

.about-reserve-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.about-intro {
  font-style: italic;
  color: #666;
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.about-intro em {
  font-style: italic;
  font-weight: 600;
  color: #4a4a4a;
}

.about-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.about-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
  font-size: 0.98rem;
  color: #3a3a3a;
  line-height: 1.5;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-body {
  margin: 0 0 1.5rem;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-figure--secondary {
  margin-top: 0.25rem;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

/* ——— Stimmungsband (Foto + Claim) ——— */
.stats {
  position: relative;
  overflow: hidden;
  padding: 3.75rem 24px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.stats__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  text-align: center;
}

.stats__intro {
  max-width: 38rem;
}

.stats__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 200, 200, 0.92);
  margin: 0 0 1rem;
}

.stats__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.85vw, 1.58rem);
  font-weight: 500;
  line-height: 1.52;
  color: #fdf8f5;
  text-wrap: balance;
}

.stats__quote p {
  margin: 0;
}

.stats__attr {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 1.15rem 0 0;
  font-style: normal;
}

.stats__highlights {
  width: 100%;
  display: grid;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.stats__highlight {
  list-style: none;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stats__highlight-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stats__highlight-text {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.54;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
  .stats__highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .stats.stats--moment {
    padding: 5rem 24px 4.75rem;
    min-height: 360px;
  }

  .stats__inner {
    gap: 2.75rem;
  }
}

/* ——— Warum wir ——— */
.why {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.why-grid {
  display: grid;
  gap: 1.25rem;
}

.why-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.055);
}

.why-card--highlight {
  background: var(--color-accent);
  border: none;
  color: #fff;
  box-shadow: 0 10px 28px rgba(206, 18, 18, 0.32);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.why-card--highlight .why-card__title {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.why-card--highlight .why-card__text {
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1.5rem;
  flex: 1;
  line-height: 1.6;
  font-size: 0.98rem;
}

.why-card__btn {
  display: inline-flex;
  align-self: center;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.why-card__btn:hover {
  background: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.why-card__btn:active {
  transform: translateY(0);
}

.why-card__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.why-card__icon {
  width: 3.65rem;
  height: 3.65rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #fce8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.why-card__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 0.75rem;
  line-height: 1.35;
  font-family: var(--font-sans);
}

.why-card__lead {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

@media (max-width: 991px) {
  .why-card--highlight {
    text-align: center;
  }

  .why-card--highlight .why-card__btn {
    align-self: center;
  }
}

/* ——— Speisekarte (Drucklayout, blättern) ——— */
.menu-print {
  --menu-parchment: #f4ead8;
  --menu-ink: #1a1a1a;
  --menu-red: #a52a2a;
}

.menu-print .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.menu-print__header .section-eyebrow {
  margin-bottom: 0.35rem;
}

.menu-print__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.menu-print__brand {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 700;
  color: var(--menu-red);
  letter-spacing: 0.02em;
}

.menu-print__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--menu-ink);
}

.menu-book {
  max-width: min(46rem, 100%);
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #faf6ee 0%, #ebe2d0 100%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.menu-book:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

.menu-book__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-book__btn {
  appearance: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.menu-book__btn:hover:not(:disabled) {
  background: #fff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 6px 16px rgba(206, 18, 18, 0.15);
}

.menu-book__btn:active:not(:disabled) {
  transform: translateY(0);
  filter: brightness(0.97);
}

.menu-book__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.menu-book__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.menu-book__status {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #555;
  min-width: 7.5rem;
  text-align: center;
}

.menu-book__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.menu-book__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.menu-book__dot:hover {
  background: rgba(165, 42, 42, 0.45);
  transform: scale(1.35);
}

.menu-book__dot.is-active {
  background: var(--menu-red);
  transform: scale(1.2);
}

.menu-book__dot.is-active:hover {
  background: var(--color-accent);
  transform: scale(1.42);
}

.menu-book__dot:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.menu-book__pages {
  position: relative;
}

.menu-page[hidden] {
  display: none !important;
}

.menu-print__sheet {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--menu-ink);
  background-color: var(--menu-parchment);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  border-radius: 4px;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 600px) {
  .menu-print__sheet {
    padding: 2rem 2rem 2.25rem;
  }
}

.menu-print__fineprint,
.menu-print__welcome,
.menu-print__hours,
.menu-print__footer-note,
.menu-print__blocktext,
.menu-print__note {
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  text-align: center;
}

.menu-print__welcome {
  font-style: italic;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.menu-print__welcome--small {
  font-size: 0.78rem;
  margin-top: 1rem;
}

.menu-print__hours strong {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.menu-print__muted {
  color: #555;
  font-size: 0.9em;
}

.menu-print__center {
  text-align: center;
}

.menu-print__footer-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
}

.menu-print__box {
  border: 3px double #1a1a1a;
  padding: clamp(0.95rem, 4vw, 1.35rem);
  margin: 1.25rem 0;
  max-width: min(100%, 32rem);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.menu-print__box .menu-print__table {
  font-size: 0.8125rem;
}

.menu-print__box--legal {
  max-width: none;
  text-align: left;
  margin-top: 1.5rem;
}

.menu-print__box-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--menu-red);
  text-align: center;
  margin: 0 0 0.85rem;
}

.menu-print__box-title--sm {
  font-size: 1rem;
}

.menu-print__legal-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.78rem;
  line-height: 1.45;
  columns: 2;
  column-gap: 1.5rem;
}

@media (max-width: 520px) {
  .menu-print__legal-list {
    columns: 1;
  }
}

.menu-print__section-head {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--menu-red);
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.menu-print__section-head--spaced {
  margin-top: 1.75rem;
}

.menu-print__subhead {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0.75rem 0 0.35rem;
  color: var(--menu-ink);
}

.menu-print__list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

/* Zeile = Nr · Text · Preis(spaltenstarr), damit keine Überlappungen */
.menu-print__dish {
  display: grid;
  grid-template-columns:
    2.25rem
    minmax(0, 1fr)
    minmax(5.5rem, max-content);
  gap: 0.45rem 0.85rem;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.42;
}

.menu-print__dish--simple {
  align-items: baseline;
}

.menu-print__no {
  font-weight: 700;
  grid-column: 1;
  grid-row: 1 / -1;
  padding-top: 0.12em;
}

.menu-print__main {
  grid-column: 2;
  grid-row: 1 / -1;
  min-width: 0;
  max-width: 100%;
}

.menu-print__main strong {
  font-weight: 700;
}

.menu-print__desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #3d3d3d;
  margin-top: 0.28rem;
  line-height: 1.5;
}

.menu-print__eur {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  padding-top: 0.06em;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-print__prices-col {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  padding-top: 0.06em;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.38;
}

.menu-print__prices-col b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.menu-print__prices-col span {
  white-space: nowrap;
}

.menu-print__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.25rem;
  font-size: 0.8125rem;
}

.menu-print__grid2--dense {
  font-size: 0.78rem;
  gap: 0.28rem 1rem;
}

@media (max-width: 520px) {
  .menu-print__grid2 {
    grid-template-columns: 1fr;
  }
}

.menu-print__side {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  line-height: 1.35;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
  padding-bottom: 0.25rem;
}

.menu-print__side span:last-child {
  font-weight: 700;
  white-space: nowrap;
}

.menu-print__table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.81875rem;
  line-height: 1.4;
}

.menu-print__table--dense {
  font-size: 0.7825rem;
  gap: 0.42rem;
}

.menu-print__th,
.menu-print__tr {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto minmax(5.35rem, min-content);
  column-gap: 0.6rem;
  row-gap: 0.25rem;
  align-items: start;
}

.menu-print__th {
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.42rem;
  margin-bottom: 0.08rem;
}

.menu-print__th span:nth-child(3),
.menu-print__tr span:nth-child(3) {
  justify-self: end;
  text-align: right;
  opacity: 0.88;
  white-space: nowrap;
}

.menu-print__th span:last-child {
  justify-self: end;
  text-align: right;
}

.menu-print__tr span:first-child {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.menu-print__tr span:nth-child(2) {
  overflow-wrap: break-word;
}

.menu-print__tr span:last-child {
  text-align: right;
  font-weight: 700;
  justify-self: end;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 400px) {
  /* Aperitifs-Rahmen: auf kleinen Phones Zeile umbrechen – Preis immer im „rechten Feld“ unter dem Namen */
  .menu-print__box .menu-print__table .menu-print__th {
    display: none;
  }

  .menu-print__box .menu-print__tr {
    grid-template-columns: 2rem minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 0.12rem;
  }

  .menu-print__box .menu-print__tr span:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    padding-top: 0.1em;
  }

  .menu-print__box .menu-print__tr span:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
  }

  .menu-print__box .menu-print__tr span:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    opacity: 0.88;
    font-size: 0.92em;
  }

  .menu-print__box .menu-print__tr span:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    text-align: right;
    font-weight: 700;
    padding-top: 0.15rem;
  }
}

/* ——— Events / Slideshow ——— */
.events {
  padding: 0;
  margin: 0;
}

.events__viewport {
  width: 100%;
  outline: none;
}

.events__viewport:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(206, 18, 18, 0.45);
}

.events__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 480px;
}

.events-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem 1.75rem 3rem;
  text-align: center;
  min-height: 480px;
  overflow: hidden;
  box-sizing: border-box;
}

.events-card__photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  z-index: 0;
  background: #1a120d;
}

.events-card__photo {
  min-height: 0;
  overflow: hidden;
}

.events-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 38%,
    rgba(0, 0, 0, 0.22) 58%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 1;
}

.events-card__content {
  position: relative;
  z-index: 2;
  max-width: 22rem;
}

.events-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.events-card__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.25rem;
}

.events-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--color-accent);
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(206, 18, 18, 0.35);
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.events-card__btn:hover {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(206, 18, 18, 0.48);
}

.events-card__btn:active {
  transform: scale(0.98) translateY(0);
  filter: brightness(0.96);
}

.events-card__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.events__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 16px 1.5rem;
  background: #1a1a1a;
}

.events__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.events__dot:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.28);
}

.events__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

.events__dot.is-active:hover {
  filter: brightness(1.08);
  transform: scale(1.32);
}

.events__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .events__track {
    display: flex;
    min-height: 0;
  }

  .events__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .events-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 420px;
    padding: 2.25rem 1.5rem 2.75rem;
  }

  .events__dots {
    display: flex;
  }

  .events__dots[hidden] {
    display: none !important;
  }
}

/* ——— Ambiente / Impressionen ——— */
.ambiente {
  padding-bottom: 4.5rem;
}

.ambiente .section-title-accent {
  color: var(--color-accent);
}

.ambiente__intro {
  margin: -0.25rem auto 0;
  max-width: 38rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.9625rem;
  line-height: 1.6;
  color: #656565;
}

.ambiente-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding: 1rem 0.25rem 0.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .ambiente-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    padding: 1.35rem 0.35rem;
  }
}

.ambiente-card {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.35s ease;
}

.ambiente-card:hover,
.ambiente-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .ambiente-card {
    transition: box-shadow 0.3s ease;
  }

  .ambiente-card:hover,
  .ambiente-card:focus-within {
    transform: none;
  }
}

.ambiente-card__figure {
  overflow: hidden;
}

.ambiente-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ambiente-card__text {
  margin: 0;
  padding: 1rem 1.2rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a5a5a;
  text-align: center;
}

.ambiente-card:focus {
  outline: none;
}

.ambiente-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .ambiente-card {
    max-width: none;
  }
}

/* ——— Location-Galerie (Swiper) ——— */
.location-gallery {
  background: var(--color-bg);
  padding-bottom: 3.5rem;
}

.location-gallery .section-header {
  margin-bottom: 2rem;
}

.location-gallery__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
  line-height: 1.22;
}

.location-gallery__accent {
  font-family: "Caveat", cursive;
  font-size: 1.38em;
  font-weight: 700;
  color: var(--color-accent);
  padding: 0 0.12em;
}

.location-swiper {
  padding: 0.35rem 0 0.5rem;
  overflow: hidden;
}

.location-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  opacity: 0.65;
  transform: scale(0.9);
}

.location-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.location-swiper .swiper-slide img {
  width: 100%;
  height: clamp(210px, 42vw, 380px);
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: box-shadow 0.38s ease;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

.location-swiper .swiper-slide-active img {
  box-shadow:
    0 0 0 4px var(--color-accent),
    0 18px 44px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .location-swiper .swiper-slide,
  .location-swiper .swiper-slide img {
    transition: none;
  }
}

.location-swiper .swiper-pagination {
  position: relative !important;
  margin-top: 1.35rem;
  bottom: auto !important;
}

.location-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background: #c4c4c4;
  opacity: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.location-swiper .swiper-pagination-bullet:hover {
  background: #959595;
  transform: scale(1.35);
}

.location-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
  transform: scale(1.18);
}

.location-swiper .swiper-pagination-bullet-active:hover {
  background: #e01a1a;
  transform: scale(1.4);
}

/* ——— Kontakt ——— */
.contact {
  padding-bottom: 4.5rem;
}

.contact .section-title-accent {
  color: var(--color-accent);
}

.contact-map-wrap {
  position: relative;
  margin: 0 auto 2.5rem;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.contact-map-wrap.is-map-hover {
  box-shadow:
    0 0 0 4px var(--color-accent),
    0 16px 44px rgba(0, 0, 0, 0.18);
  transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .contact-map-wrap {
    transition: box-shadow 0.3s ease;
  }

  .contact-map-wrap.is-map-hover {
    transform: none;
  }
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vw);
  min-height: 260px;
  border: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(206, 18, 18, 0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0 0 0.4rem;
}

.contact-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

.contact-card__text a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-card__text a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.contact-form__row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.contact-form__field--full {
  width: 100%;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(206, 18, 18, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__status {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form__status--success {
  background: #e8f5e9;
  color: #2e6b32;
  border: 1px solid #b8dfc0;
}

.contact-form__status--error {
  background: #fdecea;
  color: #8b2e2a;
  border: 1px solid #f5c4c0;
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.contact-form__actions {
  text-align: center;
  margin-top: 0.5rem;
}

.contact-form__submit {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border: none;
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(206, 18, 18, 0.35);
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-form__submit:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(206, 18, 18, 0.48);
}

.contact-form__submit:active {
  transform: scale(0.98) translateY(0);
  filter: brightness(0.96);
}

.contact-form__submit:focus-visible {
  outline: 2px solid var(--color-maroon);
  outline-offset: 3px;
}

/* ——— Footer ——— */
.site-footer {
  background: #252525;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 24px 2rem;
}

.site-footer__inner {
  max-width: min(1140px, 100%);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.site-footer__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.site-footer__heading--plain {
  display: block;
}

.site-footer__heading-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--color-accent);
}

.site-footer__text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.site-footer__text a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer__text a:hover {
  color: var(--color-accent);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.site-footer__social-link:hover {
  color: #fff;
  border-color: var(--color-accent);
  background: rgba(206, 18, 18, 0.18);
}

.site-footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__copy strong {
  color: #fff;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal {
  margin: 0 0 0.5rem;
}

.site-footer__legal a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__legal a:hover {
  color: #fff;
}

/* ——— Impressum / Rechtliches ——— */
.legal-main {
  padding-top: clamp(5.5rem, 12vw, 7rem);
  padding-bottom: 3rem;
  min-height: 50vh;
  background: #faf8f6;
}

.legal-page {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #222;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.legal-page p {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0 0 1.1rem;
}

.legal-page a {
  color: var(--color-accent);
  font-weight: 600;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page__credit {
  font-size: 0.8125rem !important;
  color: #666 !important;
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e5e5;
}

.legal-page__credit a {
  font-weight: 500;
}

/* ——— Feste Aktions-Buttons (Kontakt + Nach oben) ——— */
.contact-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.contact-float__btn,
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 22px rgba(206, 18, 18, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.contact-float__btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.contact-float__btn:hover,
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.55);
  filter: brightness(1.06);
}

.contact-float__btn:active,
.back-to-top:active {
  transform: scale(0.96);
  filter: brightness(0.96);
}

.contact-float__btn:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  border: none;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .contact-float__btn:hover,
  .btn-phone-pill:hover,
  .events-card__btn:hover,
  .contact-form__submit:hover,
  .why-card__btn:hover,
  .why-card__btn:active,
  .menu-book__btn:hover:not(:disabled),
  .menu-book__btn:active:not(:disabled),
  .menu-book__dot:hover,
  .menu-book__dot.is-active:hover,
  .events__dot:hover,
  .events__dot.is-active:hover,
  .location-swiper .swiper-pagination-bullet:hover,
  .location-swiper .swiper-pagination-bullet-active:hover,
  .back-to-top:hover {
    transform: none;
  }
}
