/* =============================================
   LICHTBLICK — CSS
   Custom Properties, Reset, Components
   ============================================= */

/* ── Accessibility: Skip-Link ────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-red);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
}
.skip-link:focus { left: 1rem; }

/* ── Accessibility: visually hidden labels ───── */
.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;
}

:root {
  --color-red:        #9a1915;
  --color-dark:       #1d1d1b;
  --color-red-warm:   #da532c;
  --color-white:      #ffffff;
  --color-off-white:  #f5f2ee;
  --color-grey-light: #e8e4e0;
  --color-grey-mid:   #6e6b68;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 84px;

  /* Spring physics easing */
  --ease:       cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);

  --t:          0.45s var(--ease);
  --t-slow:     0.9s  var(--ease-out);
  --t-fast:     0.25s var(--ease);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-dark);
  overflow-x: hidden;
  background-color: var(--color-off-white);
  background-image:
    radial-gradient(ellipse at center, rgba(154,25,21,0.065) 0%, transparent 70%),
    radial-gradient(ellipse at center, rgba(218,83,44,0.042) 0%, transparent 70%),
    radial-gradient(ellipse at center, rgba(154,25,21,0.055) 0%, transparent 70%);
  background-size: 72vw 64vh, 58vw 72vh, 78vw 52vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: -18% 10%, 95% 52%, 42% 90%;
  animation: body-ambient 30s ease-in-out infinite alternate;
}

@keyframes body-ambient {
  from { background-position: -18% 10%, 95% 52%, 42% 90%; }
  to   { background-position:  18% 22%, 70% 38%, 58% 74%; }
}

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

/* Grain overlay — fixed pseudo, never on scrolling containers */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='250' height='250'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='250' height='250' filter='url(%23n)'/></svg>");
  opacity: 0.038;
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
}

h1 { font-size: clamp(3.2rem, 7.5vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.container--narrow { max-width: 780px; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn:active { transform: scale(0.98); }

/* Button-in-button trailing icon */
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
  line-height: 1;
}

.btn:hover .btn__icon {
  transform: translate(2px, -2px);
  background: rgba(255,255,255,0.28);
}

.btn--filled   { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }
.btn--filled:hover { background: transparent; color: var(--color-white); }
.btn--filled .btn__icon { background: rgba(255,255,255,0.2); }
.btn--filled:hover .btn__icon { background: rgba(255,255,255,0.12); }

.btn--outline  { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: var(--color-white); color: var(--color-dark); border-color: var(--color-white); }
.btn--outline .btn__icon { background: rgba(255,255,255,0.12); }
.btn--outline:hover .btn__icon { background: rgba(0,0,0,0.08); }

.btn--outline-dark { background: transparent; color: var(--color-dark); border-color: var(--color-dark); }
.btn--outline-dark:hover { background: var(--color-dark); color: var(--color-white); }
.btn--outline-dark.btn--hover-red:hover { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }
.btn--outline-red { background: transparent; color: var(--color-red); border-color: var(--color-red); }
.btn--outline-red:hover { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }

.btn--outline-light { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.45); font-size: 0.75rem; padding: 0.7rem 1.6rem; }
.btn--outline-light:hover { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }

.btn--white { background: var(--color-white); color: var(--color-dark); border-color: var(--color-white); }
.btn--white:hover { background: transparent; color: var(--color-white); border-color: var(--color-white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  transition: gap var(--t);
}
.link-arrow::after { content: '\2192'; }
.link-arrow:hover { gap: 1.1rem; }
.link-arrow--light { color: rgba(255,255,255,0.65); }
.link-arrow--light:hover { color: var(--color-white); }

/* =============================================
   CURSOR GLOW (Desktop: warm red follows cursor)
   ============================================= */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 960px;
  height: 960px;
  margin-top: -480px;
  margin-left: -480px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

/* Basis-Glow — immer sichtbar, unabhängig vom Hintergrund */
.cursor-glow--multiply {
  background: radial-gradient(ellipse at center,
    rgba(154,25,21,0.10) 0%,
    rgba(154,25,21,0.04) 42%,
    transparent 68%);
}

/* Extra-Glow auf dunklen Flächen */
.cursor-glow--screen {
  background: radial-gradient(ellipse at center,
    rgba(185,55,35,0.22) 0%,
    rgba(154,25,21,0.07) 42%,
    transparent 68%);
  mix-blend-mode: screen;
}

.cursor-glow.is-active          { opacity: 1; }
.cursor-glow.is-active.is-masked { opacity: 0; transition-duration: 0.35s; }

@media (pointer: coarse) { .cursor-glow { display: none; } }

/* =============================================
   NAVIGATION — Floating Glass Pill
   ============================================= */

.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 100;
  width: calc(100% - 3rem);
  max-width: 1200px;
  height: 60px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.42);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 4px 40px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition:
    background 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    transform 0.45s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(20, 18, 16, 0.88);
  border-color: rgba(255,255,255,0.14);
  transform: translateX(-50%) translateY(-0.5rem);
  box-shadow:
    0 8px 60px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

@media (prefers-reduced-transparency: reduce) {
  .nav { background: rgba(20, 18, 16, 0.96); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.2rem, 3vw, 2rem);
}

.nav__logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--t), opacity var(--t);
}

.nav__logo-img:hover { opacity: 0.75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2.2rem);
}

.nav__link {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.nav__link:hover { color: var(--color-white); }
.nav__link:hover::after { transform: scaleX(1); }

/* CTA-Button in der Pill-Nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.5rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--t), border-color var(--t), transform var(--t-fast);
}

.nav__cta:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
}

.nav__cta:active { transform: scale(0.97); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: var(--t);
  transform-origin: center;
}

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

/* Mobile Nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  transition: clip-path var(--t-slow);
}

.nav-mobile.is-open { clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem); }

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.nav-mobile__link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.3rem);
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(24px);
  transition: color var(--t), opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.nav-mobile.is-open .nav-mobile__link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.is-open .nav-mobile__links li:nth-child(1) .nav-mobile__link { transition-delay: 0.08s; }
.nav-mobile.is-open .nav-mobile__links li:nth-child(2) .nav-mobile__link { transition-delay: 0.14s; }
.nav-mobile.is-open .nav-mobile__links li:nth-child(3) .nav-mobile__link { transition-delay: 0.20s; }
.nav-mobile.is-open .nav-mobile__links li:nth-child(4) .nav-mobile__link { transition-delay: 0.26s; }
.nav-mobile.is-open .nav-mobile__links li:nth-child(5) .nav-mobile__link { transition-delay: 0.32s; }
.nav-mobile.is-open .nav-mobile__links li:nth-child(6) .nav-mobile__link { transition-delay: 0.38s; }

.nav-mobile__link:hover { color: var(--color-white); }

.nav-mobile__cta {
  position: absolute;
  bottom: 2.5rem;
  display: inline-flex;
  padding: 0.9rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s var(--ease-out) 0.44s,
    transform 0.55s var(--ease-out) 0.44s,
    background var(--t),
    border-color var(--t);
}

.nav-mobile.is-open .nav-mobile__cta {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile__cta:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
}

/* =============================================
   HERO — Cinematic, bottom-left anchored
   ============================================= */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 65%;
}

/* Cinematic overlay: dark bottom with subtle CI-red warmth */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20,18,16,0.12) 0%,
      rgba(20,18,16,0.04) 30%,
      rgba(20,18,16,0.55) 65%,
      rgba(20,18,16,0.86) 100%
    ),
    linear-gradient(
      105deg,
      rgba(20,18,16,0.3) 0%,
      transparent 45%
    ),
    linear-gradient(
      to bottom right,
      transparent 50%,
      rgba(154,25,21,0.07) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 1240px;
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 8rem);
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.6rem;
}

.hero__headline {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
}

.hero__sub {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.07em;
  margin-bottom: 2.8rem;
  white-space: nowrap;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   SECTION BASE
   ============================================= */

.section { padding: clamp(5.5rem, 11vw, 11rem) 0; }

.section__header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section__header--left { text-align: left; }

.section__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1rem;
}
.section__eyebrow--light { color: rgba(255,255,255,0.45); }

.section__title { font-family: var(--font-display); font-weight: 300; }
.section__title--light { color: var(--color-white); }
.text-red { color: var(--color-red); font-style: italic; }

/* =============================================
   INTRO / PHILOSOPHIE
   ============================================= */

.section--intro {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.intro__rule {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.intro__rule path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.intro__headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 1.6rem;
}

.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--color-grey-mid);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(29,29,27,0.22);
  transition: color var(--t), gap var(--t), text-decoration-color var(--t);
}

.intro__link::after {
  content: '→';
  font-style: normal;
  font-family: var(--font-body);
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--t);
}

.intro__link:hover {
  color: var(--color-red);
  gap: 1.3rem;
  text-decoration-color: var(--color-red);
}
.intro__link:hover::after { transform: translateX(4px); }


/* =============================================
   SPEISEKARTE — Row list with accent hover
   ============================================= */

.section--speisekarte { background: var(--color-dark); }

.speisekarte__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--color-white);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.speisekarte__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.speisekarte__newsletter-nudge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(154,25,21,0.3);
  border-left: 3px solid var(--color-red);
}

.speisekarte__newsletter-nudge p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.speisekarte__newsletter-link {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--t);
  white-space: nowrap;
}

.speisekarte__newsletter-link:hover { color: #c42420; }

.speisekarte__row {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 3.5vw, 2.8rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s var(--ease-out);
}

/* Red accent line draws up on hover */
.speisekarte__row::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-red);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.55s var(--ease-out);
}

.speisekarte__row:hover .speisekarte__row-left { transform: translateX(1.6rem); }
.speisekarte__row:hover::before { transform: scaleY(1); }

.speisekarte__row--featured {
  border-top: 1px solid rgba(154,25,21,0.3);
  border-bottom: 1px solid rgba(154,25,21,0.3);
  margin-top: -1px;
}

.speisekarte__row--featured + .speisekarte__row {
  border-top: none;
}

.speisekarte__row-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  transition: transform 0.5s var(--ease-out);
}

.speisekarte__row-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  transition: color 0.35s var(--ease);
}

.speisekarte__row--featured .speisekarte__row-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.speisekarte__row-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  max-width: 520px;
  transition: color 0.35s var(--ease);
}

.speisekarte__row:hover .speisekarte__row-text {
  color: rgba(255,255,255,0.55);
}

.speisekarte__row-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
  transition: gap var(--t), color var(--t);
  white-space: nowrap;
}

.speisekarte__row-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.speisekarte__row-cta:hover { gap: 1rem; }
.speisekarte__row-cta:hover svg { transform: translateY(1px); }

.speisekarte__row--featured .speisekarte__row-cta {
  color: rgba(255,255,255,0.7);
}
.speisekarte__row--featured .speisekarte__row-cta:hover {
  color: var(--color-white);
  gap: 1rem;
}

/* =============================================
   GALERIE — Asymmetric bento with hover depth
   ============================================= */

.section--galerie {
  background: var(--color-off-white);
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Heading always sits in its own space above the photo grid (never
   overlaid on the photos) — main.js subtracts this block's real
   height from the target when it sizes the grid, so heading + grid
   together still add up to exactly one screen in fullscreen mode. */
.galerie__heading {
  position: relative;
  z-index: 2;
  background: var(--color-off-white);
  text-align: center;
  /* Top padding clears the fixed floating nav pill, which can end up
     right over this section's top edge mid-scroll. */
  padding: calc(var(--nav-h) + 0.5rem) clamp(1.5rem, 5vw, 3rem) clamp(1.2rem, 3vw, 2rem);
}

.galerie__heading .section__title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  line-height: 1.1;
}

/* Justified gallery — main.js measures each photo's real aspect
   ratio and sizes rows so every row ends flush left AND right,
   with no cropping. Flex-wrap here is just the fallback layout
   before JS has computed exact boxes (stays invisible until then,
   see .is-visible). */
.galerie__accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.section--galerie.is-fullscreen .galerie__accordion {
  padding-bottom: 0;
}

/* Individual item — width/height get set inline by main.js once
   the justified layout is computed. */
.galerie__strip {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  flex: 0 0 280px;
  height: 260px;
}

.galerie__strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image — box matches the photo's real aspect ratio exactly (set by
   JS), so cover never actually crops anything. */
.galerie__strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out), filter 0.5s;
}

.galerie__strip:hover img { transform: scale(1.05); }

.galerie__accordion:has(.galerie__strip:hover) .galerie__strip:not(:hover) img {
  filter: brightness(0.45) saturate(0.6);
}

/* Bottom gradient — visible only on hover */
.galerie__strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(29, 29, 27, 0.75) 0%,
    rgba(29, 29, 27, 0.12) 38%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.galerie__strip:hover::before { opacity: 1; }

/* Label */
.galerie__strip-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.3rem;
  z-index: 2;
  color: rgba(245, 242, 238, 0.92);
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.18s, transform 0.3s 0.18s;
  white-space: nowrap;
  pointer-events: none;
}

.galerie__strip:hover .galerie__strip-label {
  opacity: 1;
  transform: translateY(0);
}

.galerie__footer {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

/* =============================================
   BEWERTUNGEN / REVIEWS
   ============================================= */

.section--reviews {
  padding: clamp(5rem, 8vw, 11rem) 0;
}

.reviews__header {
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--color-grey-light);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.reviews__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.75rem;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.2;
}

.reviews__body {
  display: flex;
  align-items: stretch;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.reviews__bar {
  flex-shrink: 0;
  width: 2px;
  background: var(--color-red);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.1s var(--ease-out) 0.35s;
}

.section--reviews.is-visible .reviews__bar {
  transform: scaleY(1);
}

.reviews__carousel {
  flex: 1;
  min-width: 0;
}

.reviews__slides {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  min-height: clamp(8rem, 15vw, 14rem);
}

.reviews__slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transition: opacity 0.75s var(--ease-out);
  pointer-events: none;
}

.reviews__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.reviews__stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.9rem;
  color: var(--color-red);
  font-size: 0.85rem;
  line-height: 1;
}

.reviews__star::before      { content: '☆'; }
.reviews__star--filled::before { content: '★'; }

.reviews__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.45;
  margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
  padding: 0;
}

.reviews__cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-grey-mid);
}

.reviews__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.reviews__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-grey-light);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.reviews__dot.is-active {
  background: var(--color-red);
  transform: scale(1.5);
}

.reviews__dot:hover:not(.is-active) {
  background: var(--color-grey-mid);
}

/* =============================================
   PARTNER — sibling of .section--reviews: same header
   chrome (border-bottom, italic serif title), same off-white
   as .section--galerie. No divider between the two — generous
   padding on both sides carries the separation.
   ============================================= */

.section--partner-list {
  background: var(--color-off-white);
  padding: clamp(5rem, 8vw, 11rem) 0;
}

.partner-list__header {
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--color-grey-light);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.partner-list__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.partner-list__intro {
  font-size: 0.95rem;
  color: var(--color-grey-mid);
  line-height: 1.8;
  max-width: 56ch;
}

/* Accordion — ported 1:1 from .stellen-item (ueber-uns.css): same
   grid-template-rows open/close trick, same plus/minus icon,
   same red draw-in borders, same WAI-ARIA pattern. */

.partner-list__accordion {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(1rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid var(--color-grey-light);
}

.partner-item { position: relative; }

.partner-item__heading { margin: 0; font: inherit; }

.partner-item__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.4rem, 2vw, 1.9rem) 0;
  background: none;
  border: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.partner-item__toggle:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 6px;
}

.partner-item__toggle:hover .partner-item__title { color: var(--color-red); }

.partner-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--color-red);
  transition: width 0s;
}

.partner-list__accordion.is-visible .partner-item::before {
  width: 100%;
  transition: width 0.9s var(--ease-out);
}

.partner-list__accordion.is-visible .partner-item:nth-child(1)::before { transition-delay: 0.04s; }
.partner-list__accordion.is-visible .partner-item:nth-child(2)::before { transition-delay: 0.14s; }
.partner-list__accordion.is-visible .partner-item:nth-child(3)::before { transition-delay: 0.24s; }
.partner-list__accordion.is-visible .partner-item:nth-child(4)::before { transition-delay: 0.34s; }

.partner-item__body { flex: 1; min-width: 0; }

.partner-item__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.partner-item__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--color-dark);
  line-height: 1.15;
  transition: color 0.3s var(--ease-out);
}

.partner-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}

.partner-item__icon::before,
.partner-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-red);
  transition: transform 0.4s var(--ease-out);
}

.partner-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}

.partner-item__icon::after {
  left: 50%; top: 0;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}

.partner-item.is-open .partner-item__icon::after { transform: translateX(-50%) rotate(90deg); }

.partner-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.partner-item.is-open .partner-item__panel { grid-template-rows: 1fr; }

.partner-item__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0.3rem;
}

.partner-item__desc {
  font-size: 0.9rem;
  color: var(--color-grey-mid);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 0 1.1rem;
}

.partner-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--color-red);
  padding-bottom: 0.4rem;
  transition: color 0.3s var(--ease-out);
}

.partner-item__cta:hover { color: var(--color-red); }

.partner-item__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}

.partner-item__cta:hover .partner-item__arrow { transform: translateX(5px); }

.partner-list__footer { text-align: center; margin-top: clamp(2rem, 3.5vw, 3rem); }

/* =============================================
   VERANSTALTUNGEN — Full-bleed duotone photo banner
   (distinct from .hero: shorter, centered content, two-image
   split backdrop, single CTA, no eyebrow, no nav-overlap zone)
   ============================================= */

.section--veranstaltungen {
  position: relative;
  min-height: clamp(560px, 76vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.veranstaltungen__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.veranstaltungen__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 2.2s var(--ease-out);
}

.section--veranstaltungen:hover .veranstaltungen__bg-img { transform: scale(1.14); }

.veranstaltungen__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20,18,16,0.32) 0%,
      rgba(20,18,16,0.68) 55%,
      rgba(20,18,16,0.9) 100%
    ),
    linear-gradient(
      90deg,
      rgba(20,18,16,0.5) 0%,
      rgba(20,18,16,0.15) 50%,
      rgba(20,18,16,0.5) 100%
    );
}

.veranstaltungen__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  color: var(--color-white);
}

.veranstaltungen__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 300;
  line-height: 1.14;
  margin-bottom: 1.5rem;
}

.veranstaltungen__headline em { font-style: italic; color: var(--color-red); }

.veranstaltungen__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0 auto 2.4rem;
}

.veranstaltungen__facts {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 2.6rem;
}

.veranstaltungen__fact {
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(0.56rem, 1.15vw, 0.68rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 clamp(0.6rem, 1.6vw, 1.2rem);
  white-space: nowrap;
}

.veranstaltungen__fact:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.28);
}

/* =============================================
   GUTSCHEINE
   ============================================= */

.section--gutscheine {
  background: var(--color-dark);
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-top: 2px solid var(--color-red);
}

.gutscheine__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.gutscheine__left::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--color-red);
  margin-bottom: 1.5rem;
}

.gutscheine__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
}

.gutscheine__headline em {
  color: var(--color-red);
}

.gutscheine__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.gutscheine__text {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
}

.gutscheine__badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

/* =============================================
   KONTAKT
   ============================================= */

.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  margin-bottom: 0;
}

.kontakt__col-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  font-style: normal;
  line-height: 1;
}

.kontakt__hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.kontakt__hours-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: baseline;
}

.kontakt__hours dt {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.kontakt__hours dd {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-white);
}

.kontakt__hours-row--closed .kontakt__hours dd { color: var(--color-red); }

.kontakt__address {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
}

.kontakt__address strong { color: var(--color-white); font-weight: 400; }

.kontakt__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1rem 0 0;
}

.footer__map {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  height: 180px;
  opacity: 0.85;
  transition: opacity var(--t);
}

.footer__map:hover { opacity: 1; }

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(1) brightness(0.85);
}

.kontakt__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}

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


/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--color-dark);
  padding: 0 0 2rem;
  border-top: 2px solid var(--color-red);
}

.footer__logo-img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(0.55);
  transition: filter var(--t);
}

.footer__logo-img:hover { filter: brightness(0) invert(0.8); }

.footer__social { display: flex; gap: 1.2rem; }

.footer__social a {
  color: rgba(255,255,255,0.3);
  transition: color var(--t);
  display: flex;
}

.footer__social a:hover { color: var(--color-red); }
.footer__social svg { width: 18px; height: 18px; }

.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
  flex-wrap: wrap;
}

.footer__newsletter-text { flex-shrink: 0; }

.footer__newsletter-text .kontakt__col-label { margin-bottom: 0.5rem; }

.footer__newsletter-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.footer__newsletter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  outline: none;
  transition: border-color var(--t);
  min-width: 160px;
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.footer__newsletter-input:focus { border-color: var(--color-red); }

.footer__newsletter-btn {
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}

.footer__newsletter-btn:hover { background: #7a1210; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer__legal { display: flex; gap: 1.5rem; }

.footer__legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  transition: color var(--t);
}

.footer__legal a:hover { color: var(--color-red); }

/* =============================================
   SCROLL ANIMATIONS — Blur-fade entry
   ============================================= */

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  animation: fadeUpBlur 1s var(--ease-out) forwards;
}
.animate-in--delay-1 { animation-delay: 0.22s; }
.animate-in--delay-2 { animation-delay: 0.44s; }
.animate-in--delay-3 { animation-delay: 0.65s; }

@keyframes fadeUpBlur {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Direction variants */
.reveal--left  { transform: translateX(-52px); }
.reveal--right { transform: translateX(52px); }
.reveal--scale { transform: scale(0.96); }

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-child.is-visible { opacity: 1; transform: translateY(0); }

/* CSS-driven stagger group (like GOF .sg) */
.stagger-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.stagger-group.is-visible > * { opacity: 1; transform: none; }
.stagger-group.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.stagger-group.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.stagger-group.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-group.is-visible > *:nth-child(4) { transition-delay: 0.34s; }
.stagger-group.is-visible > *:nth-child(5) { transition-delay: 0.44s; }
.stagger-group.is-visible > *:nth-child(6) { transition-delay: 0.54s; }
.stagger-group.is-visible > *:nth-child(7) { transition-delay: 0.62s; }
.stagger-group.is-visible > *:nth-child(8) { transition-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .cursor-glow { display: none; }
  .animate-in,
  .reveal,
  .reveal-child,
  .stagger-group > * {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .intro__rule path {
    stroke-dashoffset: 0 !important;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .veranstaltungen__facts { flex-wrap: wrap; row-gap: 0.6rem; }
  .veranstaltungen__fact { white-space: normal; }

  .footer__info { grid-template-columns: 1fr 1fr; }
  .footer__info > div:last-child { grid-column: 1 / -1; }

}

/* ── Page Header (shared across subpages) ────── */
.page-header {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 2px solid var(--color-red);
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.12);
  transform-origin: center top;
  will-change: transform;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29,29,27,0.88) 0%,
    rgba(29,29,27,0.45) 50%,
    rgba(29,29,27,0.25) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.page-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.2rem;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
}

.page-header__title em { color: var(--color-red); }

/* ── Active nav link (shared) ────────────────── */
.nav__link--active { color: var(--color-red) !important; }

@media (max-width: 900px) {
  body { background-attachment: scroll; }
  .page-header { min-height: 45vh; }

  .galerie__heading .section__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .reviews__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .reviews__body { flex-direction: column; }
  .reviews__bar { width: 2rem; height: 2px; }

  .partner-list__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .partner-item__toggle { gap: 1rem; }

  .gutscheine__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gutscheine__headline { font-size: clamp(2rem, 8vw, 2.8rem); }

  .section--veranstaltungen { min-height: clamp(520px, 92vh, 720px); }
  .veranstaltungen__facts { flex-wrap: wrap; row-gap: 0.6rem; }
  .veranstaltungen__fact { font-size: 0.62rem; padding: 0 0.7rem; white-space: normal; }

  .nav {
    width: calc(100% - 2rem);
    top: 1rem;
    height: 54px;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__content {
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }

  .hero__sub { white-space: normal; }

  .speisekarte__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .speisekarte__row:hover .speisekarte__row-left { transform: none; }
  .speisekarte__row-cta { align-self: flex-start; }

  .galerie__strip::before { display: none; }
  .galerie__strip-label { display: none; }

  /* Tapping a photo shouldn't do anything — on touch devices ':hover'
     sticks to whatever was last tapped, which made the desktop
     zoom/dim-the-others effect trigger (and stay stuck) on tap. */
  .galerie__strip:hover img { transform: none; }
  .galerie__accordion:has(.galerie__strip:hover) .galerie__strip:not(:hover) img {
    filter: none;
  }

  /* Light placeholder instead of the dark desktop one — since all
     boxes appear together on mobile (no stagger), a dark background
     behind 8 still-loading photos read as a jarring "black" flash. */
  .galerie__strip {
    background: var(--color-grey-light);
  }

  /* Each photo fades in on its own the moment it finishes loading
     (main.js adds .is-loaded on the img's load event), instead of
     popping in abruptly whenever the network happens to deliver it. */
  .galerie__strip img {
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
  }
  .galerie__strip img.is-loaded {
    opacity: 1;
  }

  .footer__info { grid-template-columns: 1fr; }
  .footer__info > div:last-child { grid-column: 1; }

  .footer__newsletter { flex-direction: column; align-items: flex-start; }
  .footer__newsletter-form { justify-content: flex-start; width: 100%; }
  .footer__newsletter-input { flex: 1; min-width: 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__bottom-right { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__legal { justify-content: center; }

}

/* ── Cookie Banner ────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--color-dark);
  border-top: 2px solid var(--color-red);
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px)));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-family: var(--font-body);
}

.cookie-banner__text a {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border: 1px solid;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  background: transparent;
}

.cookie-banner__btn--accept {
  color: white;
  border-color: var(--color-red);
  background: var(--color-red);
}

.cookie-banner__btn--accept:hover {
  background: #7d1412;
  border-color: #7d1412;
}

.cookie-banner__btn--essential {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.18);
}

.cookie-banner__btn--essential:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Cookie Map Placeholder ───────────────────── */
.cookie-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem 1.5rem;
}

.cookie-map-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.cookie-map-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.5;
}

.cookie-map-btn {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  background: transparent;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-map-btn:hover {
  background: var(--color-red);
  color: white;
}

/* =============================================
   MOBILE PERFORMANCE — pointer: coarse
   ============================================= */
@media (pointer: coarse) {
  /* background-attachment: fixed blockiert GPU-Scrolling auf iOS */
  body {
    background-attachment: scroll;
    animation: none;
  }

  /* filter: blur(8px) ist Base-Style auf .animate-in — muss explizit entfernt werden */
  .animate-in {
    filter: none;
    animation-name: fadeUpNoBlur;
  }

  .galerie__strip {
    transform: none !important;
    transition: opacity 0.7s var(--ease-out);
  }

  /* Nav: Position-Animation auf Mobile weglassen, nur Background-Wechsel */
  .nav.is-scrolled {
    transform: translateX(-50%) translateY(0);
  }
}

